| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- apply plugin: 'com.android.application'
- android {
- signingConfigs {
- release {
- keyAlias 'Apex Land'
- keyPassword '#UL$dc01'
- storeFile file('/Users/ray/Documents/usai android keystore/usai_keystore')
- storePassword '#UL$dc01'
- }
- }
- splits {
- abi {
- enable true
- reset()
- include 'armeabi-v7a'
- universalApk true
- }
- }
- compileSdkVersion 29
- defaultConfig {
- applicationId "com.usai.apex.apexdriversi"
- minSdkVersion 24
- targetSdkVersion 29
- versionCode 4
- versionName "1.18"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled true
- zipAlignEnabled true
- shrinkResources true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
- debuggable false
- }
- debug {
- }
- }
- gradle.projectsEvaluated {
- tasks.withType(JavaCompile) {
- // options.compilerArgs << "-Xlint:deprecation"
- // options.compilerArgs << "--stacktrace"
- // options.compilerArgs << "--info"
- // options.compilerArgs << "--debug"
- // options.compilerArgs << "--scan"
- options.compilerArgs << "-Xlint:unchecked"
- }
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
- // implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- // implementation 'com.android.support:appcompat-v7:27.1.1'
- // implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- api project(':RAUtilsLibrary')
- api project(':apexdriverslib')
- }
|