aboutsummaryrefslogtreecommitdiff
path: root/test-rig/build-apk.sh
diff options
context:
space:
mode:
authorLena <lena@omega>2026-08-01 00:00:00 +0000
committerLena <lena@omega>2026-08-01 00:00:00 +0000
commit7166ac47c58a4a8acccebb07ae9395773ad9958e (patch)
treea69e75c9e45f9d0d07cd631411694b791647356b /test-rig/build-apk.sh
parent852a8a00273c9128efeed0217a8e5d3fcd8bf780 (diff)
downloadscrcpy-android-7166ac47c58a4a8acccebb07ae9395773ad9958e.tar.gz
test-rig: exercise release paths
Diffstat (limited to 'test-rig/build-apk.sh')
-rwxr-xr-xtest-rig/build-apk.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-rig/build-apk.sh b/test-rig/build-apk.sh
index 18b3969..f54fad5 100755
--- a/test-rig/build-apk.sh
+++ b/test-rig/build-apk.sh
@@ -4,7 +4,7 @@
# signingConfigs wiring still produces a valid signed apk.
#
# Output: /work/app/build/outputs/apk/release/app-release.apk
-# (and the keystore in /work/.tools/release-smoke.jks)
+# (and the keystore in /work/.tools/release-smoke.p12)
set -eu
@@ -19,7 +19,7 @@ if [ ! -f "$KS" ]; then
keytool -genkey -noprompt \
-keystore "$KS" -storetype PKCS12 \
-storepass "$KS_PASS" -keypass "$KS_PASS" \
- -alias "$KEY_ALIAS" -keyalg RSA -keysize 2048 -validity 365 \
+ -alias "$KEY_ALIAS" -keyalg RSA -keysize 2048 -validity 36500 \
-dname "CN=scrcpy-android smoke, OU=test, O=local, C=US" \
>/dev/null
fi