55 tools : ignore =" QueryAllPackagesPermission" >
66
77 <!-- Wifi is not the only way to get an internet connection -->
8- <uses-feature android : name =" android.hardware.wifi" android : required =" false" />
8+ <uses-feature
9+ android : name =" android.hardware.wifi"
10+ android : required =" false" />
911
1012 <!-- Retrieve online modules -->
1113 <uses-permission android : name =" android.permission.INTERNET" />
1618 <!-- Open config apps for applications -->
1719 <uses-permission-sdk-23 android : name =" android.permission.QUERY_ALL_PACKAGES" />
1820 <!-- Supposed to fix bugs with old firmware, only requested on pre Marshmallow -->
19- <uses-permission android : name =" android.permission.READ_EXTERNAL_STORAGE"
21+ <uses-permission
22+ android : name =" android.permission.READ_EXTERNAL_STORAGE"
2023 android : maxSdkVersion =" 22" />
2124 <!-- Post background notifications -->
2225 <uses-permission-sdk-23 android : name =" android.permission.POST_NOTIFICATIONS" />
2326
2427 <application
2528 android : name =" .MainApplication"
2629 android : allowBackup =" true"
30+ android : dataExtractionRules =" @xml/data_extraction_rules"
31+ android : fullBackupContent =" @xml/full_backup_content"
2732 android : icon =" @mipmap/ic_launcher"
28- android : roundIcon =" @mipmap/ic_launcher"
2933 android : label =" @string/app_name"
34+ android : networkSecurityConfig =" @xml/network_security_config"
35+ android : roundIcon =" @mipmap/ic_launcher"
3036 android : supportsRtl =" @bool/lang_support_rtl"
3137 android : testOnly =" false"
3238 android : theme =" @style/Theme.MagiskModuleManager"
33- android : fullBackupContent =" @xml/full_backup_content"
34- android : dataExtractionRules =" @xml/data_extraction_rules"
35- android : networkSecurityConfig =" @xml/network_security_config"
3639 android : usesCleartextTraffic =" false"
37- tools : targetApi = " s "
40+ tools : ignore = " ManifestResource "
3841 tools : replace =" android:supportsRtl"
39- tools : ignore =" ManifestResource" >
40- <receiver android : name =" com.fox2code.mmm.background.BackgroundBootListener"
42+ tools : targetApi =" s" >
43+ <receiver
44+ android : name =" com.fox2code.mmm.background.BackgroundBootListener"
4145 android : exported =" true" >
4246 <intent-filter >
4347 <action android : name =" android.intent.action.BOOT_COMPLETED" />
4448 </intent-filter >
4549 </receiver >
50+
4651 <activity
4752 android : name =" .settings.SettingsActivity"
48- android : parentActivityName =" .MainActivity"
4953 android : exported =" true"
50- android : label =" @string/title_activity_settings" >
54+ android : label =" @string/title_activity_settings"
55+ android : parentActivityName =" .MainActivity" >
5156 <intent-filter >
5257 <action android : name =" android.intent.action.APPLICATION_PREFERENCES" />
5358 </intent-filter >
5459 </activity >
5560 <activity
5661 android : name =" .MainActivity"
5762 android : exported =" true"
58- android : launchMode = " singleTask "
59- android : label = " @string/app_name_short " >
63+ android : label = " @string/app_name_short "
64+ android : launchMode = " singleTask " >
6065 <intent-filter >
6166 <action android : name =" android.intent.action.MAIN" />
6267 <category android : name =" android.intent.category.LAUNCHER" />
6368 </intent-filter >
6469 </activity >
6570 <activity
6671 android : name =" .installer.InstallerActivity"
67- android : parentActivityName =" .MainActivity"
6872 android : exported =" false"
69- android : screenOrientation =" portrait"
7073 android : launchMode =" singleTop"
74+ android : parentActivityName =" .MainActivity"
75+ android : screenOrientation =" portrait"
7176 tools : ignore =" LockedOrientationActivity" >
7277 <intent-filter >
7378 <action android : name =" ${applicationId}.intent.action.INSTALL_MODULE_INTERNAL" />
7479 </intent-filter >
7580 </activity >
7681 <activity
7782 android : name =" .markdown.MarkdownActivity"
78- android : parentActivityName =" .MainActivity"
7983 android : exported =" false"
80- android : theme = " @style/Theme.MagiskModuleManager " >
81- </activity >
84+ android : parentActivityName = " .MainActivity "
85+ android : theme = " @style/Theme.MagiskModuleManager " > </activity >
8286 <activity
8387 android : name =" .androidacy.AndroidacyActivity"
84- android : parentActivityName =" .MainActivity"
8588 android : exported =" false"
89+ android : parentActivityName =" .MainActivity"
8690 android : theme =" @style/Theme.MagiskModuleManager" >
8791 <intent-filter >
8892 <action android : name =" ${applicationId}.intent.action.OPEN_ANDROIDACY_INTERNAL" />
8993 </intent-filter >
9094 </activity >
91- <activity android : name =" com.mikepenz.aboutlibraries.ui.LibsActivity"
92- tools : node =" remove" />
95+ <activity
96+ android : name =" com.mikepenz.aboutlibraries.ui.LibsActivity"
97+ tools : node =" remove" />
98+
9399 <provider
94100 android : name =" androidx.startup.InitializationProvider"
95101 android : authorities =" ${applicationId}.androidx-startup"
96102 android : exported =" false"
97103 tools : node =" merge" >
98- <meta-data android : name =" androidx.emoji2.text.EmojiCompatInitializer"
104+ <meta-data
105+ android : name =" androidx.emoji2.text.EmojiCompatInitializer"
99106 tools : node =" remove" />
100- <meta-data android : name =" androidx.work.WorkManagerInitializer"
107+ <meta-data
108+ android : name =" androidx.work.WorkManagerInitializer"
101109 tools : node =" remove" />
102110 </provider >
111+ <meta-data
112+ android : name =" io.sentry.dsn"
113+ android : value =" https://ba5cb5ef513b423cbd54a2a8457113b1@sentry.androidacy.com/7" />
114+ <!-- Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.
115+ We recommend adjusting this value in production. -->
116+ <meta-data
117+ android : name =" io.sentry.traces.sample-rate"
118+ android : value =" 1.0" />
119+ <!-- Enable user interaction tracing to capture transactions for various UI events (such as clicks or scrolls). -->
120+ <meta-data
121+ android : name =" io.sentry.traces.user-interaction.enable"
122+ android : value =" true" />
103123 </application >
104124</manifest >
0 commit comments