blob: 52634dcadc88ef87e15e2b1b78b4ca29d96fbfdf [file] [log] [blame]
Anthony Chen90e57442016-10-20 11:50:11 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2016 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 -->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti4d498132020-03-24 12:33:29 -070019 package="com.android.car.mapsplaceholder">
20 <uses-sdk android:minSdkVersion="23"
21 android:targetSdkVersion="23"/>
Anthony Chen90e57442016-10-20 11:50:11 -070022
23 <application android:label="@string/app_name"
Ashwini Oruganti4d498132020-03-24 12:33:29 -070024 android:icon="@drawable/logo_my_maps">
Anthony Chen90e57442016-10-20 11:50:11 -070025
26 <activity android:name=".MapsPlaceholderActivity"
Ashwini Oruganti4d498132020-03-24 12:33:29 -070027 android:theme="@style/CarMapsTheme"
28 android:launchMode="singleTask"
29 android:label="@string/app_name"
30 android:resizeableActivity="true"
31 android:exported="true">
Anthony Chen90e57442016-10-20 11:50:11 -070032 <intent-filter>
Ashwini Oruganti4d498132020-03-24 12:33:29 -070033 <action android:name="android.intent.action.MAIN"/>
davidlnd1f678d2018-06-15 12:46:38 -070034 <category android:name="android.intent.category.DEFAULT"/>
Ashwini Oruganti4d498132020-03-24 12:33:29 -070035 <category android:name="android.intent.category.APP_MAPS"/>
Anthony Chen90e57442016-10-20 11:50:11 -070036 </intent-filter>
37 </activity>
38 </application>
39</manifest>