| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- apply plugin: 'com.android.application'
- android {
- // splits {
- // abi {
- // enable true
- // reset()
- // include 'armeabi-v7a'
- // universalApk true
- // }
- // }
- compileSdkVersion 29
- defaultConfig {
- applicationId "com.usai.ratradefiling"
- minSdkVersion 26
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- // ndk.abiFilters 'armeabi-v7a',"arm64-v8a"
- // testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled true
- shrinkResources true
- zipAlignEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-project.txt'
- }
- debug {
- debuggable true
- minifyEnabled true
- zipAlignEnabled true
- shrinkResources true
- //
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-project.txt'
- }
- }
- }
- dependencies {
- // implementation fileTree(dir: "libs", include: ["*.jar"])
- api 'androidx.appcompat:appcompat:1.2.0'
- api 'androidx.legacy:legacy-support-v4:1.0.0'
- api 'androidx.constraintlayout:constraintlayout:2.0.4'
- implementation 'com.google.android.material:material:1.3.0'
- // implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.18'
- // implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
- // api 'com.android.support:support-v4:27.1.0'
- //
- implementation project(path: ':RAUtilsLibrary')
- implementation project(path: ':CommonEditorLib')
- implementation project(path: ':rapdflib')
- // implementation 'androidx.wear:wear:1.0.0'
- // compileOnly 'com.google.android.wearable:wearable:2.6.0'
- // testImplementation 'junit:junit:4.12'
- // androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- // androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- }
|