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-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"
|
|
|
|
android:label="@string/title_activity_login">
|
|
|
|
</activity>
|
2018-03-02 16:10:13 -08:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|