Skip to content

Commit 20ae981

Browse files
authored
gradle build (#49)
1 parent 7c69575 commit 20ae981

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

ketro/build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ android {
1515
compileSdkVersion 31
1616

1717

18-
1918
defaultConfig {
2019
minSdkVersion 16
2120
targetSdkVersion 31
@@ -28,9 +27,13 @@ android {
2827

2928
buildTypes {
3029
release {
31-
minifyEnabled false
30+
minifyEnabled true
3231
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3332
}
33+
debug {
34+
minifyEnabled false
35+
debuggable true
36+
}
3437
}
3538
compileOptions {
3639
sourceCompatibility 1.6
@@ -42,7 +45,7 @@ android {
4245
dependencies {
4346
implementation fileTree(dir: 'libs', include: ['*.jar'])
4447
implementation 'androidx.appcompat:appcompat:1.4.1'
45-
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
48+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
4649
implementation 'androidx.appcompat:appcompat:1.4.1'
4750
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
4851
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
@@ -56,7 +59,7 @@ dependencies {
5659
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:$mockitoKotlinVersion"
5760
api project(path: ':kcore')
5861
}
59-
repositories{
62+
repositories {
6063
google()
6164
mavenCentral()
6265
}

0 commit comments

Comments
 (0)