blob: 8f760e6312b521b8d5cb713f523905e81bb8716a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
jarsigner -digestalg SHA1 -sigalg MD5withRSA -verbose -keystore /home/luis/Downloads/carnavalguachin.keystore -storepass 12345678 "$1" momoselacome
echo ""
echo ""
echo "Checking if APK is verified..."
jarsigner -verify "$1" -verbose -certs
|