2017-05-05 16:36:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright 2017 Thomas Schneider
|
|
|
|
|
2017-07-10 10:33:24 +02:00
|
|
|
This file is a part of Mastalab
|
2017-05-05 16:36:04 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
2017-07-10 10:33:24 +02:00
|
|
|
Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-05-05 16:36:04 +02:00
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
Public License for more details.
|
|
|
|
|
2017-08-04 11:11:27 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with Mastalab; if not,
|
2017-05-05 16:36:04 +02:00
|
|
|
see <http://www.gnu.org/licenses>
|
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:installLocation="auto"
|
|
|
|
package="mastodon.etalab.gouv.fr.mastodon">
|
|
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:name="fr.gouv.etalab.mastodon.activities.MainApplication"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
|
|
android:supportsRtl="true"
|
2017-07-10 10:33:24 +02:00
|
|
|
android:theme="@style/AppThemeDark">
|
2017-05-05 16:36:04 +02:00
|
|
|
<activity
|
|
|
|
android:name="fr.gouv.etalab.mastodon.activities.MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop"
|
2017-07-24 14:25:32 +02:00
|
|
|
android:windowSoftInputMode = "adjustResize"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
2017-07-10 10:33:24 +02:00
|
|
|
android:theme="@style/AppThemeDark_NoActionBar">
|
2017-06-06 18:50:01 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
2017-05-05 16:36:04 +02:00
|
|
|
</activity>
|
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.LoginActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.ShowAccountActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
2017-05-27 08:32:14 +02:00
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.HashTagActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
2017-06-24 11:38:18 +02:00
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.WebviewConnectActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
/>
|
2017-05-26 17:20:36 +02:00
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.WebviewActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:launchMode="singleTask"
|
2017-06-24 11:38:18 +02:00
|
|
|
android:noHistory="true"
|
2017-06-26 18:49:39 +02:00
|
|
|
/>
|
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.MediaActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:noHistory="true"
|
2017-05-26 17:20:36 +02:00
|
|
|
/>
|
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.SearchResultActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
2017-05-05 16:36:04 +02:00
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.ShowConversationActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.AboutActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2017-06-05 11:57:02 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.InstanceActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
2017-06-03 15:54:19 +02:00
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.PrivacyActivity"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
/>
|
2017-05-05 16:36:04 +02:00
|
|
|
<activity android:name="fr.gouv.etalab.mastodon.activities.TootActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2017-07-21 21:09:32 +02:00
|
|
|
android:theme="@style/AppTheme_NoActionBar"
|
2017-05-05 16:36:04 +02:00
|
|
|
/>
|
|
|
|
<activity
|
|
|
|
android:name="fr.gouv.etalab.mastodon.activities.SplashActivity"
|
2017-06-30 17:09:07 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:theme="@style/SplashTheme">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|