I'm using react-native-config npm for environment property. I can able to access the environment property in JS file. I am unable to access it in androidManifest.xml. I followed through the instruction.
.env
SCHEME = http
HOST = app.com
buildgradlew
defaultConfig {
resValue "string", "build_config_package", "com.geo.vendor"
}
AndroidManifest.xml
<data android:scheme="SCHEME"
android:host="HOST"/>