$state.go not working on android

I have built an app that works perfectly when i run it in the browser, but when i try to test it on my android device, either using ionic run android or using HockeyApp, $state.go(‘xyz’) does not seem to work. Anyone else had this problem?

What version of android are you testing on? Also what version of Ionic are you using? Can you do any remote debugging?

I’ve the same problems couple of time, it work on chrome, in remote debug via chrome, but not on my device.

Here the two solutions i’ve found :

1/ Name your url without MAJ : SuperView.html => super-view.html
2/ Be sure that your url are relative : templateUrl : ‘/js/superview.html’ => templateUrl : ‘js/superview.html’

I hope it helps