-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Description
Description of the feature
Next to app.json
and app.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:
import * as versions from 'standard-version-expo';
import pkg from './package.json';
export default {
name: 'awesomeapp',
version: pkg.version,
ios: {
bundleIdentifier: 'com.acme.awesomeapp',
buildNumber: versions.ios(pkg.version),
},
android: {
package: 'com.acme.awesomeapp',
versionCode: versions.android(pkg.version),
}
}
This only works with deterministic methods, for incremental updates this would not work (which is kind of the reason why increments are not that great 😅)
ptondereau, oshimayoan, aidankinzett, gregfenton, lookitsatravis and 14 moreourmaninamsterdam, oriharel, mvanroon, conor909 and abdullahbayramjetaix and conor909
Metadata
Metadata
Assignees
Labels
No labels