Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.5.0
-
None
Description
When 2 cordova plugins are modifying the same property, only the first added plugin is getting the changes applied:
I.e.:
https://github.com/EddyVerbruggen/LaunchMyApp-PhoneGap-Plugin.git
https://github.com/Wizcorp/phonegap-facebook-plugin
The first one:
<config-file target="*-Info.plist" parent="CFBundleURLTypes"> <array> <dict> <key>CFBundleURLSchemes</key> <array> <string>$URL_SCHEME</string> </array> </dict> </array> </config-file>
The second one:
<config-file target="*-Info.plist" parent="CFBundleURLTypes"> <array> <dict> <key>CFBundleURLSchemes</key> <array> <string>fb$APP_ID</string> </array> </dict> </array> </config-file>