Open Yermo opened 6 years ago
Try to debug in Safari. Usually all errors, warning are trapped in JS Console. That might help you to identify what is causing your issue. You can also post those logs here, so I can take a look and help maybe.
The only thing that shows up in the Javascript console on startup is:
[Error] TypeError: (0,o.default)(this.toolbarDefaultBg).darken(.2).hex is not a function. (In '(0,o.default)(this.toolbarDefaultBg).darken(.2).hex()', '(0,o.default)(this.toolbarDefaultBg).darken(.2).hex' is undefined)
statusBarColor (app.js:1:4495)
(anonymous function) (app.js:1:36520)
fr (app.js:1:27090)
(anonymous function) (app.js:1:36323)
ll (app.js:1:52130)
e (app.js:11:202065)
(anonymous function) (app.js:11:202196)
(anonymous function) (app.js:1:36518)
fr (app.js:1:27090)
(anonymous function) (app.js:1:36323)
ll (app.js:1:52130)
e (app.js:11:202065)
default (app.js:11:202206)
r (app.js:43:266060)
(anonymous function) (app.js:11:87144)
t (app.js:1:106)
(anonymous function) (app.js:1:95329)
t (app.js:1:106)
(anonymous function) (app.js:11:313080)
t (app.js:1:106)
(anonymous function) (app.js:11:253284)
t (app.js:1:106)
(anonymous function) (app.js:1:453)
Global Code (app.js:1:463)
I believe I've seen this error. Try delete node_modules
and install dependencies from scratch.
EDIT: And also rebuild app.js (npm run build)
@mauron85 getting the same but on Android (also deleting node_modules
& re-installing etc..). I was mostly interested in trying out this demo example app in order to understand whether I could use the base lib to get around the 10m GPS accuracy issue ppl have been discussing over at Stackoverflow
@mauron85 @juristr Debugging lead me to this issue https://github.com/GeekyAnts/NativeBase/issues/1354
Which is basically bad dependencies installed. The npm
version could be the problem. I'm using 5.6.0
Then I noticed you have a yarn.lock
instead of a package-lock.json
.
Using yarn install
fixed the issue, I'd recommend updating the docs to use yarn install
or add the package-lock.json
I am trying to track down a crash bug in the background geolocation plugin that's occurring in my app (ionic). My thought was to compare it to the behavior of the example before filing a bug report.
I have signed up for a google maps key and have followed the instructions in the README.
I ran into the "No development team" issue but Xcode would not allow me to use the default widget id so I changed it to
in config.xml and then selected my personal development team in Xcode.
The application built, installed, and ran without errors but shows nothing but a white screen.
The log from Xcode is:
My config is:
Any pointers as to what to try would be greatly appreciated. Thanks.