This is a deeplink bug, how to fix? just edit these two files:
- imabuilder\outputs\your-app\plugins\ionic-plugin-deeplinks\www\deeplink.js
- imabuilder\outputs\your-app\platforms\android\platform_www\plugins\ionic-plugin-deeplinks\www\deeplink.js
The line in deeplinks.js:
var matchedParams = self.routeMatch(pathData, realPath);
should be:
var matchedParams = self.routeMatch(targetPath, realPath);
Then build your ionic again
source: https://github.com/ionic-team/ionic-plugin-deeplinks/issues/243