You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
apply plugin: 'com.android.application'
|
|
|
|
android {compileSdkVersion 30
|
|
buildToolsVersion '30.0.3'
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
|
|
defaultConfig {
|
|
applicationId "com.icssoft.icspda"
|
|
minSdkVersion 18
|
|
//noinspection ExpiredTargetSdkVersion
|
|
targetSdkVersion 28
|
|
versionCode 43
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
debuggable = true
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
|
|
android.applicationVariants.all {
|
|
variant ->
|
|
variant.outputs.all {
|
|
outputFileName = "ICSPDA_v${defaultConfig.versionName}.apk"
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation files('src\\lib\\JavaMD5.jar')
|
|
implementation files('src\\lib\\JavaMD5.jar')
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
implementation 'com.github.huangyanbin:SmartTable:2.2.0'
|
|
|
|
|
|
|
|
implementation 'com.alibaba:fastjson:1.2.76'
|
|
}
|