Meteor apk release build not working

橙三吉。 提交于 2020-01-06 19:28:04

问题


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
http://errors.angularjs.org/1.4.8/$injector/unpr?p0=e
    at http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:484
    at http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:20192
    at r (http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:19362)
    at Object.i [as invoke] (http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:19699)
    at r (http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18750)
    at http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18874
    at o (http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:910)
    at p (http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:18651)
    at tt (http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:20341)
    at s (http://localhost:12312/fcfcd288ece9a0234fdb385aba26e0105b653b78.js?meteor_js_resource=true:113:7674)
http://errors.angularjs.org/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?


回答1:


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

https://docs.angularjs.org/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: https://docs.angularjs.org/error/$injector/strictdi

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



来源:https://stackoverflow.com/questions/37172788/meteor-apk-release-build-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!