2022-04-14 18:14:19 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-08-06 15:52:15 -04:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: 2022-2024 The LineageOS Project
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
-->
|
2024-08-06 15:48:22 -04:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:sharedUserId="android.uid.system"
|
2024-08-06 15:50:04 -04:00
|
|
|
package="org.ifaa.aidl.manager">
|
2024-08-06 15:48:22 -04:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:persistent="true">
|
|
|
|
|
|
|
|
<service
|
2024-08-06 15:51:19 -04:00
|
|
|
android:name=".IfaaService"
|
2024-08-06 15:48:22 -04:00
|
|
|
android:exported="true">
|
|
|
|
|
2022-04-14 18:14:19 -04:00
|
|
|
<intent-filter>
|
2024-08-06 15:48:22 -04:00
|
|
|
<action android:name="org.ifaa.aidl.manager.IfaaManagerService" />
|
2022-04-14 18:14:19 -04:00
|
|
|
</intent-filter>
|
2024-08-06 15:48:22 -04:00
|
|
|
|
2022-04-14 18:14:19 -04:00
|
|
|
</service>
|
2024-08-06 15:48:22 -04:00
|
|
|
|
2022-04-14 18:14:19 -04:00
|
|
|
</application>
|
2024-08-06 15:48:22 -04:00
|
|
|
|
2022-04-14 18:14:19 -04:00
|
|
|
</manifest>
|