aboutsummaryrefslogtreecommitdiffstats
path: root/templates/other/Daydream/root/AndroidManifest.xml.ftl
blob: c23bc6eda905fff4444231b41eca604fb76e908e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <application>

<#if configurable>
        <activity
            android:name=".${settingsClassName}" />
</#if>

        <!-- This service is only used on devices with API v17+ -->
        <service
            android:name=".${className}"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.service.dreams.DreamService" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
<#if configurable>

            <!-- Point to additional information for this dream -->
            <meta-data
                android:name="android.service.dream"
                android:resource="@xml/${info_name}" />
</#if>
        </service>
    </application>

</manifest>