12345678910111213141516171819202122232425262728293031323334 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 33
- useLibrary 'org.apache.http.legacy'
- signingConfigs {
- release {
- storeFile file('365MobileSecretary.jks')
- storePassword 'LH5luZP5'
- keyAlias 'key0'
- keyPassword 'LH5luZP5'
- }
- }
- defaultConfig {
- applicationId "me.yoqi.mobile.safe"
- minSdkVersion 8
- targetSdkVersion 29
- signingConfig signingConfigs.debug
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- dependencies {
-
- }
-
- }
|