mirror of
				https://github.com/AetherDroid/android_device_samsung_universal7570-common.git
				synced 2025-10-29 23:38:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable file
		
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     package="org.lineageos.settings.device"
 | |
|     android:sharedUserId="android.uid.system">
 | |
| 
 | |
|     <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
 | |
| 
 | |
|     <application
 | |
|         android:label="@string/app_name"
 | |
|         android:theme="@style/Theme.Main">
 | |
|         <receiver android:name="org.lineageos.settings.device.BootCompletedReceiver">
 | |
|             <intent-filter>
 | |
|                 <action android:name="android.intent.action.BOOT_COMPLETED" />
 | |
|                 <category android:name="android.intent.category.DEFAULT" />
 | |
|             </intent-filter>
 | |
|         </receiver>
 | |
| 
 | |
|         <activity
 | |
|             android:name=".AdvancedDisplayActivity"
 | |
|             android:label="@string/app_name">
 | |
|             <intent-filter>
 | |
|                 <action android:name="com.android.settings.action.EXTRA_SETTINGS" />
 | |
|             </intent-filter>
 | |
|             <meta-data
 | |
|                 android:name="com.android.settings.category"
 | |
|                 android:value="com.android.settings.category.ia.display" />
 | |
|             <meta-data
 | |
|                 android:name="com.android.settings.summary"
 | |
|                 android:value="@string/summary_empty" />
 | |
|         </activity>
 | |
|     </application>
 | |
| </manifest>
 | 
