2015-11-23 21:20:14 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
|
2017-06-28 08:29:18 +00:00
|
|
|
package="org.shadowice.flocke.andotp">
|
2015-11-23 21:20:14 +00:00
|
|
|
|
2017-06-30 16:16:16 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
2015-11-23 21:20:14 +00:00
|
|
|
<application
|
2015-11-23 21:57:32 +00:00
|
|
|
android:allowBackup="false"
|
2015-11-23 21:20:14 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2017-08-23 10:48:50 +00:00
|
|
|
android:theme="@style/AppTheme" >
|
2017-08-09 10:50:10 +00:00
|
|
|
|
2015-11-23 21:20:14 +00:00
|
|
|
<activity
|
2017-08-09 10:50:10 +00:00
|
|
|
android:name=".Activities.MainActivity"
|
2017-07-26 05:30:58 +00:00
|
|
|
android:label="@string/app_name"
|
2015-11-23 21:20:14 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-07-13 10:15:54 +00:00
|
|
|
<activity
|
2017-08-09 10:50:10 +00:00
|
|
|
android:name=".Activities.AboutActivity"
|
|
|
|
android:parentActivityName=".Activities.MainActivity"
|
2017-07-13 10:15:54 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2017-08-16 11:31:08 +00:00
|
|
|
<activity
|
|
|
|
android:name=".Activities.AuthenticateActivity"
|
|
|
|
android:parentActivityName=".Activities.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2017-07-12 15:51:15 +00:00
|
|
|
<activity
|
2017-08-09 10:50:10 +00:00
|
|
|
android:name=".Activities.BackupActivity"
|
|
|
|
android:parentActivityName=".Activities.MainActivity"
|
2017-07-12 15:51:15 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2017-07-06 10:06:41 +00:00
|
|
|
<activity
|
2017-08-09 10:50:10 +00:00
|
|
|
android:name=".Activities.SettingsActivity"
|
|
|
|
android:parentActivityName=".Activities.MainActivity"
|
2017-07-06 10:06:41 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2015-11-23 21:20:14 +00:00
|
|
|
<activity
|
2017-07-05 11:09:22 +00:00
|
|
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
2015-11-23 21:20:14 +00:00
|
|
|
android:screenOrientation="fullSensor"
|
2017-07-05 11:09:22 +00:00
|
|
|
tools:replace="screenOrientation" />
|
2017-08-12 12:09:36 +00:00
|
|
|
<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>
|
2015-11-23 21:20:14 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|