thorium-fork/app/src/main/AndroidManifest.xml

72 lines
2.9 KiB
XML
Raw Normal View History

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 -->
2018-03-02 16:10:13 -08:00
<uses-permission android:name="android.permission.INTERNET" />
2018-11-10 16:22:28 -08:00
<!-- required for torrent downloading -->
2018-03-10 17:24:06 -08:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- required to play video in background via notification -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
2018-03-02 16:10:13 -08:00
<application
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"
2018-12-29 13:10:13 -08:00
tools:ignore="GoogleAppIndexingWarning"
android:name=".application.AppApplication">
2018-11-10 13:40:27 -08:00
2018-12-02 08:28:18 -08:00
<activity android:name=".activity.VideoListActivity"
2018-12-21 12:59:10 -08:00
android:theme="@style/AppTheme.NoActionBar"
2018-12-02 08:28:18 -08:00
android:launchMode="singleTop">
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" />
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>
<meta-data
android:name="android.app.searchable"
2018-12-02 08:28:18 -08:00
android:resource="@xml/searchable">
</meta-data>
2018-03-02 16:10:13 -08:00
</activity>
<activity
android:name=".activity.LoginActivity"
2018-12-21 12:59:10 -08:00
android:theme="@style/AppTheme.NoActionBar"
android:label="@string/title_activity_login" />
<activity
android:name=".activity.VideoPlayActivity"
2018-12-21 12:59:10 -08:00
android:theme="@style/AppTheme.NoActionBar"
2018-11-10 13:40:27 -08:00
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode"
android:label="@string/title_activity_video_play"
2018-12-21 12:59:10 -08:00
android:launchMode="singleTop" />
<activity
android:name=".activity.SettingsActivity"
2018-12-21 12:59:10 -08:00
android:theme="@style/AppTheme.NoActionBar"
android:label="@string/title_activity_settings" />
2018-11-10 13:40:27 -08:00
<activity android:name=".activity.SelectServerActivity"
android:theme="@style/AppTheme.NoActionBar"/>
2018-12-29 13:10:13 -08:00
<activity android:name=".activity.AccountActivity"
android:label="@string/title_activity_account"
android:theme="@style/AppTheme.NoActionBar"/>
2018-11-10 13:40:27 -08:00
<!-- 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-17 09:11:41 -08:00
<service android:name=".service.VideoPlayerService" />
2018-12-17 09:11:41 -08:00
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>