Files
RFIDtools/utils/build.gradle
T
dxl e40d959c72 1. Add some conditions to the GIT filter to remove the build file.
2. Temporary addition of compatibility support for Android 10.
2019-12-20 18:08:10 +08:00

26 lines
526 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 18
targetSdkVersion 29
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
}