mirror of
				https://github.com/oplus-giulia-dev/android_hardware_oplus
				synced 2025-11-04 13:55:35 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			714 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			714 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<!--
 | 
						|
     SPDX-FileCopyrightText: 2022-2025 The LineageOS Project
 | 
						|
     SPDX-License-Identifier: Apache-2.0
 | 
						|
-->
 | 
						|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    package="org.ifaa.aidl.manager">
 | 
						|
 | 
						|
    <uses-permission android:name="android.permission.USE_FINGERPRINT" />
 | 
						|
 | 
						|
    <application
 | 
						|
        android:label="@string/app_name"
 | 
						|
        android:persistent="true">
 | 
						|
 | 
						|
        <service
 | 
						|
            android:name=".IfaaService"
 | 
						|
            android:exported="true">
 | 
						|
 | 
						|
            <intent-filter>
 | 
						|
                <action android:name="org.ifaa.aidl.manager.IfaaManagerService" />
 | 
						|
            </intent-filter>
 | 
						|
 | 
						|
        </service>
 | 
						|
 | 
						|
    </application>
 | 
						|
 | 
						|
</manifest>
 |