I have few API keys in my Xcode project, for ex. google API keys, fabric key, contentful SDK key, etc.
I'm worried about those keys to be leaked from my build, Because they are not free versions, I've been paying according to it's usage.
I found on research that some people can do reverse engineering on IPA file (XCode build) and they can extract API keys from code/plist files, and use them.
Que-1. Is there a better way I can protect my all API keys?
Que-2. Is there other place to put my API keys, instead of .plist
file.
Que-3. Does Firebase provide features to store all API keys to cloud and access them directly. if yes, please guide me.
Thanks for your help in advance.