Home | History | Annotate | Download | only in root
      1 <manifest xmlns:android="http://schemas.android.com/apk/res/android">
      2 
      3     <application>
      4 
      5 <#if configurable>
      6         <activity
      7             android:name=".${settingsClassName}" />
      8 </#if>
      9 
     10         <!-- This service is only used on devices with API v17+ -->
     11         <service
     12             android:name=".${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>
     19 
     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>
     27 
     28 </manifest>
     29