1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.dreamtheater"
4    >
5
6    <application android:label="DreamTheater"
7        android:icon="@mipmap/icon">
8        <activity android:name=".DreamTheaterActivity"
9            android:theme="@android:style/Theme.Wallpaper.NoTitleBar"
10            >
11            <intent-filter>
12                <action android:name="android.intent.action.MAIN" />
13                <category android:name="android.intent.category.LAUNCHER" />
14            </intent-filter>
15        </activity>
16        <activity android:name=".Demos$Demo1"
17            android:label="Demo: Wallpaper"
18            android:theme="@style/Theme.Dream.Transparent"
19            >
20            <intent-filter>
21                <action android:name="android.service.dreams.DreamService" />
22                <category android:name="android.intent.category.DEFAULT" />
23            </intent-filter>
24        </activity>
25        <activity android:name=".Demos$Demo2"
26            android:label="Demo: Slideshow"
27            android:theme="@style/Theme.Dream"
28            android:hardwareAccelerated="true"
29            >
30            <intent-filter>
31                <action android:name="android.service.dreams.DreamService" />
32                <category android:name="android.intent.category.DEFAULT" />
33            </intent-filter>
34        </activity>
35        <activity android:name=".BouncyDroid"
36            android:label="Demo: BouncyDroid"
37            android:theme="@style/Theme.Dream"
38            android:icon="@drawable/bouncy"
39            >
40            <intent-filter>
41                <action android:name="android.service.dreams.DreamService" />
42                <category android:name="android.intent.category.DEFAULT" />
43            </intent-filter>
44        </activity>
45    </application>
46</manifest>
47