John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2010 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
Galia Peycheva | a1e2fec | 2020-09-30 14:21:19 +0200 | [diff] [blame] | 7 | |
John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Galia Peycheva | a1e2fec | 2020-09-30 14:21:19 +0200 | [diff] [blame] | 9 | |
John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.android.test.silkfx"> |
| 19 | |
| 20 | <uses-sdk android:minSdkVersion="30"/> |
| 21 | |
| 22 | <uses-permission android:name="android.permission.CONTROL_DISPLAY_BRIGHTNESS" /> |
Galia Peycheva | fe59c4de | 2022-01-31 11:46:05 +0100 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 24 | |
| 25 | <application android:label="SilkFX" |
John Reck | 9fd2770 | 2024-05-13 15:26:22 -0400 | [diff] [blame] | 26 | android:theme="@style/Theme.UsefulDefault"> |
John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 27 | |
| 28 | <activity android:name=".Main" |
| 29 | android:label="SilkFX Demos" |
Galia Peycheva | fe59c4de | 2022-01-31 11:46:05 +0100 | [diff] [blame] | 30 | android:banner="@drawable/background1" |
John Reck | 9fd2770 | 2024-05-13 15:26:22 -0400 | [diff] [blame] | 31 | android:exported="true" |
| 32 | android:theme="@style/Theme.UsefulDefault"> |
John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 33 | <intent-filter> |
| 34 | <action android:name="android.intent.action.MAIN"/> |
| 35 | <category android:name="android.intent.category.DEFAULT"/> |
| 36 | <category android:name="android.intent.category.LAUNCHER"/> |
Galia Peycheva | fe59c4de | 2022-01-31 11:46:05 +0100 | [diff] [blame] | 37 | <category android:name="android.intent.category.LEANBACK_LAUNCHER"/> |
John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 38 | </intent-filter> |
| 39 | </activity> |
| 40 | |
| 41 | <activity android:name=".app.CommonDemoActivity" /> |
| 42 | |
| 43 | <activity android:name=".hdr.GlowActivity" |
| 44 | android:label="Glow Examples"/> |
| 45 | |
Lucas Dupin | b05a7e5 | 2020-08-31 16:01:11 -0700 | [diff] [blame] | 46 | <activity android:name=".materials.GlassActivity" |
Galia Peycheva | a1e2fec | 2020-09-30 14:21:19 +0200 | [diff] [blame] | 47 | android:label="Glass Examples" |
Galia Peycheva | a1e2fec | 2020-09-30 14:21:19 +0200 | [diff] [blame] | 48 | android:exported="true"> |
| 49 | <intent-filter> |
| 50 | <action android:name="android.intent.action.MAIN"/> |
Galia Peycheva | a1e2fec | 2020-09-30 14:21:19 +0200 | [diff] [blame] | 51 | </intent-filter> |
| 52 | </activity> |
Lucas Dupin | b05a7e5 | 2020-08-31 16:01:11 -0700 | [diff] [blame] | 53 | |
Galia Peycheva | fe59c4de | 2022-01-31 11:46:05 +0100 | [diff] [blame] | 54 | <activity android:name=".materials.BackgroundBlurActivity" |
| 55 | android:theme="@style/Theme.BackgroundBlurTheme" |
| 56 | android:exported="true"> |
| 57 | </activity> |
| 58 | |
John Reck | 9f85cd3 | 2023-02-14 19:40:20 -0500 | [diff] [blame] | 59 | <activity android:name=".app.HdrImageViewer" |
| 60 | android:label="HDR Gainmap Image Viewer" |
| 61 | android:exported="true"> |
| 62 | <intent-filter> |
| 63 | <action android:name="android.intent.action.VIEW"/> |
| 64 | <category android:name="android.intent.category.DEFAULT"/> |
| 65 | <data android:mimeType="image/*"/> |
| 66 | </intent-filter> |
Nick Deakin | e6259ec | 2023-05-03 12:10:41 -0400 | [diff] [blame] | 67 | <intent-filter> |
| 68 | <action android:name="android.intent.action.SEND" /> |
| 69 | <category android:name="android.intent.category.DEFAULT" /> |
| 70 | <data android:mimeType="image/*" /> |
| 71 | </intent-filter> |
John Reck | 9f85cd3 | 2023-02-14 19:40:20 -0500 | [diff] [blame] | 72 | </activity> |
| 73 | |
John Reck | c8f9a1e | 2020-08-06 09:29:09 -0700 | [diff] [blame] | 74 | </application> |
| 75 | </manifest> |