Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / remoting / android / java / AndroidManifest.xml.jinja2
blob836533c88afc4860d04beb50eba78a8d96b2df97
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="{{ APK_PACKAGE_NAME }}">
4 <uses-sdk android:minSdkVersion="14"
5 android:targetSdkVersion="20"/>
6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
7 <uses-permission android:name="android.permission.INTERNET"/>
8 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
9 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
10 <application android:label="@string/product_name_android"
11 android:icon="@drawable/chromoting128"
12 android:theme="@android:style/Theme.Holo"
13 android:allowBackup="false">
14 <activity android:name="org.chromium.chromoting.Chromoting"
15 android:configChanges="orientation|screenSize"
16 android:theme="@style/MainTheme"
17 android:launchMode="singleTask">
18 <intent-filter>
19 <action android:name="android.intent.action.MAIN"/>
20 <category android:name="android.intent.category.LAUNCHER"/>
21 </intent-filter>
22 </activity>
23 <activity
24 android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRedirectActivity"
25 android:enabled="false"
26 android:noHistory="true">
27 <intent-filter>
28 <action android:name="android.intent.action.VIEW"/>
29 <category android:name="android.intent.category.DEFAULT"/>
30 <category android:name="android.intent.category.BROWSABLE"/>
31 <data android:scheme="{{ APK_PACKAGE_NAME }}"/>
32 <data android:path="/oauthredirect/"/>
33 </intent-filter>
34 </activity>
35 <activity android:name="org.chromium.chromoting.Desktop"
36 android:configChanges="orientation|screenSize"
37 android:windowSoftInputMode="adjustResize"
38 android:theme="@style/Theme.AppCompat"/>
39 <activity android:name="org.chromium.chromoting.HelpActivity"
40 android:configChanges="orientation|screenSize"
41 android:uiOptions="splitActionBarWhenNarrow"/>
42 </application>
43 </manifest>