-
-
Notifications
You must be signed in to change notification settings - Fork 236
Description
Which platform(s) does your issue occur on?
Most Android 13 and below
Please, provide the following version numbers that your issue occurs with:
"react-native-inappbrowser-reborn": "^3.7.0",
Please, tell us how to recreate the issue in as much detail as possible.
Describe the steps to reproduce it.
Example link: example://singpass?gdghfhgfhgjhkjhkhkjk,jkjkjdlfiopsifposjkldznvkjznvjkdzncklszcbzcjnzxkvnxnbncnvn
const result = await InAppBrowser.open(url, { // iOS Properties // ephemeralWebSession: false, dismissButtonStyle: "done", // preferredBarTintColor: Colors.secondaryGreen, // preferredControlTintColor: Colors.white, readerMode: false, animated: false, modalPresentationStyle: "fullScreen", modalTransitionStyle: "coverVertical", modalEnabled: true, enableBarCollapsing: true, // Android Properties showTitle: true, enableUrlBarHiding: true, enableDefaultShare: true, forceCloseOnRedirection: false, showInRecents: true, animations: { startEnter: "slide_in_right", startExit: "slide_out_left", endEnter: "slide_in_left", endExit: "slide_out_right", }, });
3. . Below is a sample of the android manifest file
<intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="example" android:host="singpass" /> </intent-filter>
There wasn't any response received. Tried with both open and openAuth