Call a native android app from ionic app
问题 I’m developing an app that will be called by an android native app. I also have to call them. For doing this I found this plugin. They will call my app (and expect me to call theirs) following this code: String packageName = “com.android.app”; Intent intent = getPackageManager().getLaunchIntentForPackage(packageName); if (intent == null) { // The app is not installed intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(“market://details?id=” + packageName)); } intent.addFlags