AndroidManifest.xml revision 8367f835047e57c70a508975d020905f0173f51a
0N/A<?xml version="1.0" encoding="utf-8"?>
2273N/A<!--
0N/A The contents of this file are subject to the terms of the Common Development and
0N/A Distribution License (the License). You may not use this file except in compliance with the
0N/A License.
0N/A
0N/A You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
0N/A specific language governing permission and limitations under the License.
0N/A
0N/A When distributing Covered Software, include this CDDL Header Notice in each file and include
0N/A the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
0N/A Header, with the fields enclosed by brackets [] replaced by your own identifying
0N/A information: "Portions copyright [year] [name of copyright owner]".
0N/A
0N/A Copyright 2015-2016 ForgeRock AS.
0N/A
0N/A Portions Copyright 2013 Nathaniel McCallum, Red Hat
0N/A-->
1472N/A<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1472N/A package="com.forgerock.authenticator"
1472N/A android:versionCode="1"
0N/A android:versionName="1.0">
0N/A
0N/A <uses-sdk
1879N/A android:minSdkVersion="14"
1879N/A android:targetSdkVersion="20" />
1879N/A
1879N/A <supports-screens
1879N/A android:anyDensity="true"
1879N/A android:largeScreens="true"
1879N/A android:normalScreens="true"
1879N/A android:resizeable="true"
1879N/A android:smallScreens="true"
1879N/A android:xlargeScreens="true" />
1879N/A
1879N/A <uses-permission android:name="android.permission.CAMERA" />
1879N/A <uses-permission android:name="android.permission.INTERNET" />
1879N/A <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
1879N/A
1879N/A <uses-feature
1879N/A android:name="android.hardware.camera"
1879N/A android:required="false" />
1879N/A <uses-feature
1879N/A android:name="android.hardware.camera.autofocus"
1879N/A android:required="false" />
1879N/A
1879N/A <android:uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
1879N/A <android:uses-permission android:name="android.permission.READ_PHONE_STATE" />
1879N/A
1879N/A <application
1879N/A android:allowBackup="true"
1879N/A android:icon="@drawable/forgerock_logo"
1879N/A android:label="@string/app_name"
1879N/A android:theme="@style/AppTheme"
1879N/A android:name=".FRAuthApplication">
1879N/A <meta-data android:name="roboguice.modules" android:value="com.forgerock.authenticator.AuthGuiceModule"/>
1879N/A <activity
1879N/A android:name=".AboutActivity"
0N/A android:theme="@android:style/Theme.Holo.Light.Dialog.NoActionBar" />
0N/A <activity
3863N/A android:name=".add.ScanActivity"
0N/A android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" />
3863N/A <activity
0N/A android:name=".delete.DeleteMechanismActivity"
0N/A android:label="@string/delete_question"
0N/A android:theme="@android:style/Theme.Holo.Light.Dialog" />
0N/A <activity
0N/A android:name=".delete.DeleteIdentityActivity"
0N/A android:label="@string/delete_question"
0N/A android:theme="@android:style/Theme.Holo.Light.Dialog" />
0N/A <activity
0N/A android:name=".IdentityActivity"
0N/A android:configChanges="orientation|screenSize"
0N/A android:label="@string/app_name">
0N/A <intent-filter>
0N/A <action android:name="android.intent.action.MAIN" />
0N/A
0N/A <category android:name="android.intent.category.LAUNCHER" />
0N/A </intent-filter>
0N/A </activity>
0N/A <activity
0N/A android:name=".mechanisms.push.PushAuthActivity"
0N/A android:configChanges="orientation|screenSize"
0N/A android:label="@string/app_name">
0N/A </activity>
0N/A <activity
0N/A android:name=".MechanismActivity"
0N/A android:configChanges="orientation|screenSize"
0N/A android:label="Account">
0N/A </activity>
0N/A <activity
0N/A android:name=".NotificationActivity"
0N/A android:configChanges="orientation|screenSize"
342N/A android:label="Notifications" />
1089N/A
1089N/A <activity
342N/A android:name=".SettingsActivity"
0N/A android:configChanges="orientation|screenSize"
0N/A android:label="Settings" />
342N/A <activity
0N/A android:name=".MainActivity"
0N/A android:clearTaskOnLaunch="true"
0N/A android:configChanges="orientation|screenSize"
0N/A android:label="My Accounts"
0N/A android:launchMode="singleTask">
0N/A <intent-filter>
0N/A <action android:name="com.google.android.c2dm.intent.RECEIVE" />
0N/A </intent-filter>
0N/A
0N/A <intent-filter>
0N/A <action android:name="android.intent.action.VIEW" />
0N/A
0N/A <category android:name="android.intent.category.DEFAULT" />
0N/A <category android:name="android.intent.category.BROWSABLE" />
0N/A
0N/A <data
0N/A android:host="totp"
0N/A android:scheme="otpauth" />
0N/A <data
0N/A android:host="hotp"
0N/A android:scheme="otpauth" />
0N/A </intent-filter>
0N/A </activity>
0N/A >
0N/A <receiver
0N/A android:name="com.google.android.gms.gcm.GcmReceiver"
0N/A android:exported="true"
0N/A android:permission="com.google.android.c2dm.permission.SEND">
0N/A <intent-filter>
0N/A <action android:name="com.google.android.c2dm.intent.RECEIVE" />
0N/A
0N/A <category android:name="org.forgerock.authenticator" />
0N/A </intent-filter>
0N/A </receiver>
0N/A
0N/A <service
0N/A android:name=".message.GcmService"
0N/A android:exported="false">
0N/A <intent-filter>
0N/A <action android:name="com.google.android.c2dm.intent.RECEIVE" />
0N/A </intent-filter>
0N/A </service>
0N/A <service
0N/A android:name=".message.InstanceIdListener"
0N/A android:exported="false">
0N/A <intent-filter>
0N/A <action android:name="com.google.android.gms.iid.InstanceID" />
0N/A </intent-filter>
0N/A </service>
0N/A <service
0N/A android:name=".message.GcmRegistrationService"
0N/A android:exported="false" />
0N/A
0N/A <activity
0N/A android:name=".message.NewMessageActivity"
0N/A android:label="@string/title_activity_new_message">
0N/A <meta-data
0N/A android:name="android.support.PARENT_ACTIVITY"
0N/A android:value=".MainActivity" />
0N/A </activity>
0N/A </application>
0N/A
0N/A</manifest>
0N/A