Added android:exported

It is necessary to install the apk on Android 12

https://cafonsomota.medium.com/android-12-dont-forget-to-set-android-exported-on-your-activities-services-and-receivers-3bee33f37beb
This commit is contained in:
Chris
2022-04-07 10:23:45 +02:00
committed by GitHub
parent 1a07bcd7a0
commit 6bbe02b932

View File

@@ -17,6 +17,7 @@
android:icon="@mipmap/launcher_icon">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
@@ -45,7 +46,9 @@
</intent-filter>
</activity>
<activity android:name=".TbWebCallbackActivity" >
<activity
android:name=".TbWebCallbackActivity"
android:exported="true" >
<intent-filter android:label="tb_web_auth">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />