fedilab-Android-App/app/src/main/AndroidManifest.xml

176 lines
7.9 KiB
XML
Raw Normal View History

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"
2017-11-12 07:57:48 +01:00
package="fr.gouv.etalab.mastodon">
2017-05-05 16:36:04 +02:00
<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" />
2017-11-12 07:57:48 +01:00
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
2017-05-05 16:36:04 +02:00
<application
2017-11-12 07:57:48 +01:00
android:name=".activities.MainApplication"
2017-05-05 16:36:04 +02:00
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
2017-07-10 10:33:24 +02:00
android:theme="@style/AppThemeDark">
2017-08-28 19:04:13 +02:00
<service
2017-11-12 07:57:48 +01:00
android:name=".services.StreamingService"
2017-08-28 19:04:13 +02:00
android:exported="false"/>
<service
android:name=".services.LiveNotificationService"
android:exported="false"/>
2017-11-12 07:57:48 +01:00
<receiver android:name=".services.RestartServiceReceiver"
2017-09-22 19:49:25 +02:00
android:exported="false">
<intent-filter>
<action android:name="RestartStreamingService" />
</intent-filter>
</receiver>
<receiver android:name=".services.RestartLiveNotificationReceiver"
android:exported="false">
2017-11-12 07:57:48 +01:00
<intent-filter>
<action android:name="RestartStreamingService" />
2017-11-12 07:57:48 +01:00
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
2017-11-12 07:57:48 +01:00
android:name=".services.StreamingFederatedTimelineService"
android:exported="false"/>
2017-11-12 07:57:48 +01:00
<receiver android:name=".services.RestartFederatedServiceReceiver"
android:exported="false">
<intent-filter>
<action android:name="RestartStreamingFederatedService" />
</intent-filter>
</receiver>
2017-09-30 08:48:44 +02:00
<service
2017-11-12 07:57:48 +01:00
android:name=".services.StreamingLocalTimelineService"
2017-09-30 08:48:44 +02:00
android:exported="false"/>
2017-11-12 07:57:48 +01:00
<receiver android:name=".services.RestartLocalServiceReceiver"
2017-09-30 08:48:44 +02:00
android:exported="false">
<intent-filter>
<action android:name="RestartStreamingLocalService" />
</intent-filter>
</receiver>
2017-05-05 16:36:04 +02:00
<activity
2017-11-12 07:57:48 +01:00
android:name=".activities.MainActivity"
2017-05-05 16:36:04 +02:00
android:label="@string/app_name"
2017-09-11 19:04:40 +02:00
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">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
2017-05-05 16:36:04 +02:00
</activity>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.LoginActivity"
2017-05-05 16:36:04 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.ShowAccountActivity"
2017-05-05 16:36:04 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.HashTagActivity"
2017-05-27 08:32:14 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.WebviewConnectActivity"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation|screenSize"
android:launchMode="singleTask"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.WebviewActivity"
2017-05-26 17:20:36 +02:00
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation|screenSize"
android:launchMode="singleTask"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".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
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.RemoteFollowActivity"
2017-08-22 17:34:26 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.SearchResultActivity"
2017-05-26 17:20:36 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.ShowConversationActivity"
2017-05-05 16:36:04 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.AboutActivity"
2017-05-05 16:36:04 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.InstanceActivity"
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
2017-05-05 16:36:04 +02:00
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.PrivacyActivity"
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.TootActivity"
2017-05-05 16:36:04 +02:00
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
/>
2017-11-12 07:57:48 +01:00
<activity android:name=".activities.EditProfileActivity"
2017-08-28 09:20:19 +02:00
android:windowSoftInputMode="stateAlwaysHidden"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
/>
2017-05-05 16:36:04 +02:00
</application>
</manifest>