build.gradle 720 B

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