123456789101112131415161718 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 32
- defaultConfig {
- applicationId "me.yoqi.mobile.safe"
- minSdkVersion 8
- targetSdkVersion 32
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- }
|