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"
|
|
|
|
package="net.schueller.peertube">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2018-03-02 17:46:01 -08:00
|
|
|
<!-- 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" />
|
2018-03-10 17:24:06 -08:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
2018-03-02 17:46:01 -08:00
|
|
|
|
2018-03-02 16:10:13 -08:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity android:name=".activity.VideoListActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-03-02 17:46:01 -08:00
|
|
|
<activity
|
|
|
|
android:name=".activity.LoginActivity"
|
2018-03-04 12:04:32 -08:00
|
|
|
android:label="@string/title_activity_login" />
|
2018-03-03 16:06:32 -08:00
|
|
|
<activity
|
|
|
|
android:name=".activity.VideoPlayActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
android:label="@string/title_activity_vide_play"
|
2018-03-04 12:04:32 -08:00
|
|
|
android:theme="@style/FullscreenTheme" />
|
|
|
|
<activity
|
|
|
|
android:name=".activity.TorrentVideoPlayActivity"
|
|
|
|
android:label="@string/title_activity_torrent_video_play"
|
|
|
|
android:theme="@style/AppTheme"></activity>
|
2018-03-02 16:10:13 -08:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|