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