You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently on:
Cordova Android: 7.1.4
Android Target SDK: API 27
Android Compiled SDK: API 27
I'm attempting to open the url "www.google.com" using this library and experiencing an exception.
Error: "No Activity found to handle Intent { act=android.intent.action.VIEW dat=www.google.com pkg=com.android.chrome launchParam=MultiScreenLaunchParams { mDisplayId=0 mFlags=0 } (has extras) }"
After debugging the ChromeCustomTabPlugin.java class I was able to drill down and see the issue is occurring within the call on line 186 of this class. Specifically inside this method, the exception is thrown upon hitting the CordovaActivity.java class when calling super.startActivityForResult after the supplied activity calls startActivityForResult and passes the intent and request code.
It appears the activity is not null at any point during this process as the debugger shows the activity passed is the MainActivity.
I've confirmed the chrome package is installed and the app recognizes this package.
I'm wondering if this is a versioning issue or I haven't installed the library correctly. Any insight would be great.
The text was updated successfully, but these errors were encountered:
@EddyVerbruggen
Currently on:
Cordova Android: 7.1.4
Android Target SDK: API 27
Android Compiled SDK: API 27
I'm attempting to open the url "www.google.com" using this library and experiencing an exception.
Error: "No Activity found to handle Intent { act=android.intent.action.VIEW dat=www.google.com pkg=com.android.chrome launchParam=MultiScreenLaunchParams { mDisplayId=0 mFlags=0 } (has extras) }"
After debugging the ChromeCustomTabPlugin.java class I was able to drill down and see the issue is occurring within the call on line 186 of this class. Specifically inside this method, the exception is thrown upon hitting the CordovaActivity.java class when calling super.startActivityForResult after the supplied activity calls startActivityForResult and passes the intent and request code.
It appears the activity is not null at any point during this process as the debugger shows the activity passed is the MainActivity.
I've confirmed the chrome package is installed and the app recognizes this package.
I'm wondering if this is a versioning issue or I haven't installed the library correctly. Any insight would be great.
The text was updated successfully, but these errors were encountered: