UNPKG

@authgear/react-native

Version:

The Authgear SDK for React Native makes it ease to integrate authentication features into your React Native application. In most cases, it involves just a few lines of code to enable multiple authentication methods, such as social logins, passwordless, bi

35 lines (30 loc) 1.46 kB
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.authgear.reactnative"> <!-- androidx.security requires API 23 --> <!-- If we do not add this line, we will have compilation error --> <!-- We will do runtime API level checking before accessing the features from androidx.security --> <uses-sdk tools:overrideLibrary="androidx.security" /> <application> <activity android:name=".OAuthCoordinatorActivity" android:exported="false" android:launchMode="singleTask" /> <activity android:name=".WebViewActivity" android:exported="false" android:launchMode="singleTask" android:theme="@style/AuthgearTheme" android:configChanges="orientation|screenSize"/> <activity android:name=".WebKitWebViewActivity" android:exported="false" android:launchMode="singleTask" android:theme="@style/AuthgearTheme"/> </application> <!-- Android 11 requires the app to define which external apps are visiable --> <queries> <package android:name="com.android.chrome" /> <package android:name="com.chrome.beta" /> <package android:name="com.chrome.dev" /> <package android:name="com.google.android.apps.chrome" /> <package android:name="com.tencent.mm" /> </queries> </manifest>