Миграция на Kotlin DSL

This commit is contained in:
2023-04-07 21:34:59 +03:00
parent 8db9a89237
commit 481cd770f4
13 changed files with 203 additions and 108 deletions
+16
View File
@@ -0,0 +1,16 @@
//Константы уровня приложения
object AppConfig {
const val compileSdk = 33
const val minSdk = 21
const val targetSdk = 32
const val versionCode = 1
const val versionName = "1.0.0"
const val buildToolsVersion = "29.0.3"
const val androidTestInstrumentation = "androidx.test.runner.AndroidJUnitRunner"
const val proguardConsumerRules = "consumer-rules.pro"
const val dimension = "environment"
}