| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- apply plugin: 'com.android.application'
- android {
- // splits {
- // abi {
- // enable true
- // reset()
- // include 'armeabi-v7a',"arm64-v8a"
- // universalApk true
- // }
- // }
- compileSdkVersion 33
- defaultConfig {
- applicationId "com.usai.redant.raimage"
- minSdkVersion 28
- targetSdkVersion 33
- versionCode 9
- versionName "1.22.53225"
- // ndk.abiFilters 'armeabi-v7a',"arm64-v8a"
- }
- buildTypes {
- release {
- minifyEnabled true
- zipAlignEnabled true
- shrinkResources true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
- }
- debug {
- // minifyEnabled true
- // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
- }
- }
- gradle.projectsEvaluated {
- tasks.withType(JavaCompile) {
- // options.compilerArgs << "-Xlint:deprecation"
- // options.compilerArgs << "-Xlint:unchecked"
- }
- }
- useLibrary 'org.apache.http.legacy'
- namespace 'com.usai.redant.raimage'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_11
- targetCompatibility JavaVersion.VERSION_11
- }
- }
- dependencies {
- // compile 'com.android.support:support-v4:18.0.0'
- // compile 'org.bouncycastle.bcprov-jdk15on.1.57.org.bouncycastle:bcprov-jdk15on:1.57'
- implementation 'androidx.appcompat:appcompat:1.5.1'
- api 'androidx.legacy:legacy-support-v4:1.0.0'
- api 'androidx.constraintlayout:constraintlayout:2.1.4'
- api 'androidx.recyclerview:recyclerview:1.2.1'
- api project(path: ':RAUtilsLibrary')
- implementation 'com.google.android.material:material:1.7.0'
- // implementation files('libs/core-2.3.0.jar')
- // implementation files('libs/bcprov-jdk15on-157.jar')
- // implementation files('libs/httpmime-4.1.1.jar')
- }
- //android {
- // useLibrary 'org.apache.http.legacy'
- // namespace 'com.usai.redant.raimage'
- // compileOptions {
- // sourceCompatibility JavaVersion.VERSION_11
- // targetCompatibility JavaVersion.VERSION_11
- // }
- //}
|