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:name=".RemoteSyncReceiver">
11            <intent-filter>
12                <action android:name="android.intent.action.GLOBAL_BUTTON"/>
13            </intent-filter>
14        </receiver>
15    </application>
16</manifest>
17