You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
907 B
22 lines
907 B
4 months ago
|
#! /bin/bash
|
||
|
|
||
|
if [ -z "$TRAVIS_TAG" ]; then
|
||
|
# Only sign and deploy tags
|
||
|
echo "Not signing build. There is no git tag."
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
./gradlew :LottieSample:assembleRelease
|
||
|
|
||
|
./gradlew -PNEXUS_USERNAME=$NEXUS_USERNAME -PNEXUS_PASSWORD=$NEXUS_PASSWORD :lottie:uploadArchives
|
||
|
|
||
|
echo "----------Signing APK"
|
||
|
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore lottie-upload-key.jks -storepass $LOTTIE_UPLOAD_CERT_KEY_STORE_PASSWORD LottieSample/build/outputs/apk/release/LottieSample-release-unsigned.apk upload -keypass $LOTTIE_UPLOAD_CERT_KEY_PASSWORD -signedjar LottieSample/build/outputs/apk/release/LottieSample-release-signed.apk
|
||
|
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit $?
|
||
|
fi
|
||
|
|
||
|
echo "----------Zipaligning APK"
|
||
|
${ANDROID_HOME}/build-tools/27.0.3/zipalign 4 LottieSample/build/outputs/apk/release/LottieSample-release-signed.apk LottieSample/build/outputs/apk/release/LottieSample-release-aligned.apk
|