blob: 2e81965c65078b9bc2d8721408fcf7945762aa0c [file] [log] [blame]
Hyunyoung Song851d2892017-01-09 23:14:22 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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
17<!-- Declare the contents of this Android application. The namespace
18 attribute brings in the Android platform namespace, and the package
19 supplies a unique name for the application. When writing your
20 own application, the package name must be changed from "com.example.*"
21 to come from a domain that you own or have control over. -->
22<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Hyunyoung Songecc5f8c2017-02-17 11:41:07 -080023 package="com.example.android.adaptiveicon">
Hyunyoung Songb12e9802017-02-16 14:50:25 -080024 <uses-sdk android:targetSdkVersion="25" android:minSdkVersion="21"/>
Hyunyoung Songecc5f8c2017-02-17 11:41:07 -080025 <application android:label="AdaptiveIconSample">
Hyunyoung Song851d2892017-01-09 23:14:22 -080026 <activity
27 android:name="Activity1"
Hyunyoung Songdb940082017-03-08 13:12:51 -080028 android:icon="@mipmap/ic_launcher1"
Hyunyoung Songb12e9802017-02-16 14:50:25 -080029 android:label="Icon 1">
Hyunyoung Song851d2892017-01-09 23:14:22 -080030 <intent-filter>
31 <action android:name="android.intent.action.MAIN"/>
32 <category android:name="android.intent.category.LAUNCHER"/>
33 </intent-filter>
34 </activity>
35 <activity
36 android:name="Activity2"
Hyunyoung Songdb940082017-03-08 13:12:51 -080037 android:icon="@mipmap/ic_launcher2"
Hyunyoung Songb12e9802017-02-16 14:50:25 -080038 android:label="Icon 2">
Hyunyoung Song851d2892017-01-09 23:14:22 -080039 <intent-filter>
40 <action android:name="android.intent.action.MAIN"/>
41 <category android:name="android.intent.category.LAUNCHER"/>
42 </intent-filter>
43 </activity>
Hyunyoung Song851d2892017-01-09 23:14:22 -080044 </application>
45</manifest>