Removing cordova plugins from the project

前端 未结 14 2047
情书的邮戳
情书的邮戳 2020-12-12 15:50

Somehow in my app many of the cordova plugins are installed and because of that it requires access to almost everything - from my contacts to current location ( even though

14条回答
  •  伪装坚强ぢ
    2020-12-12 16:39

    If the above solution didn't work and you got any unhandled promise rejection then try to follow steps :

    1. Clean the Cordova project

      cordova clean

      1. Remove platform

    cordova platform remove android/ios

    1. Then remove plugin

    cordova plugin remove

    1. add platforms and run the project It worked for me.

提交回复
热议问题