2020-06-25 16:57:13 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-27 11:21:25 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-06-25 16:57:13 +02:00
|
|
|
package="app.fedilab.fedilabtube">
|
|
|
|
|
2020-06-26 18:17:17 +02:00
|
|
|
|
2020-06-27 14:19:05 +02:00
|
|
|
<!--
|
2020-09-18 18:10:04 +02:00
|
|
|
|
2020-06-27 14:19:05 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
|
|
|
|
-->
|
2020-06-26 18:17:17 +02:00
|
|
|
<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" />
|
2020-09-18 18:10:04 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-06-26 18:17:17 +02:00
|
|
|
|
2020-06-25 16:57:13 +02:00
|
|
|
<application
|
2020-09-03 18:56:48 +02:00
|
|
|
android:name=".FedilabTube"
|
2020-06-27 11:21:25 +02:00
|
|
|
android:allowBackup="false"
|
2020-09-19 14:56:10 +02:00
|
|
|
|
2020-06-25 16:57:13 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2020-07-01 16:36:08 +02:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
tools:replace="android:allowBackup">
|
2020-06-25 16:57:13 +02:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2020-09-12 14:11:02 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2020-06-25 16:57:13 +02:00
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-06-26 19:16:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".PeertubeActivity"
|
2020-09-19 14:56:10 +02:00
|
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
|
|
|
|
android:label="@string/app_name"
|
2020-09-19 16:50:20 +02:00
|
|
|
android:launchMode="singleTask"
|
2020-09-19 18:19:59 +02:00
|
|
|
android:resizeableActivity="true"
|
2020-09-19 14:56:10 +02:00
|
|
|
android:supportsPictureInPicture="true"
|
|
|
|
tools:targetApi="n" />
|
2020-06-26 19:16:00 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PeertubeEditUploadActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2020-09-19 18:19:59 +02:00
|
|
|
android:exported="false"
|
2020-06-26 19:16:00 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-06-27 17:58:13 +02:00
|
|
|
|
|
|
|
<activity
|
2020-09-26 16:46:51 +02:00
|
|
|
android:name=".ShowChannelActivity"
|
2020-06-27 17:58:13 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-09-03 19:08:53 +02:00
|
|
|
<activity
|
|
|
|
android:name=".AccountActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2020-09-13 19:20:04 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-06-28 12:14:14 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SearchActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-06-30 17:26:20 +02:00
|
|
|
<activity
|
|
|
|
android:name=".AllPlaylistsActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-09-16 17:27:07 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".InstancePickerActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
|
|
|
|
2020-06-30 17:26:20 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PlaylistsActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-06-28 19:11:39 +02:00
|
|
|
<activity
|
2020-06-30 13:33:43 +02:00
|
|
|
android:name=".MyVideosActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-07-03 17:04:04 +02:00
|
|
|
<activity
|
|
|
|
android:name=".WebviewActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name=".WebviewConnectActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/app_name" />
|
2020-06-30 13:33:43 +02:00
|
|
|
<activity
|
2020-06-28 19:11:39 +02:00
|
|
|
android:name=".LoginActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2020-09-16 14:07:44 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-09-03 19:08:53 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/settings"
|
2020-09-16 14:07:44 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-06-28 19:11:39 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PeertubeRegisterActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2020-09-03 19:08:53 +02:00
|
|
|
android:label="@string/register_account"
|
2020-06-28 19:11:39 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-06-30 12:00:55 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PeertubeUploadActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2020-09-03 19:08:53 +02:00
|
|
|
android:label="@string/upload_video"
|
2020-06-30 12:00:55 +02:00
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-09-16 14:07:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".AboutActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/about_the_app"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
2020-07-01 16:36:08 +02:00
|
|
|
|
2020-09-18 14:37:34 +02:00
|
|
|
<service
|
|
|
|
android:name=".services.RetrieveInfoService"
|
|
|
|
android:exported="false" />
|
2020-06-26 19:16:00 +02:00
|
|
|
<receiver
|
2020-06-27 11:21:25 +02:00
|
|
|
android:name=".services.PeertubeUploadReceiver"
|
2020-06-26 19:16:00 +02:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
2020-09-03 19:08:53 +02:00
|
|
|
<action android:name="app.fedilab.fedilabtube.uploadservice.broadcast.status" />
|
2020-06-26 19:16:00 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2020-06-25 16:57:13 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|