We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
HI,
I have been trying to update my environment file but it's not reflecting while I'm creating my APPs build for android and ios.
Example:
my old .env KEY_1="some_value" KEY_2="some_more_value"
KEY_1="some_value" KEY_2="some_more_value"
my new .env KEY_3="some_new_value"
KEY_3="some_new_value"
now KEY_3 is not identified by my builds. Please help
The text was updated successfully, but these errors were encountered:
Waiting for an answer too. Meanwhile, doing pod deintegrate && pod install and re running the project will work.
pod deintegrate && pod install
Sorry, something went wrong.
I'm having the same issue, my temporary fix is to add a prep lane to Fastlane with the following cache clearing command:
prep
File.write(File.expand_path("../node_modules/react-native-config/ios/ReactNativeConfig/GeneratedDotEnv.m"), "#define DOT_ENV @{ };")
#692 Also you need to select an option in “Provide build settings from” in order to get env variable
No branches or pull requests
HI,
I have been trying to update my environment file but it's not reflecting while I'm creating my APPs build for android and ios.
Example:
my old .env
KEY_1="some_value" KEY_2="some_more_value"
my new .env
KEY_3="some_new_value"
now KEY_3 is not identified by my builds. Please help
The text was updated successfully, but these errors were encountered: