83 lines
3.8 KiB
XML
83 lines
3.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
Copyright 2017 Thomas Schneider
|
||
|
|
||
|
This file is a part of Mastodon Etalab for mastodon.etalab.gouv.fr
|
||
|
|
||
|
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.
|
||
|
|
||
|
Mastodon Etalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||
|
Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License along with Thomas Schneider; if not,
|
||
|
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"
|
||
|
android:theme="@style/AppTheme">
|
||
|
<activity
|
||
|
android:name="fr.gouv.etalab.mastodon.activities.MainActivity"
|
||
|
android:label="@string/app_name"
|
||
|
android:launchMode="singleTop"
|
||
|
android:windowSoftInputMode="stateAlwaysHidden"
|
||
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
||
|
android:theme="@style/AppTheme.NoActionBar">
|
||
|
</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:noHistory="true"
|
||
|
android:label="@string/app_name"
|
||
|
/>
|
||
|
<activity android:name="fr.gouv.etalab.mastodon.activities.ShowConversationActivity"
|
||
|
android:windowSoftInputMode="stateAlwaysHidden"
|
||
|
android:configChanges="orientation|screenSize"
|
||
|
android:noHistory="true"
|
||
|
android:label="@string/app_name"
|
||
|
/>
|
||
|
<activity android:name="fr.gouv.etalab.mastodon.activities.AboutActivity"
|
||
|
android:windowSoftInputMode="stateAlwaysHidden"
|
||
|
android:configChanges="orientation|screenSize"
|
||
|
android:label="@string/app_name"
|
||
|
/>
|
||
|
<activity android:name="fr.gouv.etalab.mastodon.activities.TootActivity"
|
||
|
android:windowSoftInputMode="adjustResize"
|
||
|
android:fitsSystemWindows="true"
|
||
|
android:configChanges="orientation|screenSize"
|
||
|
android:label="@string/app_name"
|
||
|
/>
|
||
|
<activity
|
||
|
android:name="fr.gouv.etalab.mastodon.activities.SplashActivity"
|
||
|
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>
|