ax / apk.sh

apk.sh makes reverse engineering Android apps easier, automating some repetitive tasks like pulling, decoding, rebuilding and patching an APK.
GNU General Public License v3.0
3.34k stars 189 forks source link

Use fzf to select a package if none supplied #28

Open gergesh opened 9 months ago

ax commented 8 months ago

why?

gergesh commented 8 months ago

Because sometimes you (read: I) don't remember the exact package name you'd like to pull and fuzzy searching for "Facebook" gets the job done the fastest

CrazyChaoz commented 8 months ago

i like the idea, but it would add potential interactivity to a static command -> using it in scripts might break functionality, so making it optional and hiding it behind an argument would probably be better

gergesh commented 8 months ago

The current implementation does not break anything, as it only changes behavior in the case where a package name wasn't supplied - not a valid condition currently.

ax commented 7 months ago

Sorry @gergesh, I personally don't like the idea of adding another dependency just to have a package name guessed. Lemme keep this thread here for a while, let's see what the community thinks about this.