2022-04-27 16:20:42 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="app.fedilab.android">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
tools:ignore="ScopedStorage" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".MainApplication"
|
|
|
|
tools:replace="android:allowBackup"
|
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2022-05-04 17:17:36 +03:00
|
|
|
android:usesCleartextTraffic="true"
|
2022-04-27 16:20:42 +03:00
|
|
|
android:label="@string/app_name"
|
2022-06-25 20:35:12 +03:00
|
|
|
android:configChanges="orientation|screenSize"
|
2022-04-27 16:20:42 +03:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2022-05-24 10:30:47 +03:00
|
|
|
android:theme="@style/AppThemeDark"
|
2022-04-27 16:20:42 +03:00
|
|
|
>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.MainActivity"
|
2022-07-23 12:50:01 +03:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize"
|
2022-07-03 13:13:15 +03:00
|
|
|
android:exported="true">
|
2022-04-27 16:20:42 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2022-07-03 13:13:15 +03:00
|
|
|
<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/*" />
|
|
|
|
<data android:mimeType="video/*" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
<data android:mimeType="video/*" />
|
|
|
|
</intent-filter>
|
2022-04-27 16:20:42 +03:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:exported="true"
|
|
|
|
android:name=".activities.LoginActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="backtofedilab"
|
|
|
|
android:scheme="fedilab" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.WebviewConnectActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.ContextActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
2022-05-24 20:16:09 +03:00
|
|
|
android:name=".activities.DraftActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
2022-06-05 16:48:58 +03:00
|
|
|
<activity
|
|
|
|
android:name=".imageeditor.EditImageActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
2022-04-27 16:20:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ComposeActivity"
|
2022-06-06 16:46:45 +03:00
|
|
|
android:configChanges="orientation|screenSize"
|
2022-04-27 16:20:42 +03:00
|
|
|
android:label="@string/compose" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.StatusInfoActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
2022-05-24 20:16:09 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.FollowRequestActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
2022-04-27 16:20:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.WebviewActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.ProfileActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/account" />
|
2022-05-28 15:46:51 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AdminAccountActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/account" />
|
2022-04-27 16:20:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ScheduledActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/scheduled" />
|
2022-06-05 20:30:31 +03:00
|
|
|
<activity
|
|
|
|
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
|
|
|
|
android:theme="@style/Base.Theme.AppCompat" />
|
2022-04-27 16:20:42 +03:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".services.PostMessageService"
|
|
|
|
android:label="@string/post_message" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SearchResultTabActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:theme="@style/AppThemeBar"
|
|
|
|
android:label="@string/search" />
|
2022-07-09 18:34:08 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.TrendsActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/trending"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
2022-04-27 16:20:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ReorderTimelinesActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/reorder_timelines"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
2022-05-28 20:05:44 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AboutActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/action_about"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
2022-06-12 12:28:13 +03:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.PartnerShipActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/action_about"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
2022-04-27 16:20:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.ActionActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/interactions"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
2022-05-28 10:31:19 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AdminActionActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/administration"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
2022-04-27 16:20:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.MastodonListActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/action_lists"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.SettingsActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:theme="@style/AppThemeBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.InstanceActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/action_about_instance"
|
|
|
|
android:theme="@style/DialogDark" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.InstanceProfileActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:theme="@style/DialogDark" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.ProxyActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:theme="@style/DialogDark" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.HashTagActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
2022-06-16 19:30:16 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.AnnouncementActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize" />
|
2022-04-27 16:20:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.MediaActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:theme="@style/TransparentDark" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.InstanceHealthActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:theme="@style/DialogDark" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.ReportActivity"
|
|
|
|
android:theme="@style/AppThemeBarDark"
|
|
|
|
android:windowSoftInputMode="stateVisible" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activities.CustomSharingActivity"
|
|
|
|
android:label="@string/settings_title_custom_sharing"
|
|
|
|
android:windowSoftInputMode="stateVisible"
|
|
|
|
android:theme="@style/AppThemeBarDark" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.FilterActivity"
|
|
|
|
android:label="@string/filters"
|
|
|
|
android:theme="@style/AppThemeBarDark"
|
|
|
|
android:windowSoftInputMode="stateVisible" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.EditProfileActivity"
|
|
|
|
android:label="@string/edit_profile"
|
|
|
|
android:theme="@style/AppThemeBarDark"
|
|
|
|
android:windowSoftInputMode="stateVisible" />
|
|
|
|
|
2022-06-20 19:32:12 +03:00
|
|
|
<activity
|
|
|
|
android:name=".activities.CacheActivity"
|
|
|
|
android:label="@string/action_cache"
|
|
|
|
android:theme="@style/AppThemeBarDark" />
|
|
|
|
|
2022-04-27 16:20:42 +03:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.fileProvider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
</provider>
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".broadcastreceiver.ToastMessage"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="RECEIVE_TOAST_MESSAGE" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".services.CustomReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.unifiedpush.android.connector.MESSAGE" />
|
|
|
|
<action android:name="org.unifiedpush.android.connector.UNREGISTERED" />
|
|
|
|
<action android:name="org.unifiedpush.android.connector.NEW_ENDPOINT" />
|
|
|
|
<action android:name="org.unifiedpush.android.connector.REGISTRATION_FAILED" />
|
|
|
|
<action android:name="org.unifiedpush.android.connector.REGISTRATION_REFUSED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
</application>
|
|
|
|
</manifest>
|