mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
10 lines
207 B
Bash
Executable File
10 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
|
|
|