build.gradle 659 B

1234567891011121314151617181920212223242526272829303132
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. namespace 'com.develop.skin_zeroOneOne'
  7. compileSdk 31
  8. defaultConfig {
  9. applicationId "com.develop.skin_zeroOneOne"
  10. minSdk 21
  11. targetSdk 30
  12. versionCode 1
  13. versionName "1.0"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. applicationVariants.all { variant ->
  22. variant.outputs.all { output ->
  23. outputFileName = "zeroOneOne.skin"
  24. }
  25. }
  26. }