1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3          package="com.google.android.yukawaservice"
4          android:persistent="true"
5          android:sharedUserId="android.uid.system">
6
7    <application
8            android:allowBackup="true"
9            android:label="ATV Customization">
10        <receiver android:exported="true"
11            android:name=".RemoteSyncReceiver">
12            <intent-filter>
13                <action android:name="android.intent.action.GLOBAL_BUTTON"/>
14            </intent-filter>
15        </receiver>
16    </application>
17</manifest>
18