11<?xml version =" 1.0" encoding =" utf-8" ?>
2-
3- <!--
4- ~ Copyright (c) 2023 to present Androidacy and contributors. Names, logos, icons, and the Androidacy name are all trademarks of Androidacy and may not be used without license. See LICENSE for more information.
5- -->
6-
72<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
83 xmlns : tools =" http://schemas.android.com/tools"
94 tools : ignore =" QueryAllPackagesPermission"
1510 <intent >
1611 <action android : name =" com.fox2code.mmm.utils.intent.action.OPEN_EXTERNAL" />
1712 </intent >
18- </queries >
19- <!-- Wifi is not the only way to get an internet connection -->
13+ </queries > <!-- Wifi is not the only way to get an internet connection -->
2014 <uses-feature
2115 android : name =" android.hardware.wifi"
22- android : required =" false" />
23- <!-- uses webview -->
16+ android : required =" false" /> <!-- uses webview -->
2417 <uses-feature
2518 android : name =" android.software.webview"
26- android : required =" true" />
27- <!-- uses opengl 1.2 -->
19+ android : required =" true" /> <!-- uses opengl 1.2 -->
2820 <uses-feature
2921 android : name =" android.hardware.opengles.aep"
3022 android : required =" false" />
5143 <uses-permission android : name =" android.permission.FOREGROUND_SERVICE" />
5244 <!-- wake lock -->
5345 <uses-permission android : name =" android.permission.WAKE_LOCK" />
46+ <!-- request uninstall -->
47+ <uses-permission android : name =" android.permission.REQUEST_DELETE_PACKAGES" />
48+ <!-- wifi -->
49+ <uses-permission android : name =" android.permission.ACCESS_WIFI_STATE" />
5450
5551 <application
5652 android : name =" .MainApplication"
5753 android : allowBackup =" false"
58- android : hardwareAccelerated = " true "
54+ android : appCategory = " productivity "
5955 android : dataExtractionRules =" @xml/data_extraction_rules"
6056 android : enableOnBackInvokedCallback =" true"
57+ android : forceDarkAllowed =" false"
6158 android : fullBackupContent =" @xml/full_backup_content"
59+ android : hardwareAccelerated =" true"
6260 android : icon =" @mipmap/ic_launcher"
6361 android : label =" @string/app_name_v2"
62+ android : memtagMode =" async"
6463 android : networkSecurityConfig =" @xml/network_security_config"
6564 android : roundIcon =" @mipmap/ic_launcher"
6665 android : supportsRtl =" @bool/lang_support_rtl"
6766 android : testOnly =" false"
68- android : appCategory =" productivity"
69- android : memtagMode =" async"
7067 android : theme =" @style/Theme.MagiskModuleManager"
7168 android : usesCleartextTraffic =" false"
72- android : forceDarkAllowed =" false"
7369 tools : ignore =" ManifestResource"
7470 tools : replace =" android:supportsRtl"
7571 tools : targetApi =" tiramisu" >
72+ <activity
73+ android : name =" .ExpiredActivity"
74+ android : exported =" false" />
7675 <activity
7776 android : name =" .UpdateActivity"
7877 android : exported =" false"
105104 <action android : name =" android.intent.action.APPLICATION_PREFERENCES" />
106105 </intent-filter >
107106 </activity >
108-
109107 <activity
110108 android : name =" .MainActivity"
111109 android : exported =" true"
112110 android : label =" @string/app_name_short_v2"
113111 android : launchMode =" singleTask"
114- android : theme =" @style/Theme.MagiskModuleManager.NoActionBar" >
112+ android : theme =" @style/Theme.MagiskModuleManager.NoActionBar" >
115113 <intent-filter >
116114 <action android : name =" android.intent.action.MAIN" />
115+
117116 <category android : name =" android.intent.category.LAUNCHER" />
118117 </intent-filter >
119118 </activity >
120-
121119 <activity
122120 android : name =" .installer.InstallerActivity"
123121 android : exported =" false"
131129 <action android:name="${applicationId}.intent.action.INSTALL_MODULE_INTERNAL" />
132130 </intent-filter>
133131 -->
134- </activity >
135-
136- <!-- We can handle zip files -->
132+ </activity > <!-- We can handle zip files -->
137133 <activity
138134 android : name =" .utils.ZipFileOpener"
139135 android : exported =" true"
140- android : theme =" @style/Theme.MagiskModuleManager.NoActionBar" >
136+ android : theme =" @style/Theme.MagiskModuleManager.NoActionBar" >
141137 <intent-filter >
142138 <action android : name =" android.intent.action.VIEW" />
143139
148144 <data android : scheme =" content" />
149145 </intent-filter >
150146 </activity >
151-
152147 <activity
153148 android : name =" .markdown.MarkdownActivity"
154149 android : exported =" false"
155150 android : parentActivityName =" .MainActivity"
156151 android : theme =" @style/Theme.MagiskModuleManager.NoActionBar" />
157-
158152 <activity
159153 android : name =" .androidacy.AndroidacyActivity"
160154 android : exported =" false"
161155 android : parentActivityName =" .MainActivity"
162- android : theme =" @style/Theme.MagiskModuleManager.NoActionBar" >
156+ android : theme =" @style/Theme.MagiskModuleManager.NoActionBar" >
163157
164158 <!--
165159 <intent-filter>
166160 <action android:name="${applicationId}.intent.action.OPEN_ANDROIDACY_INTERNAL" />
167161 </intent-filter>
168162 -->
169163 </activity >
170-
171164 <activity
172165 android : name =" com.mikepenz.aboutlibraries.ui.LibsActivity"
173166 tools : node =" remove" />
184177 android : name =" androidx.work.WorkManagerInitializer"
185178 tools : node =" remove" />
186179 </provider >
187-
188180 <provider
189181 android : name =" androidx.core.content.FileProvider"
190182 android : authorities =" ${applicationId}.file-provider"
200192 android : value =" false" />
201193 <meta-data
202194 android : name =" io.sentry.dsn"
203- android : value =" https://e199c2a54a1f49b1b5beb3244f2c2358@sentry.androidacy.com/77" />
204- <!-- enable view hierarchy for crashes -->
205- < meta-data android : name =" io.sentry.attach-view-hierarchy" android : value = " true " />
206- <!-- Sane value, but feel free to lower it -->
195+ android : value =" https://e199c2a54a1f49b1b5beb3244f2c2358@sentry.androidacy.com/77" /> <!-- enable view hierarchy for crashes -->
196+ <meta-data
197+ android : name =" io.sentry.attach-view-hierarchy"
198+ android : value = " true " /> <!-- Sane value, but feel free to lower it -->
207199 <meta-data
208200 android : name =" io.sentry.traces.sample-rate"
209- android : value =" 0.2" />
210- <!-- Doesn't actually monitor anything, just used to get the activities the user went through -->
201+ android : value =" 0.2" /> <!-- Doesn't actually monitor anything, just used to get the activities the user went through -->
211202 <meta-data
212203 android : name =" io.sentry.traces.user-interaction.enable"
213- android : value =" true" />
214- <!-- Just a screenshot of ONLY the current activity at the time of the crash -->
204+ android : value =" true" /> <!-- Just a screenshot of ONLY the current activity at the time of the crash -->
215205 <meta-data
216206 android : name =" io.sentry.attach-screenshot"
217- android : value =" true" />
218- <!-- Just the current activity at the time of the crash -->
207+ android : value =" true" /> <!-- Just the current activity at the time of the crash -->
219208 <meta-data
220209 android : name =" io.sentry.attach-stacktrace"
221- android : value =" true" />
222- <!-- Performance profiling -->
210+ android : value =" true" /> <!-- Performance profiling -->
223211 <meta-data
224212 android : name =" io.sentry.traces.profiling.sample-rate"
225213 android : value =" 0.2" />
226214 </application >
227215
228- </manifest >
216+ </manifest >
0 commit comments