We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110b23b commit 4942033Copy full SHA for 4942033
2 files changed
.gitignore
@@ -13,5 +13,8 @@
13
!.idea/icon.*
14
!.idea/.name
15
16
-# Filesystem
+# Keystore
17
+*.jks
18
+
19
+# OSX filesystem
20
.DS_Store
app/build.gradle.kts
@@ -7,6 +7,15 @@ android {
7
namespace = "de.klimek.compass"
8
compileSdk = 34
9
10
+ signingConfigs {
11
+ create("release") {
12
+ keyAlias = "CompassKey"
+ keyPassword = System.getenv("SIGNING_PASSWORD") ?: ""
+ storeFile = file("../keystore.jks")
+ storePassword = System.getenv("SIGNING_PASSWORD") ?: ""
+ }
defaultConfig {
applicationId = "de.klimek.compass"
21
minSdk = 26
@@ -19,6 +28,7 @@ android {
28
release {
29
isMinifyEnabled = true
30
isShrinkResources = true
31
+ signingConfig = signingConfigs.getByName("release")
22
32
}
23
33
24
34
compileOptions {
0 commit comments