AndroidManifest.xml 2.46 KB
Newer Older
Chris Wren's avatar
Chris Wren committed
1 2 3 4 5 6
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.dreams.phototable"
    >
  <uses-permission android:name="android.permission.WAKE_LOCK" />
  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
7
  <uses-permission android:name="com.google.android.gallery3d.permission.PICASA_STORE" />
Chris Wren's avatar
Chris Wren committed
8

9 10
  <application
      android:label="@string/app_name"
Chris Wren's avatar
Chris Wren committed
11
      android:icon="@mipmap/ic_launcher_phototable"
12 13
      android:largeHeap="true">
      android:hardwareAccelerated="true"
14
      <service android:name="PhotoTableDream"
15
          android:exported="true"
Chris Wren's avatar
Chris Wren committed
16
          android:icon="@mipmap/ic_launcher_phototable"
Chris Wren's avatar
Chris Wren committed
17
          android:label="@string/table_screensaver_name">
18
          <meta-data
19 20
             android:name="android.service.dream"
             android:resource="@xml/photo_table_dream" />
Chris Wren's avatar
Chris Wren committed
21
          <intent-filter>
22
              <action android:name="android.service.dreams.DreamService" />
Chris Wren's avatar
Chris Wren committed
23 24 25
              <category android:name="android.intent.category.DEFAULT" />
          </intent-filter>
      </service>
26 27
      <activity android:name="PhotoTableDreamSettings"
          android:exported="true"
Chris Wren's avatar
Chris Wren committed
28
          android:icon="@mipmap/ic_launcher_phototable"
29 30 31 32 33 34
          android:label="@string/table_screensaver_name">
          <intent-filter>
              <action android:name="android.intent.action.MAIN" />
              <category android:name="android.intent.category.DEFAULT" />
          </intent-filter>
      </activity>
Chris Wren's avatar
Chris Wren committed
35 36
      <service android:name="FlipperDream"
          android:exported="true"
Chris Wren's avatar
Chris Wren committed
37
          android:icon="@mipmap/ic_launcher_photoframe"
Chris Wren's avatar
Chris Wren committed
38
          android:label="@string/flipper_screensaver_name">
39
          <meta-data
40 41
             android:name="android.service.dream"
             android:resource="@xml/photo_flipper_dream" />
42
          <intent-filter>
43
              <action android:name="android.service.dreams.DreamService" />
44 45 46
              <category android:name="android.intent.category.DEFAULT" />
          </intent-filter>
      </service>
47 48
      <activity android:name="FlipperDreamSettings"
          android:exported="true"
Chris Wren's avatar
Chris Wren committed
49
          android:icon="@mipmap/ic_launcher_photoframe"
50 51 52 53 54 55
          android:label="@string/flipper_screensaver_name">
          <intent-filter>
              <action android:name="android.intent.action.MAIN" />
              <category android:name="android.intent.category.DEFAULT" />
          </intent-filter>
      </activity>
56
  </application>
Chris Wren's avatar
Chris Wren committed
57
</manifest>