Home | History | Annotate | Download | only in Basic
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.android.dreams.basic"
      4     >
      5     <uses-feature android:glEsVersion="0x00020000" android:required="true" />
      6     <application android:label="@string/app_name">
      7         <service
      8             android:name="Colors"
      9             android:exported="true"
     10             android:icon="@mipmap/colors_icon"
     11             android:label="@string/color_dream_name">
     12             <intent-filter>
     13                 <action android:name="android.service.dreams.DreamService" />
     14                 <category android:name="android.intent.category.DEFAULT" />
     15             </intent-filter>
     16         </service>
     17     </application>
     18 </manifest>
     19