123456789101112131415161718192021222324252627282930313233343536373839 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 33
- defaultConfig {
- applicationId "me.yoqi.app.wxredpacket"
- minSdkVersion 16
- targetSdkVersion 33
- versionCode 10002
- versionName "1.0.1"
- ndk {
- // 设置支持的SO库架构
- abiFilters 'armeabi', 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
- }
- }
- useLibrary 'org.apache.http.legacy'
- signingConfigs {
- releaseConfig {
- storeFile file("../monkeytong.jks")
- storePassword project.hasProperty("KEYSTORE_PASS") ? KEYSTORE_PASS : System.getenv("KEYSTORE_PASS")
- keyAlias project.hasProperty("ALIAS_NAME") ? ALIAS_NAME : System.getenv("ALIAS_NAME")
- keyPassword project.hasProperty("ALIAS_PASS") ? ALIAS_PASS : System.getenv("ALIAS_PASS")
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.tencent.bugly:crashreport_upgrade:latest.release'
- implementation 'com.tencent.bugly:nativecrashreport:latest.release'
- implementation 'com.android.support:appcompat-v7:28.0.0'
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- }
|