Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit eb26700

Browse files
authored
Merge pull request #148 from s3ppo/main
android:exported
2 parents ebff699 + f255e3e commit eb26700

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/docs/getting-started-for-android.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ $androidVersion = (isset($versions['android'])) ? $versions['android'] : '';
5252
<application ...>
5353
...
5454
<!-- Add this inside the `<application>` tag, along side the existing `<activity>` tags -->
55-
<activity android:name="io.appwrite.views.CallbackActivity" >
55+
<activity android:name="io.appwrite.views.CallbackActivity" android:exported="true">
5656
<intent-filter android:label="android_web_auth">
5757
<action android:name="android.intent.action.VIEW" />
5858
<category android:name="android.intent.category.DEFAULT" />

app/views/docs/getting-started-for-flutter.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $version = (isset($versions['flutter'])) ? $versions['flutter'] : '';
4141
<application ...>
4242
...
4343
<!-- Add this inside the `<application>` tag, along side the existing `<activity>` tags -->
44-
<activity android:name="com.linusu.flutter_web_auth.CallbackActivity" >
44+
<activity android:name="com.linusu.flutter_web_auth.CallbackActivity" android:exported="true">
4545
<intent-filter android:label="flutter_web_auth">
4646
<action android:name="android.intent.action.VIEW" />
4747
<category android:name="android.intent.category.DEFAULT" />

0 commit comments

Comments
 (0)