sms-app/app/build.gradle
2025-06-24 23:26:35 +08:00

24 lines
607 B
Groovy

apply plugin: 'com.android.application'
android {
namespace 'com.ruler.smsforwarder'
compileSdkVersion 34
defaultConfig {
applicationId "com.ruler.smsforwarder"
minSdkVersion 26
targetSdkVersion 34
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
}