Thorium-android-app/app/src/main/AndroidManifest.xml

86 lines
4.0 KiB
XML
Raw Normal View History

2018-03-03 01:10:13 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2022-01-08 10:56:48 +01:00
xmlns:tools="http://schemas.android.com/tools"
package="net.schueller.peertube">
<!-- required to play video in background via notification -->
2022-01-08 10:56:48 +01:00
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> <!-- connect to peertube server -->
<uses-permission android:name="android.permission.INTERNET"/> <!-- required for torrent downloading -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
2018-03-03 01:10:13 +01:00
<application
2022-01-08 10:56:48 +01:00
android:name=".application.AppApplication"
android:allowBackup="true"
android:fullBackupContent="@xml/backup_descriptor"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<!-- Server Address Book -->
2020-06-21 17:01:15 +02:00
<activity
2022-01-08 10:56:48 +01:00
android:name=".activity.ServerAddressBookActivity"
android:label="@string/title_activity_server_address_book"
android:theme="@style/AppTheme.NoActionBar"/> <!-- Video Lists -->
2019-02-17 16:26:17 +01:00
<activity
2022-01-08 10:56:48 +01:00
android:name=".activity.VideoListActivity"
android:launchMode="singleTop"
android:theme="@style/AppTheme.NoActionBar"
android:exported="true">
2018-03-03 01:10:13 +01:00
<intent-filter>
2022-01-08 10:56:48 +01:00
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.intent.action.SEARCH"/>
2019-02-17 16:26:17 +01:00
2022-01-08 10:56:48 +01:00
<category android:name="android.intent.category.LAUNCHER"/>
2018-11-10 22:40:27 +01:00
</intent-filter>
2019-02-17 16:26:17 +01:00
2018-11-10 22:40:27 +01:00
<meta-data
2022-01-08 10:56:48 +01:00
android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity> <!-- Video Player -->
<activity
2022-01-08 10:56:48 +01:00
android:name=".activity.VideoPlayActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode"
android:label="@string/title_activity_video_play"
android:launchMode="singleInstance"
android:supportsPictureInPicture="true"
android:theme="@style/AppTheme.NoActionBar"/>
<!-- Playlist -->
<activity android:name=".activity.PlaylistActivity"
android:label="Playlist"
android:theme="@style/AppTheme.NoActionBar"/>
<!-- Settings -->
<activity
2022-01-08 10:56:48 +01:00
android:name=".activity.SettingsActivity"
android:label="@string/title_activity_settings"
android:theme="@style/AppTheme.NoActionBar"/> <!-- Server Selection -->
2019-02-17 16:26:17 +01:00
<activity
2022-01-08 10:56:48 +01:00
android:name=".activity.SearchServerActivity"
android:label="@string/title_activity_select_server"
android:theme="@style/AppTheme.NoActionBar"/> <!-- Me -->
2019-02-17 16:26:17 +01:00
<activity
2022-01-08 10:56:48 +01:00
android:name=".activity.MeActivity"
android:label="@string/title_activity_me"
android:theme="@style/AppTheme.NoActionBar"/> <!-- Account -->
2019-02-17 16:26:17 +01:00
<activity
2022-01-08 10:56:48 +01:00
android:name=".activity.AccountActivity"
android:label="@string/title_activity_account"
android:theme="@style/AppTheme.NoActionBar"/> <!-- Content provider for search suggestions -->
2018-11-11 14:53:32 +01:00
<provider
2022-01-08 10:56:48 +01:00
android:name=".provider.SearchSuggestionsProvider"
android:authorities="net.schueller.peertube.provider.SearchSuggestionsProvider"
android:enabled="true"
android:exported="false"/>
2018-11-11 14:53:32 +01:00
2022-01-08 10:56:48 +01:00
<service android:name=".service.VideoPlayerService"/>
2021-01-24 00:31:51 +01:00
2021-10-01 21:07:21 +02:00
<receiver android:name="androidx.media.session.MediaButtonReceiver"
2022-01-08 10:56:48 +01:00
android:exported="true">
2021-01-24 00:31:51 +01:00
<intent-filter>
2022-01-08 10:56:48 +01:00
<action android:name="android.intent.action.MEDIA_BUTTON"/>
2021-01-24 00:31:51 +01:00
</intent-filter>
</receiver>
</application>
2018-12-17 18:11:41 +01:00
2018-03-03 01:10:13 +01:00
</manifest>