blob: 4dce26600c49df2f69f2c34f5f6318e5b5f4cdd7 [file] [log] [blame]
Trevor Johns352925b2015-10-02 16:41:45 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright 2015 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-->
Trevor Johns8a66f8c2017-02-09 00:45:30 -080017<manifest package="com.example.android.asymmetricfingerprintdialog"
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:tools="http://schemas.android.com/tools"
20 android:versionCode="1"
21 android:versionName="1.0">
Trevor Johns352925b2015-10-02 16:41:45 -070022
Trevor Johns8a66f8c2017-02-09 00:45:30 -080023 <uses-permission android:name="android.permission.USE_FINGERPRINT" />
Trevor Johns352925b2015-10-02 16:41:45 -070024
25 <application
Trevor Johns8a66f8c2017-02-09 00:45:30 -080026 android:name=".InjectedApplication"
27 android:allowBackup="true"
28 android:icon="@mipmap/ic_launcher"
29 android:label="@string/app_name"
30 android:supportsRtl="true"
31 android:theme="@style/AppTheme"
32 tools:ignore="GoogleAppIndexingWarning">
Trevor Johns352925b2015-10-02 16:41:45 -070033
Trevor Johns8a66f8c2017-02-09 00:45:30 -080034 <activity
35 android:name=".MainActivity"
36 android:label="@string/app_name">
Trevor Johns352925b2015-10-02 16:41:45 -070037 <intent-filter>
Trevor Johns8a66f8c2017-02-09 00:45:30 -080038 <action android:name="android.intent.action.MAIN" />
39 <category android:name="android.intent.category.LAUNCHER" />
Trevor Johns352925b2015-10-02 16:41:45 -070040 </intent-filter>
41 </activity>
42
43 <activity
44 android:name=".SettingsActivity"
45 android:label="@string/action_settings" />
46 </application>
47</manifest>