Hi,
I'm new to Android/Flutter development and facing a serious issue while trying to open another app out of my Flutter application.
final AndroidIntent intent = AndroidIntent(
action: 'action_view',
flags: <int>[Flag.FLAG_ACTIVITY_NEW_TASK],
package: 'com.mypackage.myapp'
);
intent.launch();
This leads to App Chooser being opened and I notice following log entry:
I/IntentSender(16338): Cannot resolve explicit intent - ignoring package
com.mypackage.myapp is exactly the package name of the app I want to open as defined in Android manifest.xml.
Best,
Ralf