我正在创建一个由Cordova包装的JQuery移动应用程序,以获得原生移动构建。
我需要实现推送通知,我的应用程序支持Android和IOS。所以我开始使用Android。我在Google开发者控制台中创建了一个项目 - https://console.developers.google.com/
然后我使用CLI命令
安装了push notification plugincordova plugin add /path/to/plugin/directory
当我在index.html中添加文件时,订单是
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="push.js"></script>
当我运行应用程序时,它说未捕获的ReferenceError:模块未定义
我尝试在index.html中交换文件声明。还要删除并安装插件,但没有运气。
你能帮我解决这个问题。