| 123456789101112131415161718192021222324252627282930 |
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdkVersion 32
- defaultConfig {
- applicationId "com.atmob.channelreader"
- minSdkVersion 21
- targetSdkVersion 32
- versionCode 100
- versionName "1.0.0"
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- }
|