Hi I am having a web project build with angular 2. I used ‘ui-router-ng2’ for routing.
I copied the build files from web and paste them into cordova android project asset folders. Then I made necessary changes in index.html file.
When I launch the Android App via ‘Android studio’, login page shows fine. But I can’t navigate from that page to any other page.
This is how I called the state for ‘Forgot Password’ page. It works fine in web but not in android app.
console.log('forgotPassword before');
this.state.go('forgotPassword');
console.log('forgotPassword after');
Logs got printed in before and after the ‘go()’ call .