1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.dreams.phototable"
4    >
5  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
6  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
7  <uses-permission android:name="android.permission.WAKE_LOCK" />
8  <uses-permission android:name="com.google.android.gallery3d.permission.PICASA_STORE" />
9  <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="17"/>
10
11  <application
12      android:label="@string/app_name"
13      android:icon="@mipmap/ic_launcher_phototable"
14      android:hardwareAccelerated="true"
15      android:largeHeap="true">
16      <service android:name="PhotoTableDream"
17          android:exported="true"
18          android:icon="@mipmap/ic_launcher_phototable"
19          android:label="@string/table_screensaver_name">
20          <meta-data
21             android:name="android.service.dream"
22             android:resource="@xml/photo_table_dream" />
23          <intent-filter>
24              <action android:name="android.service.dreams.DreamService" />
25              <category android:name="android.intent.category.DEFAULT" />
26          </intent-filter>
27      </service>
28      <activity android:name="PhotoTableDreamSettings"
29          android:exported="true"
30          android:icon="@mipmap/ic_launcher_phototable"
31          android:label="@string/table_screensaver_name">
32          <intent-filter>
33              <action android:name="android.intent.action.MAIN" />
34              <category android:name="android.intent.category.DEFAULT" />
35          </intent-filter>
36      </activity>
37      <service android:name="FlipperDream"
38          android:exported="true"
39          android:icon="@mipmap/ic_launcher_photoframe"
40          android:label="@string/flipper_screensaver_name">
41          <meta-data
42             android:name="android.service.dream"
43             android:resource="@xml/photo_flipper_dream" />
44          <intent-filter>
45              <action android:name="android.service.dreams.DreamService" />
46              <category android:name="android.intent.category.DEFAULT" />
47          </intent-filter>
48      </service>
49      <activity android:name="FlipperDreamSettings"
50          android:exported="true"
51          android:icon="@mipmap/ic_launcher_photoframe"
52          android:label="@string/flipper_screensaver_name">
53          <intent-filter>
54              <action android:name="android.intent.action.MAIN" />
55              <category android:name="android.intent.category.DEFAULT" />
56          </intent-filter>
57      </activity>
58  </application>
59</manifest>
60