10 lines
475 B
Bash
10 lines
475 B
Bash
#!/bin/sh
|
|
#Just excecute on first time it's the keystore generation
|
|
#keytool -genkey -v -keystore SintomApp.keystore -alias sintomApp -keyalg RSA -keysize 2048 -validity 10000
|
|
#Password APPp455w0rd
|
|
ionic cordova build android --release --prod
|
|
cd platforms/android/
|
|
./gradlew bundle
|
|
cd ../..
|
|
#Password APPp455w0rd
|
|
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore SintomApp.keystore ./platforms/android/app/build/outputs/bundle/release/app-release.aab sintomApp |