d753914827
Fixes #152
75 lines
3.3 KiB
XML
75 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
|
|
package="org.shadowice.flocke.andotp">
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:backupAgent=".Utilities.BackupAgent"
|
|
android:fullBackupOnly="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<activity
|
|
android:name=".Activities.MainActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
android:configChanges="orientation|screenSize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".Activities.AboutActivity"
|
|
android:parentActivityName=".Activities.MainActivity"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity
|
|
android:name=".Activities.AuthenticateActivity"
|
|
android:parentActivityName=".Activities.MainActivity"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity
|
|
android:name=".Activities.BackupActivity"
|
|
android:parentActivityName=".Activities.MainActivity"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity
|
|
android:name=".Activities.IntroScreenActivity"
|
|
android:screenOrientation="portrait"
|
|
android:parentActivityName=".Activities.MainActivity"
|
|
android:theme="@style/Theme.Intro.Solid" />
|
|
<activity
|
|
android:name=".Activities.SettingsActivity"
|
|
android:parentActivityName=".Activities.MainActivity"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity
|
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
android:screenOrientation="fullSensor"
|
|
tools:replace="screenOrientation" />
|
|
<activity
|
|
android:name=".Activities.PanicResponderActivity"
|
|
android:launchMode="singleInstance"
|
|
android:noHistory="true"
|
|
android:theme="@android:style/Theme.NoDisplay">
|
|
<intent-filter>
|
|
<action android:name="info.guardianproject.panic.action.TRIGGER" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<receiver android:name=".Receivers.PlainTextBackupBroadcastReceiver">
|
|
<intent-filter>
|
|
<action android:name="org.shadowice.flocke.andotp.broadcast.PLAIN_TEXT_BACKUP" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name=".Receivers.EncryptedBackupBroadcastReceiver">
|
|
<intent-filter>
|
|
<action android:name="org.shadowice.flocke.andotp.broadcast.ENCRYPTED_BACKUP" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|