Trevor Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?><!-- |
Trevor Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 2 | 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 Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 16 | <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 Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 21 | |
Trevor Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.USE_FINGERPRINT" /> |
Trevor Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 23 | |
| 24 | <application |
Trevor Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 25 | 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 Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 31 | |
Trevor Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 32 | <activity |
| 33 | android:name=".MainActivity" |
| 34 | android:label="@string/application_name"> |
Trevor Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 35 | <intent-filter> |
Trevor Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 36 | <action android:name="android.intent.action.MAIN" /> |
| 37 | <category android:name="android.intent.category.LAUNCHER" /> |
Trevor Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 38 | </intent-filter> |
| 39 | </activity> |
Trevor Johns | d95a687 | 2015-08-13 21:10:42 -0700 | [diff] [blame] | 40 | |
| 41 | <activity |
| 42 | android:name=".SettingsActivity" |
| 43 | android:label="@string/action_settings" /> |
Trevor Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 44 | </application> |
Trevor Johns | 296083e | 2015-05-27 13:18:28 -0700 | [diff] [blame] | 45 | </manifest> |