mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 22:51:08 +00:00
9 lines
207 B
Bash
Executable file
9 lines
207 B
Bash
Executable file
#!/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
|
|
|