Where to keep static information securely in Android app?
问题 In my Andorid app, am using few keys and tokens for authentication and initialisations. I need to store these static keys somewhere in app securely. At the same time, I need to access it in code as well. I am aware of SharedPreference and Gradle variables, which right now I use. I have tried Cryptography as well, but then I will have to store the secretKey also for decryption. So, am searching for any workaround or proper solution. Any help will be highly appreciated. 回答1: YOUR PROBLEM Where