I want to add a couple of Environmental variables to my Android Studio Application code and I don't know how to do it.
Specifically, I want to add AWS_ACCESS_KEY_ID
with a String
value.
Should I put them in a specific file? in which file?
I know I can read it with System.getenv("AWS_ACCESS_KEY_ID")
, however everything i try is getting null
in the emulator.
Thank you so much
After correctly setting the Environmental variables I would like to see the correct value in the emulator when I call: System.getenv("AWS_ACCESS_KEY_ID")