1234567891011121314151617181920212223242526272829303132 |
- plugins {
- id 'com.android.application'
- id 'org.jetbrains.kotlin.android'
- }
- android {
- namespace 'com.develop.skin_support'
- compileSdk 31
- defaultConfig {
- applicationId "com.develop.skin_support"
- minSdk 21
- targetSdk 30
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- applicationVariants.all { variant ->
- variant.outputs.all { output ->
- outputFileName = "night.skin"
- }
- }
- }
|