To re-sign an Android app provided by SpotMe you will need to use the apksigner tool.
Follow the steps below to download the tool and re-sign the android app:
1. Download Android Studio
More information could be found here.
2. Install Android Studio
3. Move Android Studio to the Apllications folder
4. Launch Android Studio app
5. Install Android SDK
6. Install the latest SDK components
7. Resign the .apk file
- Open the Terminal app
- Find apksigner in the Library directory:
> ls ~/Library/Android/sdk/build-tools/29.0.2/lib
29.0.2 may change according to what has been installed in Android Studio
Optional: Set the bash path
> nano ~/.bash_profile
> export PATH=$ANDROID_HOME/build-tools/29.0.2/:$PATH
Update 29.0.2 according to your install
- Re-sign apk
> apksigner sign --ks my-release-key.keystore app-full-release.apk
- Verify signature
> jarsigner -verify -verbose -certs app-full-release.apk
Comments
0 comments
Please sign in to leave a comment.