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
cordova/platforms/android/app/src/main/java/com/google/cordova/plugin/BrowserTab.java:21: error: cannot find symbol
import android.support.customtabs.CustomTabsIntent;
^
symbol: class CustomTabsIntent
location: package android.support.customtabs
cordova/platforms/android/app/src/main/java/com/google/cordova/plugin/BrowserTab.java:104: error: package CustomTabsIntent does not exist
Intent customTabsIntent = new CustomTabsIntent.Builder().build().intent;
While trying to run this project, already after fixing #43.
The text was updated successfully, but these errors were encountered:
Issue can be fixed by replacing import android.support.customtabs.CustomTabsIntent; with import androidx.browser.customtabs.CustomTabsIntent;.
We badly need #45 to be approved, then it should work out-of-the-box.
While trying to run this project, already after fixing #43.
The text was updated successfully, but these errors were encountered: