2019-09-06 17:55:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2017-05-05 16:36:04 +02:00
|
|
|
Copyright 2017 Thomas Schneider
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
This file is a part of Fedilab
|
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.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
Fedilab 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.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with Fedilab; 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"
|
2018-09-05 10:19:07 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:installLocation="auto"
|
2019-05-18 11:10:30 +02:00
|
|
|
package="app.fedilab.android">
|
2017-05-05 16:36:04 +02:00
|
|
|
|
|
|
|
|
2019-09-06 17:55:14 +02:00
|
|
|
<uses-feature
|
|
|
|
android:glEsVersion="0x00020000"
|
|
|
|
android:required="true" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
2019-07-21 10:55:26 +02:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.ACCESS_COARSE_LOCATION"
|
|
|
|
tools:node="remove" />
|
2017-05-05 16:36:04 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2019-09-06 17:55:14 +02:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2017-05-05 16:36:04 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2019-09-06 17:55:14 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2017-05-05 16:36:04 +02:00
|
|
|
<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" />
|
2019-01-09 15:27:02 +01:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
android:required="false" />
|
2017-05-05 16:36:04 +02:00
|
|
|
<application
|
2019-05-18 11:10:30 +02:00
|
|
|
android:name="app.fedilab.android.activities.MainApplication"
|
2018-02-17 16:25:16 +01:00
|
|
|
android:allowBackup="false"
|
2018-09-05 10:19:07 +02:00
|
|
|
tools:replace="android:allowBackup"
|
2019-01-28 19:18:53 +01:00
|
|
|
android:usesCleartextTraffic="true"
|
2019-09-25 13:55:03 +02:00
|
|
|
android:icon="@mipmap/ic_launcher_bubbles"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:label="@string/app_name"
|
2018-09-16 15:05:33 +02:00
|
|
|
android:largeHeap="true"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:hardwareAccelerated="true"
|
2019-09-25 13:55:03 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_bubbles_round"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:supportsRtl="true"
|
2017-07-10 10:33:24 +02:00
|
|
|
android:theme="@style/AppThemeDark">
|
2017-12-13 15:27:26 +01:00
|
|
|
|
2017-11-12 08:33:24 +01:00
|
|
|
<service
|
2019-09-11 14:17:01 +02:00
|
|
|
android:name="app.fedilab.android.services.LiveNotificationDelayedService"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:exported="false" />
|
2019-09-11 16:02:56 +02:00
|
|
|
<service
|
|
|
|
android:name="app.fedilab.android.services.LiveNotificationService"
|
|
|
|
android:exported="false" />
|
2019-09-06 17:55:14 +02:00
|
|
|
<service
|
|
|
|
android:name="app.fedilab.android.services.BackupStatusService"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name="app.fedilab.android.services.BackupStatusInDataBaseService"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name="app.fedilab.android.services.BackupNotificationInDataBaseService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name="app.fedilab.android.services.RestartLiveNotificationReceiver"
|
2017-11-12 08:33:24 +01:00
|
|
|
android:exported="false">
|
2017-11-12 07:57:48 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2019-09-06 17:55:14 +02:00
|
|
|
<receiver
|
|
|
|
android:name="app.fedilab.android.services.PeertubeUploadReceiver"
|
2019-06-07 15:18:09 +02:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="app.fedilab.android.uploadservice.broadcast.status" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2019-09-06 17:55:14 +02:00
|
|
|
<receiver
|
|
|
|
android:name="app.fedilab.android.services.StopLiveNotificationReceiver"
|
2017-09-26 19:19:53 +02:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
2018-01-03 15:25:35 +01:00
|
|
|
<action android:name="StopLiveNotificationReceiver" />
|
2017-09-26 19:19:53 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2018-12-19 10:34:04 +01:00
|
|
|
<service
|
2019-05-18 11:10:30 +02:00
|
|
|
android:name="app.fedilab.android.services.StreamingHomeTimelineService"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:exported="false" />
|
2018-01-03 15:25:35 +01:00
|
|
|
<service
|
2019-05-18 11:10:30 +02:00
|
|
|
android:name="app.fedilab.android.services.StreamingFederatedTimelineService"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:exported="false" />
|
2017-09-30 08:48:44 +02:00
|
|
|
<service
|
2019-05-18 11:10:30 +02:00
|
|
|
android:name="app.fedilab.android.services.StreamingLocalTimelineService"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:exported="false" />
|
2018-01-03 15:25:35 +01:00
|
|
|
|
2017-05-05 16:36:04 +02:00
|
|
|
<activity
|
2019-05-18 11:10:30 +02:00
|
|
|
android:name="app.fedilab.android.activities.MainActivity"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:label="@string/app_name"
|
2017-12-13 15:27:26 +01:00
|
|
|
android:launchMode="singleTop"
|
2019-09-06 17:55:14 +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-10-30 10:00:14 +01:00
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
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-08-21 17:55:54 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2017-08-21 17:55:54 +02:00
|
|
|
<data android:mimeType="image/*" />
|
2018-09-28 18:05:18 +02:00
|
|
|
<data android:mimeType="video/*" />
|
2017-08-21 17:55:54 +02:00
|
|
|
</intent-filter>
|
2017-08-22 00:10:05 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2017-08-22 00:10:05 +02:00
|
|
|
<data android:mimeType="image/*" />
|
2018-09-28 18:05:18 +02:00
|
|
|
<data android:mimeType="video/*" />
|
2017-08-22 00:10:05 +02:00
|
|
|
</intent-filter>
|
2017-12-20 08:59:44 +01:00
|
|
|
<intent-filter>
|
2019-09-06 17:55:14 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-12-20 08:59:44 +01:00
|
|
|
<!-- The app is a good candidate for URL in https://domain.name/@xxxxxx-->
|
|
|
|
<!-- It should cover every URLs for statuses but some others not related to mastodon matching this scheme -->
|
|
|
|
<data
|
|
|
|
android:scheme="https"
|
|
|
|
android:host="*"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:pathPrefix="/@" />
|
2017-12-20 08:59:44 +01:00
|
|
|
</intent-filter>
|
2019-09-06 17:55:14 +02:00
|
|
|
<intent-filter>
|
2019-03-02 15:43:40 +01:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-03-02 15:43:40 +01:00
|
|
|
<data android:scheme="file" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
<data android:host="*" />
|
|
|
|
<data android:pathPattern=".*\\.fedilab" />
|
|
|
|
</intent-filter>
|
2017-05-05 16:36:04 +02:00
|
|
|
</activity>
|
2019-09-25 13:55:03 +02:00
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.MainActivity.Bubbles"
|
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@mipmap/ic_launcher_bubbles"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_bubbles_round"
|
|
|
|
android:targetActivity=".activities.MainActivity">
|
2019-09-25 15:03:43 +02:00
|
|
|
<meta-data android:name="icon" android:value="bubbles" />
|
2019-09-25 13:55:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.MainActivity.Fediverse"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_fediverse"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_fediverse_round"
|
|
|
|
android:targetActivity=".activities.MainActivity">
|
2019-09-25 15:03:43 +02:00
|
|
|
<meta-data android:name="icon" android:value="fediverse" />
|
2019-09-25 13:55:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.MainActivity.Hero"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_hero"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_hero_round"
|
|
|
|
android:targetActivity=".activities.MainActivity">
|
2019-09-25 15:03:43 +02:00
|
|
|
<meta-data android:name="icon" android:value="hero" />
|
2019-09-25 13:55:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.MainActivity.Atom"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_atom"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_atom_round"
|
|
|
|
android:targetActivity=".activities.MainActivity">
|
2019-09-25 15:03:43 +02:00
|
|
|
<meta-data android:name="icon" android:value="atom" />
|
2019-09-25 13:55:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name=".activities.MainActivity.BrainCrash"
|
|
|
|
android:enabled="false"
|
|
|
|
android:icon="@mipmap/ic_launcher_crash"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_crash_round"
|
|
|
|
android:targetActivity=".activities.MainActivity">
|
2019-09-25 15:03:43 +02:00
|
|
|
<meta-data android:name="icon" android:value="braincrash" />
|
2019-09-25 13:55:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
2019-09-06 17:55:14 +02:00
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.MastodonRegisterActivity"
|
2019-06-13 17:55:21 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.MastodonShareRegisterActivity"
|
2019-08-17 16:14:47 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name">
|
2019-08-17 16:14:47 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-08-17 16:14:47 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="fedilab.app"
|
|
|
|
android:scheme="https"
|
|
|
|
android:pathPattern="/registration_helper/.*" />
|
2019-08-17 16:14:47 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-09-06 17:55:14 +02:00
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.LoginActivity"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name">
|
2018-02-16 15:15:04 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2018-02-16 15:15:04 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="backtomastalab"
|
|
|
|
android:scheme="mastalab" />
|
2018-02-16 15:15:04 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-09-06 17:55:14 +02:00
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.ShowAccountActivity"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
2018-11-06 19:50:09 +01:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.TootInfoActivity"
|
2018-11-06 19:50:09 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.HashTagActivity"
|
2017-05-27 08:32:14 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.WebviewConnectActivity"
|
2017-05-27 08:32:14 +02:00
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PeertubeActivity"
|
2018-10-14 15:20:05 +02:00
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PlaylistsActivity"
|
2019-05-26 18:06:55 +02:00
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PhotoEditorActivity"
|
2019-05-30 15:19:02 +02:00
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
|
|
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
2019-05-30 19:09:36 +02:00
|
|
|
|
2019-09-06 17:55:14 +02:00
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.WebviewActivity"
|
2017-05-26 17:20:36 +02:00
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.MediaActivity"
|
2017-06-26 18:49:39 +02:00
|
|
|
android:label="@string/app_name"
|
2018-02-09 17:39:09 +01:00
|
|
|
android:theme="@style/Theme.Transparent"
|
2017-06-26 18:49:39 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:noHistory="true" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.SearchResultActivity"
|
2017-05-26 17:20:36 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.SearchResultTabActivity"
|
2019-03-31 11:58:40 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.ListActivity"
|
2017-12-14 16:14:24 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.WhoToFollowActivity"
|
2018-09-10 19:21:42 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.ShowConversationActivity"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.OwnerStatusActivity"
|
2018-02-17 11:28:52 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
2019-07-28 15:55:25 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:launchMode="singleTask" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.OwnerNotificationChartsActivity"
|
2019-08-26 18:27:23 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:launchMode="singleTask" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.OwnerChartsActivity"
|
2019-07-28 15:55:25 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
2019-08-25 17:21:34 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:launchMode="singleTask" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.OwnerNotificationActivity"
|
2019-08-25 17:21:34 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
2018-02-17 11:28:52 +01:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:launchMode="singleTask" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.AboutActivity"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.SettingsActivity"
|
2019-07-01 18:39:46 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:launchMode="singleTop" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.AdminActivity"
|
2019-06-19 14:58:57 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.AccountReportActivity"
|
2019-06-21 18:42:00 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.ReorderTimelinesActivity"
|
2019-04-27 17:37:52 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.OpencollectiveActivity"
|
2019-02-07 19:47:53 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PartnerShipActivity"
|
2018-09-01 08:13:22 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.InstanceActivity"
|
2017-06-05 11:57:02 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PrivacyActivity"
|
2017-06-03 15:54:19 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.TootActivity"
|
2018-09-01 18:24:01 +02:00
|
|
|
android:launchMode="singleTop"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-28 12:06:38 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme_NoActionBar_Fedilab" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PixelfedComposeActivity"
|
|
|
|
android:launchMode="singleTop"
|
2019-09-28 15:16:19 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
2019-09-28 12:06:38 +02:00
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:label="@string/app_name"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:theme="@style/AppTheme_NoActionBar_Fedilab" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.EditProfileActivity"
|
2017-08-28 09:20:19 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.CustomSharingActivity"
|
2019-02-13 21:08:53 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.InstanceHealthActivity"
|
2017-11-25 11:01:34 +01:00
|
|
|
android:theme="@style/Base.V7.Theme.AppCompat.Dialog"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:excludeFromRecents="true" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.ProxyActivity"
|
2018-01-20 09:46:28 +01:00
|
|
|
android:theme="@style/Base.V7.Theme.AppCompat.Dialog"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:excludeFromRecents="true" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.ManageAccountsInListActivity"
|
2017-12-16 10:55:22 +01:00
|
|
|
android:windowSoftInputMode="adjustPan"
|
2017-12-15 07:35:13 +01:00
|
|
|
android:theme="@style/Base.V7.Theme.AppCompat.Dialog"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:excludeFromRecents="true" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.TagCacheActivity"
|
2018-12-01 15:32:07 +01:00
|
|
|
android:theme="@style/Base.V7.Theme.AppCompat.Dialog"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:excludeFromRecents="true" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PeertubeUploadActivity"
|
2019-01-07 16:44:19 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
2019-10-03 19:42:04 +02:00
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.LiveNotificationSettingsAccountsActivity"
|
|
|
|
android:theme="@style/Base.V7.Theme.AppCompat.Dialog"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name" />
|
2019-09-06 17:55:14 +02:00
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.MutedInstanceActivity"
|
2019-07-13 12:20:41 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.PeertubeEditUploadActivity"
|
2019-01-07 19:16:15 +01:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name="app.fedilab.android.activities.GroupActivity"
|
2019-07-24 10:05:15 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
|
2018-01-19 15:30:27 +01:00
|
|
|
<provider
|
2019-06-11 19:38:26 +02:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2019-07-16 09:42:11 +02:00
|
|
|
android:authorities="${applicationId}.fileProvider"
|
2018-01-19 15:30:27 +01:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:resource="@xml/file_paths" />
|
2018-01-19 15:30:27 +01:00
|
|
|
</provider>
|
2017-05-05 16:36:04 +02:00
|
|
|
</application>
|
|
|
|
</manifest>
|