Is it possible to specify some information, such as API keys, in a file, and then somehow inject this information into the AndroidManifest
file (maybe during the build process)?
For my particular use case, the documentation for react-native-maps
requires adding a Google Maps API key to the AndroidManifest
file. However, I'd like to keep sensitive information out of the AndroidManifest
file (instead, inside a file that will eventually be gitignored
for example).
On a side note, from this question, it seems that all information inside the AndroidManifest
is available to all packages on the same device. Is this still true?