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

64 lines
2.5 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" />
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"
tools:ignore="GoogleAppIndexingWarning">
<meta-data
android:name="android.app.default_searchable"
2018-11-10 13:40:27 -08:00
android:value=".activity.SearchActivity" />
2018-11-11 05:53:32 -08:00
<activity android:name=".activity.VideoListActivity">
2018-03-02 16:10:13 -08:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
2018-11-10 13:40:27 -08:00
</activity>
<activity
android:name=".activity.SearchActivity"
android:label="@string/title_activity_search"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
2018-03-02 16:10:13 -08:00
</activity>
<activity
android:name=".activity.LoginActivity"
android:label="@string/title_activity_login" />
<activity
android:name=".activity.VideoPlayActivity"
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-11-10 13:40:27 -08:00
android:launchMode="singleTop"
android:theme="@style/AppTheme" />
<activity
android:name=".activity.SettingsActivity"
android:label="@string/title_activity_settings" />
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-11-13 13:16:30 -08:00
<activity android:name=".activity.SelectServerActivity"/>
2018-03-02 16:10:13 -08:00
</application>
</manifest>