-
-
Notifications
You must be signed in to change notification settings - Fork 197
Closed
Labels
Description
This came up from a discussion in NativeScript/NativeScript#145.
Basically it would be nice to be able to configure properties about your app in either your app/package.json
or your .tnsproject
file, and have those changes propagate to the appropriate places in the platform-specific config files. All of these are things AppBuilder does with its .abproject
file, and it would be nice to have a few of those in the NativeScript CLI. At the moment the four specific things I'm looking for are:
- Display name (
"DisplayName"
in.abproject
). - Id (
"AppIdentifier"
in.abproject
) - Version (
"BundleVersion"
in.abproject
) - Android version (
"AndroidVersionCode"
in.abproject
)
id
is already set in .tnsproject
, but to my knowledge you can't configure the rest of these things without changing iOS/Android config files manually.