blob: c401ef7c27a3e146896f403d3a1f0a120619e04b [file] [log] [blame]
Chris Wrenc8ca07e2012-08-16 17:33:34 -04001<?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 >
Chris Wrene8f4d552012-10-12 19:03:26 -04005 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Chris Wrenc8ca07e2012-08-16 17:33:34 -04006 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Chris Wrene8f4d552012-10-12 19:03:26 -04007 <uses-permission android:name="android.permission.WAKE_LOCK" />
Hung-ying Tyan14a31af2012-10-09 15:25:49 +08008 <uses-permission android:name="com.google.android.gallery3d.permission.PICASA_STORE" />
Chris Wren88d80f42013-04-04 09:17:26 -04009 <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="17"/>
Chris Wren20e25542012-08-23 12:35:00 -040010
Chris Wrenf61019c2012-08-30 17:42:57 -040011 <application
12 android:label="@string/app_name"
Chris Wrencbe7a5c2012-09-19 15:05:09 -040013 android:icon="@mipmap/ic_launcher_phototable"
Chris Wrenf61019c2012-08-30 17:42:57 -040014 android:hardwareAccelerated="true"
Romain Guy6d781062012-10-15 20:09:50 -070015 android:largeHeap="true">
Chris Wrend85f53c2012-09-06 16:46:57 -040016 <service android:name="PhotoTableDream"
Chris Wrenf61019c2012-08-30 17:42:57 -040017 android:exported="true"
Chris Wrencbe7a5c2012-09-19 15:05:09 -040018 android:icon="@mipmap/ic_launcher_phototable"
Chris Wrenc91cbab2012-08-31 12:46:30 -040019 android:label="@string/table_screensaver_name">
Chris Wrend85f53c2012-09-06 16:46:57 -040020 <meta-data
John Spurlock56e419c2012-09-26 12:43:14 -040021 android:name="android.service.dream"
22 android:resource="@xml/photo_table_dream" />
Chris Wrend85f53c2012-09-06 16:46:57 -040023 <intent-filter>
Dianne Hackbornfe0e98b2012-09-28 18:03:48 -070024 <action android:name="android.service.dreams.DreamService" />
Chris Wrend85f53c2012-09-06 16:46:57 -040025 <category android:name="android.intent.category.DEFAULT" />
Chris Wrend85f53c2012-09-06 16:46:57 -040026 </intent-filter>
27 </service>
28 <activity android:name="PhotoTableDreamSettings"
29 android:exported="true"
Chris Wrencbe7a5c2012-09-19 15:05:09 -040030 android:icon="@mipmap/ic_launcher_phototable"
Chris Wrend85f53c2012-09-06 16:46:57 -040031 android:label="@string/table_screensaver_name">
Chris Wrenc91cbab2012-08-31 12:46:30 -040032 <intent-filter>
33 <action android:name="android.intent.action.MAIN" />
34 <category android:name="android.intent.category.DEFAULT" />
Chris Wrenc91cbab2012-08-31 12:46:30 -040035 </intent-filter>
Chris Wrend85f53c2012-09-06 16:46:57 -040036 </activity>
Chris Wrenc91cbab2012-08-31 12:46:30 -040037 <service android:name="FlipperDream"
38 android:exported="true"
Chris Wrencbe7a5c2012-09-19 15:05:09 -040039 android:icon="@mipmap/ic_launcher_photoframe"
Chris Wrenc91cbab2012-08-31 12:46:30 -040040 android:label="@string/flipper_screensaver_name">
Chris Wrend85f53c2012-09-06 16:46:57 -040041 <meta-data
John Spurlock56e419c2012-09-26 12:43:14 -040042 android:name="android.service.dream"
43 android:resource="@xml/photo_flipper_dream" />
Chris Wrenf61019c2012-08-30 17:42:57 -040044 <intent-filter>
Dianne Hackbornfe0e98b2012-09-28 18:03:48 -070045 <action android:name="android.service.dreams.DreamService" />
Chris Wrenf61019c2012-08-30 17:42:57 -040046 <category android:name="android.intent.category.DEFAULT" />
Chris Wrenf61019c2012-08-30 17:42:57 -040047 </intent-filter>
48 </service>
Chris Wrend85f53c2012-09-06 16:46:57 -040049 <activity android:name="FlipperDreamSettings"
50 android:exported="true"
Chris Wrencbe7a5c2012-09-19 15:05:09 -040051 android:icon="@mipmap/ic_launcher_photoframe"
Chris Wrend85f53c2012-09-06 16:46:57 -040052 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>
Chris Wrenf61019c2012-08-30 17:42:57 -040058 </application>
Chris Wrenc8ca07e2012-08-16 17:33:34 -040059</manifest>