第一次提交

This commit is contained in:
xuhuixiang
2026-03-21 10:50:34 +08:00
commit b68b389cd4
91 changed files with 3527 additions and 0 deletions

71
app/build.gradle Normal file
View File

@@ -0,0 +1,71 @@
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'
}