plugins {
|
id 'com.android.application'
|
}
|
|
android {
|
namespace "com.shlb.comb"
|
|
compileSdk 34
|
|
defaultConfig {
|
applicationId "com.shlb.comb"
|
minSdk 21
|
targetSdk 34
|
versionCode 1
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
}
|
|
buildTypes {
|
release {
|
minifyEnabled false
|
minifyEnabled true
|
shrinkResources true
|
zipAlignEnabled true
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
}
|
debug {
|
minifyEnabled false
|
minifyEnabled true
|
shrinkResources true
|
zipAlignEnabled true
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
}
|
}
|
lintOptions {
|
abortOnError false
|
}
|
compileOptions {
|
sourceCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
}
|
buildFeatures {
|
viewBinding true
|
}
|
|
applicationVariants.all { variant ->
|
if (variant.buildType.name == "release") {
|
variant.outputs.all {
|
def date = new Date().format("yyyyMMddHHmmss")
|
outputFileName = "comb-release-${date}.apk"
|
}
|
}
|
}
|
}
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
implementation 'com.google.android.material:material:1.4.0'
|
implementation project(path: ':bluetooth-manager-lib')
|
testImplementation 'junit:junit:4.13.2'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
implementation 'com.qmuiteam:qmui:2.0.1'
|
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.0'
|
implementation 'org.greenrobot:eventbus:3.0.0'
|
implementation 'pub.devrel:easypermissions:3.0.0'
|
|
|
}
|