If your app would like to use services like Dropbox or Google Drive you need to register for an API key and use it in your application to enable the API at runtime.
Do you have a simple but secure method to store such keys in the source code (and eventually in the binary) and avoid easy detection by 3rd party ?
Simple string seems not the best idea.
Do you have a simple but secure method to store such keys in the source code (and eventually in the binary) and avoid easy detection by 3rd party ?
Simple string seems not the best idea.
Code:
NSString *apiKey = @"This is my secret key"; // ok in an ideal world; not so much in ours