diff options
Diffstat (limited to 'test-rig/build-apk.sh')
| -rwxr-xr-x | test-rig/build-apk.sh | 4 |
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 |