build.gradle 388 B

123456789101112131415161718
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 32
  4. defaultConfig {
  5. applicationId "me.yoqi.mobile.safe"
  6. minSdkVersion 8
  7. targetSdkVersion 32
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled true
  12. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  13. }
  14. }
  15. }