-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for app.config.js
#12
Comments
A possible workaround is to use app.json and app.config.js. Example: app.json:
app.config.js:
There are actually other tools that don't play nice with app.config.js (e.g., detox) |
@oriharel I believe the proper way to do this is: // app.config.(js|ts)
export default function (config) {
return {
...config,
// other values
}
} The |
@byCedric any update on this one? We use app.config.js and we can't automate our CI for EAS Submit because version must be bumped every time otherwise app store rejects the build. |
@josmithua's answer is correct, although you should destructurize the function parameters: export default function ({ config }) Not only your |
Has anyone found any better solution for this issue? |
Description of the feature
Next to
app.json
andapp.config.json
, this library should support having a dynamic config.Motivation
It's new and paves the path to a new set of tools to use for managing expo manifests.
Additional context
An example could be something like:
The text was updated successfully, but these errors were encountered: