| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- apply plugin: 'com.android.application'
- android {
- splits {
- abi {
- enable true
- reset()
- include 'armeabi-v7a'
- universalApk true
- }
- }
- compileSdkVersion 29
- defaultConfig {
- applicationId "com.usai.redant.raimage"
- minSdkVersion 24
- targetSdkVersion 29
- versionCode 7
- versionName "1.16.47214"
- 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'
- }
- }
- }
- 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.2.0'
- api 'androidx.legacy:legacy-support-v4:1.0.0'
- api 'androidx.constraintlayout:constraintlayout:2.0.4'
- api 'androidx.recyclerview:recyclerview:1.1.0'
- api project(path: ':RAUtilsLibrary')
- // 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'
- }
|