123456789101112131415161718 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 33
- defaultConfig {
- applicationId "com.chenqi.activity"
- minSdkVersion 10
- targetSdkVersion 33
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- }
|