AndroidManifest.xml revision 9e257788c96e27128e1ac9f7de72256f0da6b0fd
10139N/A<?xml version="1.0" encoding="utf-8"?><!--
10139N/A - FreeOTP
10139N/A -
18787N/A - Authors: Nathaniel McCallum <npmccallum@redhat.com>
10139N/A -
10139N/A - Copyright (C) 2013 Nathaniel McCallum, Red Hat
10139N/A -
17185N/A - Licensed under the Apache License, Version 2.0 (the "License");
10139N/A - you may not use this file except in compliance with the License.
17180N/A - You may obtain a copy of the License at
18603N/A -
17180N/A - http://www.apache.org/licenses/LICENSE-2.0
10139N/A -
18787N/A - Unless required by applicable law or agreed to in writing, software
10139N/A - distributed under the License is distributed on an "AS IS" BASIS,
10139N/A - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18787N/A - See the License for the specific language governing permissions and
10139N/A - limitations under the License.
10139N/A--><!-- Portions Copyrighted 2015-2016 ForgeRock AS. -->
18615N/A<manifest xmlns:android="http://schemas.android.com/apk/res/android"
10139N/A package="com.forgerock.authenticator"
18543N/A android:versionCode="1"
10287N/A android:versionName="1.0">
12773N/A
12773N/A <uses-sdk
12773N/A android:minSdkVersion="14"
10139N/A android:targetSdkVersion="20" />
10139N/A
10139N/A <supports-screens
10139N/A android:anyDensity="true"
10139N/A android:largeScreens="true"
10139N/A android:normalScreens="true"
10139N/A android:resizeable="true"
10139N/A android:smallScreens="true"
10139N/A android:xlargeScreens="true" />
10139N/A
10139N/A <uses-permission android:name="android.permission.CAMERA" />
10139N/A <uses-permission android:name="android.permission.INTERNET" />
10139N/A <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
10139N/A
10139N/A <uses-feature
10139N/A android:name="android.hardware.camera"
10139N/A android:required="false" />
10139N/A <uses-feature
10139N/A android:name="android.hardware.camera.autofocus"
10139N/A android:required="false" />
10139N/A
10139N/A <android:uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
10139N/A <android:uses-permission android:name="android.permission.READ_PHONE_STATE" />
10139N/A
10139N/A <application
10139N/A android:allowBackup="true"
10139N/A android:icon="@drawable/forgerock_logo"
10139N/A android:label="@string/app_name"
10139N/A android:theme="@style/AppTheme">
10139N/A <activity
10139N/A android:name=".AboutActivity"
10139N/A android:theme="@android:style/Theme.Holo.Light.Dialog.NoActionBar" />
10139N/A <activity
10139N/A android:name=".add.ScanActivity"
10139N/A android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" />
10139N/A <activity
10139N/A android:name=".add.AddActivity"
10139N/A android:label="@string/add_token"
10139N/A android:theme="@android:style/Theme.Holo.Light.Dialog.NoActionBar"
12773N/A android:windowSoftInputMode="stateVisible" />
12773N/A <activity
12773N/A android:name=".edit.DeleteActivity"
12773N/A android:label="@string/delete_question"
12773N/A android:theme="@android:style/Theme.Holo.Light.Dialog" />
10139N/A <activity
10139N/A android:name=".edit.EditActivity"
10139N/A android:theme="@android:style/Theme.Holo.Light.Dialog.NoActionBar"
10139N/A android:windowSoftInputMode="stateVisible" />
10139N/A <activity
10139N/A android:name=".MainActivity"
10139N/A android:clearTaskOnLaunch="true"
10139N/A android:configChanges="orientation|screenSize"
10139N/A android:label="@string/app_name"
10139N/A android:launchMode="singleTask">
10139N/A <intent-filter>
10139N/A <action android:name="com.google.android.c2dm.intent.RECEIVE" />
10139N/A </intent-filter>
10139N/A <intent-filter>
10139N/A <action android:name="android.intent.action.MAIN" />
10139N/A
10139N/A <category android:name="android.intent.category.LAUNCHER" />
10139N/A </intent-filter>
10139N/A <intent-filter>
10139N/A <action android:name="android.intent.action.VIEW" />
10139N/A
10139N/A <category android:name="android.intent.category.DEFAULT" />
10139N/A <category android:name="android.intent.category.BROWSABLE" />
10139N/A
10139N/A <data
10139N/A android:host="totp"
10139N/A android:scheme="otpauth" />
10139N/A <data
10139N/A android:host="hotp"
10139N/A android:scheme="otpauth" />
10139N/A </intent-filter>
10139N/A </activity>
18787N/A >
18787N/A <receiver
18543N/A android:name="com.google.android.gms.gcm.GcmReceiver"
18543N/A android:exported="true"
18424N/A android:permission="com.google.android.c2dm.permission.SEND">
18424N/A <intent-filter>
18362N/A <action android:name="com.google.android.c2dm.intent.RECEIVE" />
18362N/A
18198N/A <category android:name="org.forgerock.authenticator" />
18198N/A </intent-filter>
17570N/A </receiver>
17570N/A
17570N/A <service
17394N/A android:name=".message.GCMServcie"
17394N/A android:exported="false">
17254N/A <intent-filter>
17254N/A <action android:name="com.google.android.c2dm.intent.RECEIVE" />
17101N/A </intent-filter>
17101N/A </service>
16990N/A <service
16990N/A android:name=".message.InstanceIdListener"
16783N/A android:exported="false">
16783N/A <intent-filter>
16657N/A <action android:name="com.google.android.gms.iid.InstanceID" />
16671N/A </intent-filter>
16671N/A </service>
16657N/A <service
16630N/A android:name=".message.GCMRegistrationService"
16630N/A android:exported="false" />
16372N/A
16630N/A <activity
16183N/A android:name=".message.NewMessageActivity"
16630N/A android:label="@string/title_activity_new_message">
16137N/A <meta-data
16630N/A android:name="android.support.PARENT_ACTIVITY"
15870N/A android:value=".MainActivity" />
15870N/A </activity>
15870N/A </application>
15448N/A
16630N/A</manifest>
14525N/A