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