| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- apply plugin: 'com.android.application'
- android {
- compileSdk 33
- // splits {
- // abi {
- // enable true
- // reset()
- // include 'armeabi-v7a'
- // universalApk true
- // }
- // }
- defaultConfig {
- applicationId "com.usai.ratradefiling"
- minSdkVersion 28
- targetSdkVersion 33
- versionCode 3
- versionName "1.11"
- // 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'
- }
- }
- namespace 'com.usai.ratradefiling'
- compileOptions {
- targetCompatibility JavaVersion.VERSION_11
- sourceCompatibility JavaVersion.VERSION_11
- }
- gradle.projectsEvaluated {
- tasks.withType(JavaCompile) {
- // options.compilerArgs << "-Xlint:deprecation"
- // options.compilerArgs << "-Xlint:unchecked"
- }
- }
- }
- dependencies {
- // implementation fileTree(dir: "libs", include: ["*.jar"])
- api 'androidx.appcompat:appcompat:1.5.1'
- api 'androidx.legacy:legacy-support-v4:1.0.0'
- api 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation 'com.google.android.material:material:1.7.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'
- }
|