Skip to content

Commit

Permalink
Release signing config
Browse files Browse the repository at this point in the history
  • Loading branch information
royaff0 committed Jul 22, 2017
1 parent 71abd88 commit 4da4855
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.1.2-4'
ext.kotlin_version = '1.1.3-2'
repositories {
maven { url 'https://maven.google.com' }
jcenter()
Expand Down
Binary file added keystore
Binary file not shown.
9 changes: 9 additions & 0 deletions mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,17 @@ android {
versionName "0.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
storeFile file("../keystore")
storePassword "password"
keyAlias "key0"
keyPassword "123456"
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
Expand Down

0 comments on commit 4da4855

Please sign in to comment.