流星apk发行版不起作用

编程入门 行业动态 更新时间:2024-10-28 20:18:01
本文介绍了流星apk发行版不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在使用Meteor和ionic来开发移动应用程序.

当我为Android构建apk时,生成的apk(release-unsigned.apk)在我的设备上不起作用. 它确实显示了启动屏幕,然后仅显示了一个空白的白色屏幕,仅此而已. 我在bluestacks中运行它,并使用远程调试来找出问题所在,并且该错误出现在控制台中:

Uncaught Error: [$injector:modulerr] Failed to instantiate module SoldatyApp due to: Error: [$injector:unpr] Unknown provider: e errors.angularjs/1.4.8/$injector/unpr?p0=e at localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:484 at localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:20192 at r (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:19362) at Object.i [as invoke] (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:19699) at r (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18750) at localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18874 at o (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:910) at p (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18651) at tt (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:20341) at s (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:7674) errors.angularjs/1.4.8/$injector/modulerr?p0=SoldatyApp&p1=Error…e9a0234fdb385aba26e0105b653b78.js%3Fmeteor_js_resource%3Dtrue%3A113%3A7674) fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113

我还应该提到debug.apk正常工作.

我同时打开了调试和发行版apk的包装:区别在于发行版apk只有两个js文件inn index.html:一个名为cordova.js,另一个是触发错误的文件,而调试apk具有项目中index.html中使用的所有软件包,但我仍然不知道如何解决该问题:如何使发行版apk中包含的软件包?

解决方案

在流星论坛上发布问题后,一位MDG员工(Urigo)建议我在angular的strictDi中运行该应用程序

docs.angularjs/guide/di

我发现ui-router的onEnter存在问题,因为我这样写:

onEnter:function($state){ //code here }

但是实际上我应该这样写:

onEnter:['$state',function($state){ //code here }]

当然,这当然也应该应用于控制器,服务... 有关更多详细信息,请阅读以下内容: docs.angularjs/error/$injector/strictdi

这可能也有帮助: gist.github/jonnolen/fff606247f24cae8e81d

I'm working on a mobile app using Meteor and ionic.

When I built the apk for android, the apk generated (release-unsigned.apk) didn't work on my device. It does show the splash screen, then it just shows a blank white screen and that's it. I run it in bluestacks and used remote debugging to figure out what wrong, and this error came up in the console:

Uncaught Error: [$injector:modulerr] Failed to instantiate module SoldatyApp due to: Error: [$injector:unpr] Unknown provider: e errors.angularjs/1.4.8/$injector/unpr?p0=e at localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:484 at localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:20192 at r (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:19362) at Object.i [as invoke] (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:19699) at r (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18750) at localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18874 at o (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:910) at p (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18651) at tt (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:20341) at s (localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:7674) errors.angularjs/1.4.8/$injector/modulerr?p0=SoldatyApp&p1=Error…e9a0234fdb385aba26e0105b653b78.js%3Fmeteor_js_resource%3Dtrue%3A113%3A7674) fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113

I should also mention that the debug.apk is working just fine.

EDIT:

I unpacked both the debug and the release apks: the difference is that the release apk has only two js files inn index.html: one named cordova.js and the other is the one triggering the error, whilst the debug apk has all the packages used in the project in index.html but I still don't know how to solve the problem: how can I make the packages included in the release apk?

解决方案

After posting the question in meteor forums, one of the MDG staff (Urigo) suggested that I ran the app in angular's strictDi

docs.angularjs/guide/di

I found out that there was a problem with onEnter of ui-router, because I wrote it like this:

onEnter:function($state){ //code here }

But in fact I should have wrote it like this:

onEnter:['$state',function($state){ //code here }]

And of course it goes without saying that this should be applied to controllers, services... too For more details, read this: docs.angularjs/error/$injector/strictdi

This might help too: gist.github/jonnolen/fff606247f24cae8e81d

更多推荐

流星apk发行版不起作用

本文发布于:2023-07-26 14:24:25,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1216690.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:不起作用   流星   发行版   apk

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!