Howto: Install Hoarder Android App without Google Play #888
tlaerm
started this conversation in
Show and tell
Replies: 1 comment
-
@tlaerm You are a gentlemen and a scholar! Thank you! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
OK, so if you for some reason absolutely, positively cannot bring yourself to use Google Play, you can also invest some time and install the app manually.
hoarder-android
at the bottom to download it..aab
file.bundletool
to extract the apks package:bundletool build-apks --bundle=./app-release.aab --output=./hoarder.apks --mode=universal
hoarder.apks
to extract theuniversal.apk
. Nearly there. This is still unsigned and cannot be installed just from the file.platform.pk8
and theplatform.x509.pem
.apksigner sign --key platform.pk8 --cert platform.x509.pem ./hoarder/universal.apk
universal.apk
to your Phone and install.On Arch Linux, both bundletool and apksigner could be installed from the AUR. You may need to download them somewhere else for your distro.
Beta Was this translation helpful? Give feedback.
All reactions