We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4be5f commit 22721fdCopy full SHA for 22721fd
.gitignore
@@ -15,4 +15,6 @@ build
15
# OSX files
16
.DS_Store
17
18
-proguard-rules.pro
+proguard-rules.pro
19
+adb
20
+*.apk
build.gradle
@@ -38,6 +38,22 @@ android {
38
sourceCompatibility JavaVersion.VERSION_1_8
39
targetCompatibility JavaVersion.VERSION_1_8
40
}
41
+
42
+ signingConfigs {
43
+ release {
44
+ storeFile file(RELEASE_STORE_FILE)
45
+ storePassword RELEASE_STORE_PASSWORD
46
+ keyAlias RELEASE_KEY_ALIAS
47
+ keyPassword RELEASE_KEY_PASSWORD
48
+ }
49
50
51
+ buildTypes {
52
53
+ signingConfig signingConfigs.release
54
55
56
57
58
59
dependencies {
0 commit comments