I was working on one Android App which was communicating with RESTFull server. We made an API Key which was inserted in header of GET
and POST
requests. This API Key was stored in Strings. App is no longer used and also server is down.
I found app.apk
file and was curious how it is secure, so I decompiled it's source and found API Key there like this. We didn't use ProGuard
because we didn't have time.
The queston is how to store API Keys in android applications because this way I can also obtain Google Maps
API Key.