|
13 | 13 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
14 | 14 |
|
15 | 15 | <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
16 |
| - <uses-permission |
17 |
| - android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" /> |
18 |
| - <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/> |
19 |
| - <!-- Device with versions >= Pie need this permission --> |
20 |
| - <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> |
21 |
| - <uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" /> |
| 16 | + <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> |
| 17 | + |
22 | 18 | <queries>
|
23 | 19 | <intent>
|
24 | 20 | <action android:name="android.intent.action.TTS_SERVICE" />
|
|
52 | 48 |
|
53 | 49 | <application
|
54 | 50 | android:allowBackup="true"
|
| 51 | + android:dataExtractionRules="@xml/data_extraction_rules" |
55 | 52 | android:fullBackupContent="@xml/backup_rules"
|
56 |
| - android:dataExtractionRules = "@xml/data_extraction_rules" |
57 | 53 | android:hardwareAccelerated="true"
|
58 | 54 | android:largeHeap="true"
|
59 | 55 | android:requestLegacyExternalStorage="true"
|
|
80 | 76 | android:name="androidx.core.content.FileProvider"
|
81 | 77 | android:authorities="${applicationId}.fileprovider"
|
82 | 78 | android:exported="false"
|
| 79 | + android:grantUriPermissions="true" |
83 | 80 | tools:node="merge"
|
84 |
| - tools:overrideLibrary="com.squareup.picasso.picasso" |
85 |
| - android:grantUriPermissions="true"> |
| 81 | + tools:overrideLibrary="com.squareup.picasso.picasso"> |
86 | 82 | <meta-data
|
87 | 83 | android:name="android.support.FILE_PROVIDER_PATHS"
|
88 | 84 | android:resource="@xml/provider_paths" />
|
|
92 | 88 | android:name=".error.DiagnosticReportActivity"
|
93 | 89 | android:exported="false" />
|
94 | 90 | <service android:name=".read_aloud.ReadAloudService" />
|
95 |
| - <service |
96 |
| - android:name=".downloader.downloadManager.DownloadMonitorService" |
97 |
| - android:foregroundServiceType="dataSync" /> |
98 | 91 | </application>
|
99 | 92 | </manifest>
|
0 commit comments