1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17        package="com.android.support.car.lenspicker" >
18
19    <uses-sdk
20        android:minSdkVersion="22"
21        android:targetSdkVersion='23'/>
22
23    <!-- Permission to allow the LensPicker to set a default activity for an Intent. -->
24    <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" />
25    <uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
26
27    <application
28        android:label="@string/app_label" >
29
30        <activity android:name=".LensPickerActivity"
31            android:theme="@style/Theme.FloatingLensPicker"
32            android:label="LensPickerActivity"
33            android:resizeableActivity="true"
34            android:excludeFromRecents="true"
35            android:launchMode="singleTask"
36            android:noHistory="true">
37            <meta-data android:name="distractionOptimized" android:value="true"/>
38        </activity>
39
40        <activity android:name=".LensResolverActivity"
41            android:theme="@style/Theme.FloatingLensPicker"
42            android:label="LensResolverActivity"
43            android:resizeableActivity="true"
44            android:excludeFromRecents="true"
45            android:launchMode="singleTask"
46            android:noHistory="true">
47            <meta-data android:name="distractionOptimized" android:value="true"/>
48        </activity>
49
50        <activity android:name=".LensPickerTrampolineActivity"
51            android:theme="@style/Theme.FloatingLensPicker"
52            android:label="LensPickerTrampolineActivity"
53            android:resizeableActivity="true"
54            android:excludeFromRecents="true"
55            android:noHistory="true" >
56            <meta-data android:name="distractionOptimized" android:value="true"/>
57            <intent-filter>
58                <action android:name="android.intent.action.MAIN" />
59                <category android:name="android.intent.category.LAUNCHER" />
60                <category android:name="android.intent.category.DEFAULT" />
61            </intent-filter>
62        </activity>
63    </application>
64</manifest>
65