build.gradle 945 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 33
  4. buildToolsVersion '33.0.2'
  5. useLibrary 'org.apache.http.legacy'
  6. signingConfigs {
  7. release {
  8. storeFile file('365MobileSecretary.jks')
  9. storePassword 'LH5luZP5'
  10. keyAlias 'key0'
  11. keyPassword 'LH5luZP5'
  12. }
  13. }
  14. defaultConfig {
  15. applicationId "me.yoqi.mobile.safe"
  16. minSdkVersion 8
  17. targetSdkVersion 33
  18. signingConfig signingConfigs.debug
  19. multiDexEnabled true
  20. }
  21. buildTypes {
  22. release {
  23. minifyEnabled true
  24. shrinkResources true
  25. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. compileOptions {
  29. sourceCompatibility JavaVersion.VERSION_1_8
  30. targetCompatibility JavaVersion.VERSION_1_8
  31. }
  32. dependencies {
  33. }
  34. }