2018-03-02 16:10:13 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-11-10 13:40:27 -08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-03-02 16:10:13 -08:00
|
|
|
package="net.schueller.peertube">
|
2018-11-10 16:22:28 -08:00
|
|
|
<!-- connect to peertube server -->
|
2019-02-17 07:26:17 -08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" /> <!-- required for torrent downloading -->
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- required to play video in background via notification -->
|
2018-12-17 12:07:49 -08:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
2018-03-02 16:10:13 -08:00
|
|
|
<application
|
2019-02-17 07:26:17 -08:00
|
|
|
android:name=".application.AppApplication"
|
2018-03-02 16:10:13 -08:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2018-11-11 05:53:32 -08:00
|
|
|
android:theme="@style/AppTheme"
|
2019-02-17 07:26:17 -08:00
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity
|
|
|
|
android:name=".activity.VideoListActivity"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
2018-03-02 16:10:13 -08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2018-11-10 13:40:27 -08:00
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
2019-02-17 07:26:17 -08:00
|
|
|
|
2018-12-02 08:28:18 -08:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2018-11-10 13:40:27 -08:00
|
|
|
</intent-filter>
|
2019-02-17 07:26:17 -08:00
|
|
|
|
2018-11-10 13:40:27 -08:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
2019-02-17 07:26:17 -08:00
|
|
|
android:resource="@xml/searchable"></meta-data>
|
2018-03-02 16:10:13 -08:00
|
|
|
</activity>
|
2018-03-02 17:46:01 -08:00
|
|
|
<activity
|
|
|
|
android:name=".activity.LoginActivity"
|
2019-02-17 07:26:17 -08:00
|
|
|
android:label="@string/title_activity_login"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2018-03-04 12:04:32 -08:00
|
|
|
<activity
|
2018-07-01 06:11:26 -07:00
|
|
|
android:name=".activity.VideoPlayActivity"
|
2018-11-10 13:40:27 -08:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode"
|
2018-07-01 06:11:26 -07:00
|
|
|
android:label="@string/title_activity_video_play"
|
2019-02-17 07:26:17 -08:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2018-03-11 06:51:39 -07:00
|
|
|
<activity
|
|
|
|
android:name=".activity.SettingsActivity"
|
2019-02-17 07:26:17 -08:00
|
|
|
android:label="@string/title_activity_settings"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activity.SelectServerActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activity.MeActivity"
|
2018-12-29 13:10:13 -08:00
|
|
|
android:label="@string/title_activity_account"
|
2019-02-17 07:26:17 -08:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activity.AccountActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" /> <!-- Content provider for search suggestions -->
|
2018-11-11 05:53:32 -08:00
|
|
|
<provider
|
|
|
|
android:name=".provider.SearchSuggestionsProvider"
|
2018-11-10 13:40:27 -08:00
|
|
|
android:authorities="net.schueller.peertube.provider.SearchSuggestionsProvider"
|
2018-11-11 05:53:32 -08:00
|
|
|
android:enabled="true"
|
2018-11-10 13:40:27 -08:00
|
|
|
android:exported="false" />
|
2018-11-11 05:53:32 -08:00
|
|
|
|
2018-12-15 12:59:59 -08:00
|
|
|
<service android:name=".service.VideoPlayerService" />
|
2018-03-02 16:10:13 -08:00
|
|
|
</application>
|
2018-12-17 09:11:41 -08:00
|
|
|
|
2018-03-02 16:10:13 -08:00
|
|
|
</manifest>
|