blob: 337f6419984ee6b38eba7dd81a98b2787e27956d [file] [log] [blame]
Trevor Johns8a66f8c2017-02-09 00:45:30 -08001<?xml version="1.0" encoding="UTF-8"?><!--
Trevor Johns296083e2015-05-27 13:18:28 -07002 Copyright 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-->
Trevor Johns8a66f8c2017-02-09 00:45:30 -080016<manifest package="com.example.android.fingerprintdialog"
17 xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:tools="http://schemas.android.com/tools"
19 android:versionCode="1"
20 android:versionName="1.0">
Trevor Johns296083e2015-05-27 13:18:28 -070021
Trevor Johns8a66f8c2017-02-09 00:45:30 -080022 <uses-permission android:name="android.permission.USE_FINGERPRINT" />
Trevor Johns296083e2015-05-27 13:18:28 -070023
24 <application
Trevor Johns8a66f8c2017-02-09 00:45:30 -080025 android:allowBackup="true"
26 android:icon="@mipmap/ic_launcher"
27 android:label="@string/application_name"
28 android:supportsRtl="true"
29 android:theme="@style/Theme.AppCompat.Light"
30 tools:ignore="GoogleAppIndexingWarning">
Trevor Johns296083e2015-05-27 13:18:28 -070031
Trevor Johns8a66f8c2017-02-09 00:45:30 -080032 <activity
33 android:name=".MainActivity"
34 android:label="@string/application_name">
Trevor Johns296083e2015-05-27 13:18:28 -070035 <intent-filter>
Trevor Johns8a66f8c2017-02-09 00:45:30 -080036 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.LAUNCHER" />
Trevor Johns296083e2015-05-27 13:18:28 -070038 </intent-filter>
39 </activity>
Trevor Johnsd95a6872015-08-13 21:10:42 -070040
41 <activity
42 android:name=".SettingsActivity"
43 android:label="@string/action_settings" />
Trevor Johns296083e2015-05-27 13:18:28 -070044 </application>
Trevor Johns296083e2015-05-27 13:18:28 -070045</manifest>