Doesn’t work anything.
Why?
Apk editor extract Firebase details from google-services.json file which you upload in your app assets.
How to Secure Firebase Details
- When you use firebase authentication in your app then don’t use Real-time database from same firebase project.
- Create a seperate firebase project for real-time database and use it.
- Apk editor only show details of firebase project which is associated with authentication/json file.
- That means your other firebase details are safe and can be secured by using different methods.
Methods:
- Use obfuscated text block.
- Encryption Methods
- Simple logic : Store your firebase URL in a variable with some extra charectors for example. If main firebase URL is https://test-876.firebaseio.com then you can store https://test-85756.firebaseio.com
Whenever you use it then remove extra charectors by replacing them with empty string.
Same for API Key/Token.
- Simply Secure your firebase Rules then no need to worry about exposed firebase details.
To know more about securing firebase rules: