71 lines
1.8 KiB
Groovy
71 lines
1.8 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
ext {
|
|
miraclegardenlibVersion = '1.0'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.miraclegarden.smsmessage'
|
|
compileSdk 32
|
|
|
|
defaultConfig {
|
|
applicationId "com.miraclegarden.smsmessage"
|
|
minSdk 24
|
|
targetSdk 32
|
|
versionCode 11
|
|
versionName "2.1"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('justlet.jks')
|
|
storePassword "123456"
|
|
keyAlias 'key0'
|
|
keyPassword "123456"
|
|
}
|
|
release {
|
|
storeFile file('justlet.jks')
|
|
storePassword "123456"
|
|
keyAlias 'key0'
|
|
keyPassword "123456"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.release
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.github.yingliangwei:MiracleGardenLib:1.0"
|
|
implementation 'androidx.databinding:viewbinding:7.3.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.10'
|
|
implementation 'androidx.appcompat:appcompat:1.5.0'
|
|
implementation 'com.google.android.material:material:1.6.1'
|
|
implementation 'com.github.yingliangwei:MiracleGardenLib:1.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
api 'com.google.code.gson:gson:2.9.0'
|
|
} |