android:name and obfuscation:name
adgluzdov opened this issue · 2 comments
We wanted the obfuscated app to differ as much as possible from the original, but still maintaining its functionality. If many people use this tool, the obfuscation
namespace will become like a sort of signature indicating that Obfuscapk has been used, so you're right: it will be more difficult to hide. Maybe it's better to use a random string? Or keep the original android
? I don't have an answer, but during our tests (when we originally wrote the tool) this worked well so we kept it.
However, if you don't like it, you can change it back to android
here:
Obfuscapk/src/obfuscapk/obfuscators/random_manifest/random_manifest.py
Lines 104 to 107 in 2185bd4
Thanks for the answer, it helped me