Created
June 13, 2022 22:52
-
-
Save 0187773933/343077648c436a3be7e5c7ff2d7e2c25 to your computer and use it in GitHub Desktop.
Get Android Manifest .xml from .apk File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://developer.android.com/training/app-links/deep-linking | |
# https://f-droid.org/en/packages/com.oF2pks.applicationsinfo/ | |
# com.amazon.firetv.youtube | |
adb shell pm list packages | |
adb shell pm path com.amazon.firetv.youtube | |
# package:/data/app/com.amazon.firetv.youtube-w7soWc29LVuZZsacd3FOzQ==/base.apk | |
adb pull /data/app/com.amazon.firetv.youtube-w7soWc29LVuZZsacd3FOzQ==/base.apk firetv-youtube.apk | |
/Users/morpheous/Library/Android/sdk/build-tools/30.0.2/aapt d xmltree firetv-youtube.apk AndroidManifest.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment