Skip to content

Commit

Permalink
added release configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Roth committed Jun 3, 2020
1 parent 30d117a commit baa4b4b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
signingConfigs {
release {
storeFile file('../publish.jks')
storePassword '123456'
keyAlias = 'key0'
keyPassword '123456'
}
}
compileSdkVersion 29
buildToolsVersion "29.0.3"

Expand All @@ -18,6 +26,7 @@ android {

buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
Expand Down
Binary file added publish.jks
Binary file not shown.

0 comments on commit baa4b4b

Please sign in to comment.