Phonegap 3.0 IOS plugins not found

前端 未结 14 1967
天命终不由人
天命终不由人 2020-12-01 03:14

I´m getting this error in XCode:

2013-08-23 14:36:18.284 Tell The DJ[14955:c07] ERROR: Plugin \'Device\' not found, or is not a CDVPlugin. Check your plugin          


        
14条回答
  •  感情败类
    2020-12-01 03:26

    I have found a solution that worked for me. I was using with the Compass plugin and after adding the plugin I have noticed that the config.xml (plugin docs) says it should have

        
        
    
    

    while the ios.json in plugin has added

            "config.xml": {
            "/*": {
                "": 1,
                "": 1
            }
    

    One of then refers to CDVCompass while the other CDVLocation ... changing the xml to CDVCompass did the trick and now the app is working.

提交回复
热议问题