build.gradle 753 B

1234567891011121314151617181920212223242526272829303132333435
  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. shrinkResources true
  23. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  24. }
  25. }
  26. dependencies {
  27. }
  28. }