We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are some libraries out there that can do it, but each has its own disadvantage, mainly not supported anymore and not working anymore on various cases: https://github.com/MichaelRocks/paranoid https://github.com/StringCare/AndroidLibrary
Can this library do it? For example, suppose I have this:
<resources> <string name="some_important_password">42</string> </resources>
And I want to reach this in code as normal:
getString(R.string.some_important_password)
Or using a special function:
SomeClass.getString(R.string.some_important_password)
Yet if you try to check the APK, you won't find "42" anywhere, and you might not even find "some_important_password", because both were obfuscated.
Is it possible here?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are some libraries out there that can do it, but each has its own disadvantage, mainly not supported anymore and not working anymore on various cases:
https://github.com/MichaelRocks/paranoid
https://github.com/StringCare/AndroidLibrary
Can this library do it?
For example, suppose I have this:
And I want to reach this in code as normal:
Or using a special function:
Yet if you try to check the APK, you won't find "42" anywhere, and you might not even find "some_important_password", because both were obfuscated.
Is it possible here?
The text was updated successfully, but these errors were encountered: