Skip to content

Commit

Permalink
Make Gradle sign the release apk (#988)
Browse files Browse the repository at this point in the history
Instead of relying on a separate step for signing, this make Gradle sign the release apk
Requires that the following environment variables are set:
- KODI_ANDROID_STORE_FILE
- KODI_ANDROID_STORE_PASSWORD
- KODI_ANDROID_KEY_ALIAS
- KODI_ANDROID_KEY_PASSWORD

Also changed the jenkins scripts to exclude the signing step and get the correct apk to be moved to the mirrors
  • Loading branch information
SyncedSynapse committed Nov 18, 2023
1 parent 4ffd1f0 commit 8acac24
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
22 changes: 6 additions & 16 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,13 @@ android {
supportedLocales.join("\",\"")+"\"}"
}

File keystoreFile = file('keystore.properties')

signingConfigs {
release {
if (keystoreFile.exists()) {
Properties keyProps = new Properties()
keyProps.load(new FileInputStream(keystoreFile))

storeFile file(keyProps["store"])
keyAlias keyProps["alias"]
storePassword keyProps["storePass"]
keyPassword keyProps["pass"]
if (System.getenv("KODI_ANDROID_STORE_FILE") != null) {
keyAlias System.getenv("KODI_ANDROID_KEY_ALIAS")
keyPassword System.getenv("KODI_ANDROID_KEY_PASSWORD")
storeFile file(System.getenv("KODI_ANDROID_STORE_FILE"))
storePassword System.getenv("KODI_ANDROID_STORE_PASSWORD")
}
}
}
Expand All @@ -51,14 +46,9 @@ android {
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

buildTypes {
release {
if (keystoreFile.exists()) {
if (System.getenv("KODI_ANDROID_STORE_FILE") != null) {
signingConfig signingConfigs.release
}
minifyEnabled true
Expand Down
5 changes: 3 additions & 2 deletions tools/jenkins/buildsteps/package
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}

$RUN_SIGNSTEP
# Signing done by Gradle, no need to run separate sign step
#$RUN_SIGNSTEP

function getBranchName ()
{
Expand Down Expand Up @@ -52,4 +53,4 @@ function getBuildRevDateStr ()
#rename for upload
#e.x. kore-20130314-8c2fb31.apk.
UPLOAD_FILENAME="kore-$(getBuildRevDateStr).apk"
cd $WORKSPACE;mv kore-release.apk $UPLOAD_FILENAME
cd $WORKSPACE;mv app/build/outputs/apk/release/kore-release.apk $UPLOAD_FILENAME

0 comments on commit 8acac24

Please sign in to comment.