We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21053c6 commit 62ff143Copy full SHA for 62ff143
2 files changed
app/build.gradle
@@ -1,4 +1,5 @@
1
apply plugin: 'com.android.application'
2
+def homePath = System.properties['user.home']
3
4
android {
5
compileSdkVersion 23
@@ -8,13 +9,22 @@ android {
8
9
applicationId "com.ichi2.apisample"
10
minSdkVersion 15
11
targetSdkVersion 23
- versionCode 1
12
- versionName "1.0"
+ 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
22
}
23
buildTypes {
24
release {
25
minifyEnabled false
26
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
27
+ signingConfig signingConfigs.release
28
29
30
gradlew
100644
100755
0 commit comments