blob: 25092b52e2b6f1e345de13638223197b521c0724 [file] [log] [blame]
John Reckc8f9a1e2020-08-06 09:29:09 -07001<?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 Peychevaa1e2fec2020-09-30 14:21:19 +02007
John Reckc8f9a1e2020-08-06 09:29:09 -07008 http://www.apache.org/licenses/LICENSE-2.0
Galia Peychevaa1e2fec2020-09-30 14:21:19 +02009
John Reckc8f9a1e2020-08-06 09:29:09 -070010 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 Peychevafe59c4de2022-01-31 11:46:05 +010023 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
John Reckc8f9a1e2020-08-06 09:29:09 -070024
25 <application android:label="SilkFX"
John Reck9fd27702024-05-13 15:26:22 -040026 android:theme="@style/Theme.UsefulDefault">
John Reckc8f9a1e2020-08-06 09:29:09 -070027
28 <activity android:name=".Main"
29 android:label="SilkFX Demos"
Galia Peychevafe59c4de2022-01-31 11:46:05 +010030 android:banner="@drawable/background1"
John Reck9fd27702024-05-13 15:26:22 -040031 android:exported="true"
32 android:theme="@style/Theme.UsefulDefault">
John Reckc8f9a1e2020-08-06 09:29:09 -070033 <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 Peychevafe59c4de2022-01-31 11:46:05 +010037 <category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
John Reckc8f9a1e2020-08-06 09:29:09 -070038 </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 Dupinb05a7e52020-08-31 16:01:11 -070046 <activity android:name=".materials.GlassActivity"
Galia Peychevaa1e2fec2020-09-30 14:21:19 +020047 android:label="Glass Examples"
Galia Peychevaa1e2fec2020-09-30 14:21:19 +020048 android:exported="true">
49 <intent-filter>
50 <action android:name="android.intent.action.MAIN"/>
Galia Peychevaa1e2fec2020-09-30 14:21:19 +020051 </intent-filter>
52 </activity>
Lucas Dupinb05a7e52020-08-31 16:01:11 -070053
Galia Peychevafe59c4de2022-01-31 11:46:05 +010054 <activity android:name=".materials.BackgroundBlurActivity"
55 android:theme="@style/Theme.BackgroundBlurTheme"
56 android:exported="true">
57 </activity>
58
John Reck9f85cd32023-02-14 19:40:20 -050059 <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 Deakine6259ec2023-05-03 12:10:41 -040067 <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 Reck9f85cd32023-02-14 19:40:20 -050072 </activity>
73
John Reckc8f9a1e2020-08-06 09:29:09 -070074 </application>
75</manifest>