|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
2 | | - |
3 | 2 | <!-- Internet --> |
4 | 3 | <uses-permission android:name="android.permission.INTERNET" /> |
5 | 4 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
|
15 | 14 |
|
16 | 15 |
|
17 | 16 | <uses-permission android:name="android.permission.VIBRATE" /> |
18 | | - <queries> |
19 | | - <intent> |
20 | | - <action android:name="android.intent.action.TTS_SERVICE" /> |
21 | | - </intent> |
22 | | - </queries> |
23 | | - |
24 | | - <application |
25 | | - android:name=".MainApplication" |
26 | | - android:largeHeap="true" |
27 | | - android:label="@string/app_name" |
28 | | - android:icon="@mipmap/ic_launcher" |
29 | | - android:roundIcon="@mipmap/ic_launcher" |
30 | | - android:allowBackup="true" |
31 | | - android:theme="@style/AppTheme" |
32 | | - android:usesCleartextTraffic="true" |
33 | | - android:supportsRtl="true"> |
34 | | - |
35 | | - <meta-data |
36 | | - android:name="expo.modules.notifications.default_notification_icon" |
37 | | - android:resource="@drawable/notification_icon" /> |
38 | | - |
39 | | - <meta-data |
40 | | - android:name="expo.modules.notifications.default_notification_color" |
41 | | - android:resource="@color/notification_icon_color" /> |
42 | | - |
43 | | - <activity |
44 | | - android:name=".MainActivity" |
45 | | - android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" |
46 | | - android:launchMode="singleTask" |
47 | | - android:windowSoftInputMode="adjustResize" |
48 | | - android:exported="true" |
49 | | - android:theme="@style/Theme.App.SplashScreen" |
50 | | - android:screenOrientation="unspecified"> |
51 | | - |
52 | | - <intent-filter> |
53 | | - <action android:name="android.intent.action.MAIN" /> |
54 | | - <category android:name="android.intent.category.LAUNCHER" /> |
55 | | - </intent-filter> |
56 | | - |
57 | | - <intent-filter> |
58 | | - <action android:name="android.intent.action.VIEW" /> |
59 | | - <category android:name="android.intent.category.DEFAULT" /> |
60 | | - <category android:name="android.intent.category.BROWSABLE" /> |
61 | | - <data android:scheme="lnreader" /> |
62 | | - </intent-filter> |
63 | | - </activity> |
64 | | - |
65 | | - <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> |
66 | | - |
67 | | - <service android:name="com.asterinet.react.bgactions.RNBackgroundActionsTask" android:foregroundServiceType="shortService" /> |
68 | | - |
69 | | - </application> |
| 17 | + <queries> |
| 18 | + <intent> |
| 19 | + <action android:name="android.intent.action.TTS_SERVICE"/> |
| 20 | + </intent> |
| 21 | + </queries> |
| 22 | + <application android:name=".MainApplication" android:largeHeap="true" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher" android:allowBackup="true" android:theme="@style/AppTheme" android:usesCleartextTraffic="true" android:supportsRtl="true"> |
| 23 | + <meta-data android:name="expo.modules.notifications.default_notification_color" android:resource="@color/notification_icon_color"/> |
| 24 | + <meta-data android:name="expo.modules.notifications.default_notification_icon" android:resource="@drawable/notification_icon"/> |
| 25 | + <service android:name="com.asterinet.react.bgactions.RNBackgroundActionsTask" android:foregroundServiceType="shortService"/> |
| 26 | + <activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|locale|layoutDirection" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:exported="true" android:theme="@style/Theme.App.SplashScreen" android:screenOrientation="unspecified"> |
| 27 | + <intent-filter> |
| 28 | + <action android:name="android.intent.action.MAIN"/> |
| 29 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 30 | + </intent-filter> |
| 31 | + <intent-filter> |
| 32 | + <action android:name="android.intent.action.VIEW"/> |
| 33 | + <category android:name="android.intent.category.DEFAULT"/> |
| 34 | + <category android:name="android.intent.category.BROWSABLE"/> |
| 35 | + <data android:scheme="lnreader"/> |
| 36 | + </intent-filter> |
| 37 | + </activity> |
| 38 | + <activity android:name="com.facebook.react.devsupport.DevSettingsActivity"/> |
| 39 | + </application> |
70 | 40 | </manifest> |
0 commit comments