Skip to content

Commit 7a6fad4

Browse files
author
Fernando
committed
Added :: Test app's release & optimized version and keystore
1 parent b38a70c commit 7a6fad4

2 files changed

Lines changed: 14 additions & 4 deletions

File tree

app/build.gradle.kts

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,20 @@ android {
1818
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1919
}
2020

21-
buildTypes {
22-
release {
23-
isMinifyEnabled = false
24-
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
21+
signingConfigs {
22+
create("release") {
23+
storeFile = file("../signing/app-release.jks")
24+
keyAlias="app-release"
25+
keyPassword="password0"
26+
storePassword="password0"
27+
}
28+
}
29+
30+
buildTypes {
31+
release {
32+
isMinifyEnabled = false
33+
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
34+
signingConfig = signingConfigs.getByName("release")
2535
}
2636
}
2737
compileOptions {

signing/app-release.jks

2.49 KB
Binary file not shown.

0 commit comments

Comments
 (0)