mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 16:11:22 +00:00
10 lines
207 B
Bash
10 lines
207 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
jarsigner -digestalg SHA1 -sigalg MD5withRSA -verbose -keystore my-release-key.keystore "$1" reduz
|
||
|
|
|
||
|
|
echo ""
|
||
|
|
echo ""
|
||
|
|
echo "Checking if APK is verified..."
|
||
|
|
jarsigner -verify "$1" -verbose -certs
|
||
|
|
|