blob: 9777461b58fedfa6b262af6ce26e0d8b6b040a59 [file] [log] [blame]
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<#if configurable>
<activity
android:name="${relativePackage}.${settingsClassName}" />
</#if>
<!-- This service is only used on devices with API v17+ -->
<service
android:name="${relativePackage}.${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>