I developed some API for my mobile App. I have some API key for access to this API. As you know, there are no any possible methods to hide the API key. But, what if I will do it with Firebase config? (https://firebase.google.com/docs/remote-config/api-overview)
My idea: do not use default param for remote config. If the app can't fetch and API key from Firebase, then it will not work. Use API key in runtime, without save it to the local storage and the app code.
Somebody tried this? Is this a good idea for save API key?