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

Commit

Permalink
Merge pull request #148 from s3ppo/main
Browse files Browse the repository at this point in the history
android:exported
  • Loading branch information
eldadfux authored Mar 23, 2022
2 parents ebff699 + f255e3e commit eb26700
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/docs/getting-started-for-android.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ $androidVersion = (isset($versions['android'])) ? $versions['android'] : '';
<application ...>
...
<!-- Add this inside the `<application>` tag, along side the existing `<activity>` tags -->
<activity android:name="io.appwrite.views.CallbackActivity" >
<activity android:name="io.appwrite.views.CallbackActivity" android:exported="true">
<intent-filter android:label="android_web_auth">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
Expand Down
2 changes: 1 addition & 1 deletion app/views/docs/getting-started-for-flutter.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $version = (isset($versions['flutter'])) ? $versions['flutter'] : '';
<application ...>
...
<!-- Add this inside the `<application>` tag, along side the existing `<activity>` tags -->
<activity android:name="com.linusu.flutter_web_auth.CallbackActivity" >
<activity android:name="com.linusu.flutter_web_auth.CallbackActivity" android:exported="true">
<intent-filter android:label="flutter_web_auth">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
Expand Down

0 comments on commit eb26700

Please sign in to comment.