ClaudiuGeorgiu/Obfuscapk

Whether About is Bundle Support aab?

TheRangerStar opened this issue ยท 5 comments

Do the project currently support aab operation? ๐Ÿ‘€๐Ÿ‘€๐Ÿ‘€

Hi, there is some support for bundles (see #121), but is not tested as much as with apk files (I always used Obfuscapk only on apk files).

Hi, there is some support for bundles (see #121), but is not tested as much as with apk files (I always used Obfuscapk only on apk files).

Dear @ClaudiuGeorgiu :
Thank u for your reply ,,,I looked at the document again and found the introduction of aab.
Then I follow the instructions in the document.
But until I cd toObfuscapk/src on the terminal,Then the following questions were reported:
image
How can I solve it,Looking forward to your reply

Hi, there is some support for bundles (see #121), but is not tested as much as with apk files (I always used Obfuscapk only on apk files).

Dear @ClaudiuGeorgiu : Thank u for your reply ,,,I looked at the document again and found the introduction of aab. Then I follow the instructions in the document. But until I cd toObfuscapk/src on the terminal,Then the following questions were reported: image How can I solve it,Looking forward to your reply
This is my environment variable
image

Hi @TheRangerStar, if you're using APKTOOL_PATH, BUNDLE_DECOMPILER_PATH, APKSIGNER_PATHand ZIPALIGN_PATH you have to provide the path to the executable, not the directory containing it. It's a bit different from the classic PATH variable where you only specify the directory, sorry for the confusion. So in your case you should set BUNDLE_DECOMPILER_PATH=/Users/a001/bin/BundleDecompiler.jar (if that's the name you gave to the jar file). The same applies to the other variables above: specify the full path of the executable and not the directory containing it.

Hi @TheRangerStar, if you're using APKTOOL_PATH, BUNDLE_DECOMPILER_PATH, APKSIGNER_PATHand ZIPALIGN_PATH you have to provide the path to the executable, not the directory containing it. It's a bit different from the classic PATH variable where you only specify the directory, sorry for the confusion. So in your case you should set BUNDLE_DECOMPILER_PATH=/Users/a001/bin/BundleDecompiler.jar (if that's the name you gave to the jar file). The same applies to the other variables above: specify the full path of the executable and not the directory containing it.

Ok, I will try it later. Thank you for your reply