blob: bb766497bb61986d3b7170045c607352f1e3f8d0 [file] [log] [blame]
Daniel Sandlere05bc412012-08-31 02:35:31 -04001<?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" />
Chris Wrenb77c1ce2012-09-27 16:52:43 -04006 <application android:label="@string/app_name">
Daniel Sandlere05bc412012-08-31 02:35:31 -04007 <service
8 android:name="Colors"
9 android:exported="true"
John Spurlock392a90e2014-06-30 10:14:03 -040010 android:permission="android.permission.BIND_DREAM_SERVICE"
Daniel Sandler71db4d52012-08-31 03:32:50 -040011 android:icon="@mipmap/colors_icon"
Chris Wrenb77c1ce2012-09-27 16:52:43 -040012 android:label="@string/color_dream_name">
Daniel Sandlere05bc412012-08-31 02:35:31 -040013 <intent-filter>
Dianne Hackborne3498c82012-09-28 18:03:23 -070014 <action android:name="android.service.dreams.DreamService" />
Daniel Sandlere05bc412012-08-31 02:35:31 -040015 <category android:name="android.intent.category.DEFAULT" />
Daniel Sandlere05bc412012-08-31 02:35:31 -040016 </intent-filter>
17 </service>
18 </application>
19</manifest>