How do I register the different Bundle Identifier for iOS(different than identifier specified in id attribute) in config.xml in Cordova 6.3 powered with MobileFirst V8.0.
I have my config.xml defined as below:
<widget android-versionCode="10" id="com.example.androidpackage" ios-CFBundleIdentifier="com.example.iospackage" ios-CFBundleVersion="1.5" version="3.7" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:mfp="http://www.ibm.com/mobilefirst/cordova-plugin-mfp">
If I add the platform using the widget above, i am getting the iOS project with bundle identifier as "com.example.iospackage" but when I am registering the app after doing cordova prepare
using mfpdev app register
command, then it is getting registered with "com.example.androidpackage" for both Android and iOS platform. How do I do it in MobileFirst Platform V8.0?