AndroidManifest.xml revision 32dae0e31f6b21383fe2a64aed0a3bf823690109
0N/A<?xml version="1.0" encoding="utf-8"?>
553N/A<!--
0N/A - FreeOTP
0N/A -
0N/A - Authors: Nathaniel McCallum <npmccallum@redhat.com>
0N/A -
0N/A - Copyright (C) 2013 Nathaniel McCallum, Red Hat
0N/A -
0N/A - Licensed under the Apache License, Version 2.0 (the "License");
0N/A - you may not use this file except in compliance with the License.
0N/A - You may obtain a copy of the License at
0N/A -
0N/A - http://www.apache.org/licenses/LICENSE-2.0
0N/A -
0N/A - Unless required by applicable law or agreed to in writing, software
0N/A - distributed under the License is distributed on an "AS IS" BASIS,
0N/A - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0N/A - See the License for the specific language governing permissions and
553N/A - limitations under the License.
553N/A -->
553N/A
0N/A<manifest xmlns:android="http://schemas.android.com/apk/res/android"
0N/A package="org.fedorahosted.freeotp"
0N/A android:versionCode="13"
0N/A android:versionName="1.4" >
0N/A
0N/A <uses-sdk
0N/A android:minSdkVersion="14"
0N/A android:targetSdkVersion="19" />
0N/A
0N/A <supports-screens
0N/A android:smallScreens="true"
0N/A android:normalScreens="true"
0N/A android:largeScreens="true"
0N/A android:xlargeScreens="true"
0N/A android:resizeable="true"
0N/A android:anyDensity="true" />
0N/A
0N/A <uses-permission android:name="android.permission.CAMERA" />
0N/A <uses-feature android:name="android.hardware.camera" android:required="false" />
0N/A <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
0N/A
0N/A <application
0N/A android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".AboutActivity"
android:theme="@android:style/Theme.Holo.Light.Dialog.NoActionBar"
/>
<activity
android:name=".dialogs.CameraDialogActivity"
android:label="@string/scan_qr_code"
android:theme="@android:style/Theme.Holo.Light.Dialog"
/>
<activity
android:name=".dialogs.DeleteDialogActivity"
android:label="@string/delete"
android:theme="@android:style/Theme.Holo.Light.Dialog"
/>
<activity
android:name=".dialogs.ManualDialogActivity"
android:label="@string/add_token"
android:theme="@android:style/Theme.Holo.Light.Dialog"
android:windowSoftInputMode="stateVisible"
/>
<activity
android:name=".dialogs.RenameDialogActivity"
android:label="@string/rename"
android:theme="@android:style/Theme.Holo.Light.Dialog"
android:windowSoftInputMode="stateVisible"
/>
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>