File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed
Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,13 @@ apply plugin: 'kotlin-android'
2626apply plugin : ' kotlin-android-extensions'
2727
2828android {
29- compileSdkVersion 29
29+ compileSdkVersion project. compile_sdk_version. toInteger()
30+ buildToolsVersion project. build_tools_version
31+
3032 defaultConfig {
31- applicationId " com.omega_r.entities"
32- minSdkVersion 19
33- targetSdkVersion 29
33+ applicationId " com.omega_r.libs. entities"
34+ minSdkVersion project . min_sdk_version . toInteger()
35+ targetSdkVersion project . target_sdk_version . toInteger()
3436 versionCode 1
3537 versionName " 1.0"
3638 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ apply plugin: 'com.github.dcendents.android-maven'
66group = ' com.github.Omega-R'
77
88android {
9- compileSdkVersion 29
10- buildToolsVersion " 29.0.2 "
9+ compileSdkVersion project . compile_sdk_version . toInteger()
10+ buildToolsVersion project . build_tools_version
1111
1212
1313 defaultConfig {
14- minSdkVersion 16
15- targetSdkVersion 29
14+ minSdkVersion project . min_sdk_version . toInteger()
15+ targetSdkVersion project . target_sdk_version . toInteger()
1616 versionCode 1
1717 versionName " 1.0"
1818
Original file line number Diff line number Diff line change 22# gradle
33org.gradle.jvmargs =-Xmx1536m
44org.gradle.parallel =true
5- gradle_android_version =3.4.1
65
76kotlin.incremental.multiplatform =true
87
@@ -18,7 +17,7 @@ android_tools_version = 3.4.1
1817ktor_version = 1.3.1
1918
2019compile_sdk_version = 29
21- build_tools_version = " 29.0.2"
20+ build_tools_version = 29.0.2
2221min_sdk_version = 16
2322target_sdk_version = 29
2423
@@ -28,6 +27,5 @@ org.gradle.configureondemand = false
2827android.useAndroidX =true
2928android.enableJetifier =true
3029
31-
3230version =0.0.1
3331group =com.github.Omega-R
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ apply plugin: 'com.github.dcendents.android-maven'
66group = ' com.github.Omega-R'
77
88android {
9- compileSdkVersion 29
10- buildToolsVersion " 29.0.2 "
9+ compileSdkVersion project . compile_sdk_version . toInteger()
10+ buildToolsVersion project . build_tools_version
1111
1212
1313 defaultConfig {
14- minSdkVersion 16
15- targetSdkVersion 29
14+ minSdkVersion project . min_sdk_version . toInteger()
15+ targetSdkVersion project . target_sdk_version . toInteger()
1616 versionCode 1
1717 versionName " 1.0"
1818
You can’t perform that action at this time.
0 commit comments