Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / other / Daydream / root / AndroidManifest.xml.ftl
blob9777461b58fedfa6b262af6ce26e0d8b6b040a59
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android">
3     <application>
5 <#if configurable>
6         <activity
7             android:name="${relativePackage}.${settingsClassName}" />
8 </#if>
10         <!-- This service is only used on devices with API v17+ -->
11         <service
12             android:name="${relativePackage}.${className}"
13             android:exported="true" >
14             <intent-filter>
15                 <action android:name="android.service.dreams.DreamService" />
16                 <category android:name="android.intent.category.DEFAULT" />
17             </intent-filter>
18 <#if configurable>
20             <!-- Point to additional information for this dream -->
21             <meta-data
22                 android:name="android.service.dream"
23                 android:resource="@xml/${info_name}" />
24 </#if>
25         </service>
26     </application>
28 </manifest>