Skip to content

Commit 62ff143

Browse files
committed
Bump version to 1.0.1
1 parent 21053c6 commit 62ff143

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

app/build.gradle

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.application'
2+
def homePath = System.properties['user.home']
23

34
android {
45
compileSdkVersion 23
@@ -8,13 +9,22 @@ android {
89
applicationId "com.ichi2.apisample"
910
minSdkVersion 15
1011
targetSdkVersion 23
11-
versionCode 1
12-
versionName "1.0"
12+
versionCode 2
13+
versionName "1.0.1"
14+
}
15+
signingConfigs {
16+
release {
17+
storeFile file("${homePath}/src/android-keystore")
18+
keyAlias "nrkeystorealias"
19+
storePassword "ENTER_PASSWORD"
20+
keyPassword "ENTER_PASSWORD"
21+
}
1322
}
1423
buildTypes {
1524
release {
1625
minifyEnabled false
1726
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
27+
signingConfig signingConfigs.release
1828
}
1929
}
2030
}

gradlew

100644100755
File mode changed.

0 commit comments

Comments
 (0)