@authgear/capacitor
Version:
With the Authgear SDK for Capacitor, you can easily integrate authentication features into your Ionic app. In most cases, it involves just a few lines of code to enable multiple authentication methods, such as social logins, passwordless, biometrics login
34 lines (30 loc) • 1.42 kB
text/xml
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- 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>