70 lines
2.7 KiB
XML
70 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="net.schueller.peertube">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<!-- To auto-complete the email text field in the login form with the user's emails -->
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
tools:ignore="GoogleAppIndexingWarning"
|
|
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<meta-data android:name="android.app.default_searchable"
|
|
android:value=".activity.SearchActivity" />
|
|
|
|
<activity
|
|
android:name=".activity.VideoListActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
</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" />
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activity.LoginActivity"
|
|
android:label="@string/title_activity_login" />
|
|
<activity
|
|
android:name=".activity.VideoPlayActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode"
|
|
android:label="@string/title_activity_video_play"
|
|
android:launchMode="singleTop"
|
|
android:theme="@style/AppTheme" />
|
|
<activity
|
|
android:name=".activity.SettingsActivity"
|
|
android:label="@string/title_activity_settings" />
|
|
|
|
<!-- Content provider for search suggestions -->
|
|
<provider android:name=".provider.SearchSuggestionsProvider"
|
|
android:enabled="true"
|
|
android:authorities="net.schueller.peertube.provider.SearchSuggestionsProvider"
|
|
android:exported="false" />
|
|
</application>
|
|
|
|
</manifest> |