|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | 2 | xmlns:tools="http://schemas.android.com/tools"> |
3 | 3 |
|
4 | | - <uses-permission android:name="android.permission.INTERNET"/> |
| 4 | + <uses-permission android:name="android.permission.INTERNET" /> |
| 5 | + <uses-permission android:name="android.permission.CAMERA" /> |
5 | 6 |
|
6 | | - <application |
7 | | - android:name="${applicationName}" |
8 | | - android:label="CAWS Example" |
9 | | - android:fullBackupContent="@xml/backup_rules" |
10 | | - android:dataExtractionRules="@xml/data_extraction_rules" |
11 | | - android:icon="@mipmap/ic_launcher"> |
| 7 | + <application |
| 8 | + android:name="${applicationName}" |
| 9 | + android:label="CAWS Example" |
| 10 | + android:fullBackupContent="@xml/backup_rules" |
| 11 | + android:dataExtractionRules="@xml/data_extraction_rules" |
| 12 | + android:icon="@mipmap/ic_launcher"> |
12 | 13 |
|
13 | 14 | <!-- Used by authentication redirect to/from web view --> |
14 | 15 | <activity |
|
63 | 64 | </intent-filter> |
64 | 65 | </activity> |
65 | 66 |
|
| 67 | + <activity |
| 68 | + android:name="com.linusu.flutter_web_auth_2.CallbackActivity" |
| 69 | + android:exported="true"> |
| 70 | + <intent-filter android:label="flutter_web_auth_2"> |
| 71 | + <action android:name="android.intent.action.VIEW" /> |
| 72 | + <category android:name="android.intent.category.DEFAULT" /> |
| 73 | + <category android:name="android.intent.category.BROWSABLE" /> |
| 74 | + <data android:scheme="caws-example-app" android:pathPrefix="/" /> |
| 75 | + </intent-filter> |
| 76 | + </activity> |
| 77 | + |
66 | 78 | <!-- Don't delete the meta-data below. |
67 | 79 | This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
68 | 80 | <meta-data |
|
0 commit comments