Display App version in App setting on IOS

2019-06-08 22:51发布

问题:

How can I display the version of my Cordova App in the setting on iOS?

My build.xml file starts with the following:

<widget
  id="com.my-bundle-id"
  version="1.2.3"
  xmlns="http://www.w3.org/ns/widgets" 
  xmlns:android="http://schemas.android.com/apk/res/android"
>

But in the App Settings only the permissions section is displayed:

How can I display the version section using Cordova?

(I looked around and found only a plugin to programmatically get the App version but not how to populate the settings)

UPDATE:

What is missing is the Settings.bundle folders and files.

How can I generate them using Cordova/PhoneGap/Ionic?