1<!--
2  Copyright 2013 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18    package="com.example.android.borderlessbuttons"
19    android:versionCode="1"
20    android:versionName="1.0">
21
22    <!--
23      This sample requires API 11 for use of theme attributes such as ?android:buttonBarStyle
24      and ?android:borderlessButtonStyle, as well as LinearLayout's android:showDividers attribute.
25      A similar effect can be achieved by setting a clickable view's background to
26      ?android:selectableItemBackground.
27
28      This sample requires API 14 for use of theme attributes such as
29      ?android:listPreferredItemPaddingLeft.
30    -->
31    <!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
32
33    <application android:label="@string/app_name"
34        android:icon="@drawable/ic_launcher"
35        android:theme="@style/Theme.Sample"
36        android:allowBackup="true">
37
38        <activity android:name=".MainActivity"
39            android:label="@string/app_name">
40            <intent-filter>
41                <action android:name="android.intent.action.MAIN" />
42                <category android:name="android.intent.category.LAUNCHER" />
43            </intent-filter>
44        </activity>
45
46    </application>
47
48</manifest>
49