28 lines
746 B
XML
28 lines
746 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
/*
|
|
* Copyright (C) 2023 Paranoid Android
|
|
* SPDX-License-Identifer: Apache-2.0
|
|
*/
|
|
-->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.android.systemui"
|
|
android:sharedUserId="android.uid.systemui"
|
|
coreApp="true">
|
|
|
|
<original-package android:name="com.android.systemui"/>
|
|
|
|
<!-- DataSwitch tile -->
|
|
<uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />
|
|
|
|
<application
|
|
tools:replace="android:appComponentFactory"
|
|
android:appComponentFactory=".SystemUIAppComponentFactory">
|
|
|
|
<!-- Content goes here -->
|
|
|
|
</application>
|
|
|
|
</manifest>
|