2018-06-10 16:23:33 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-08-22 16:58:50 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-27 16:06:07 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="lu.circl.mispbump">
|
2018-06-10 16:23:33 +02:00
|
|
|
|
2019-05-27 16:06:07 +02:00
|
|
|
<application
|
|
|
|
android:allowBackup="false"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
2019-08-22 16:58:50 +02:00
|
|
|
<activity android:name=".activities.UploadActivity" />
|
|
|
|
<activity android:name=".activities.LauncherActivity">
|
2019-05-27 16:06:07 +02:00
|
|
|
<intent-filter>
|
2019-08-22 16:58:50 +02:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2018-08-10 15:15:09 +02:00
|
|
|
|
2019-08-22 16:58:50 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2019-05-27 16:06:07 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2019-05-29 14:52:00 +02:00
|
|
|
android:name=".activities.LoginActivity"
|
2019-08-22 16:58:50 +02:00
|
|
|
android:label="@string/login" />
|
2019-07-02 13:34:36 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.HomeActivity"
|
2019-08-22 16:58:50 +02:00
|
|
|
android:label="@string/app_name" />
|
2019-05-27 16:06:07 +02:00
|
|
|
<activity
|
2019-07-03 14:50:43 +02:00
|
|
|
android:name=".activities.ExchangeActivity"
|
2019-06-17 09:49:09 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-07-02 13:34:36 +02:00
|
|
|
android:parentActivityName=".activities.HomeActivity"
|
|
|
|
android:screenOrientation="portrait"
|
2019-08-22 16:58:50 +02:00
|
|
|
android:theme="@style/AppTheme.Translucent" />
|
2019-07-02 13:34:36 +02:00
|
|
|
<activity
|
2019-08-22 16:58:50 +02:00
|
|
|
android:name=".activities.SyncInfoDetailActivity"
|
2019-07-02 13:34:36 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-08-22 16:58:50 +02:00
|
|
|
android:label="@string/sync_details_activity_label"
|
|
|
|
android:parentActivityName=".activities.HomeActivity" />
|
2019-07-02 13:34:36 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.PreferenceActivity"
|
2019-07-23 23:04:07 +02:00
|
|
|
android:label="@string/settings"
|
2019-08-22 16:58:50 +02:00
|
|
|
android:parentActivityName=".activities.HomeActivity" />
|
2019-06-11 14:52:41 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ProfileActivity"
|
|
|
|
android:label="Profile"
|
2019-06-17 09:49:09 +02:00
|
|
|
android:parentActivityName=".activities.HomeActivity"
|
2019-08-22 16:58:50 +02:00
|
|
|
android:theme="@style/AppTheme.Translucent" />
|
2019-05-27 16:06:07 +02:00
|
|
|
</application>
|
2019-08-22 16:58:50 +02:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2018-06-10 16:23:33 +02:00
|
|
|
|
2019-07-24 12:06:52 +02:00
|
|
|
</manifest>
|