What problem does this solve or what need does it fill?
Now, crossbundle doesn't let you place environment variables in your Info.plist or AndroidManifest.xml properties. It would be good to make something like this this or like this in Xcode or like in AndroidManifest.xml.
What solution would you like?
For iOS, we can replace all vars in Info.plist during the build process for plain .app/.ipa. However, with Xcode, it would be better to create a .xcconfig file (see this tutorial).
For Android, we can add necessary vars in gradle.properties - so that Gradle will pick them up.
What problem does this solve or what need does it fill?
Now,
crossbundle
doesn't let you place environment variables in your Info.plist or AndroidManifest.xml properties. It would be good to make something like this this or like this in Xcode or like in AndroidManifest.xml.What solution would you like?
For iOS, we can replace all vars in
Info.plist
during the build process for plain .app/.ipa. However, with Xcode, it would be better to create a.xcconfig
file (see this tutorial).For Android, we can add necessary vars in
gradle.properties
- so that Gradle will pick them up.