-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpublish.sh
More file actions
10 lines (9 loc) · 741 Bytes
/
publish.sh
File metadata and controls
10 lines (9 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
rm momocapture.apk
ionic cordova build android --prod --release
jarsigner -tsa http://timestamp.digicert.com -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore ../momocapture.keystore platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk alias_name
zipalign -v 4 platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk momocapture.apk
rm momocapture.aab
ionic cordova build android
./platforms/android/gradlew bundle
jarsigner -tsa http://timestamp.digicert.com -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore ../momocapture.keystore platforms/android/app/build/outputs/bundle/release/app.aab alias_name
zipalign -v 4 platforms/android/app/build/outputs/bundle/release/app.aab momocapture.aab