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">
19 <action android:
name=
"android.intent.action.MAIN"/>
20 <category android:
name=
"android.intent.category.LAUNCHER"/>
24 android:
name=
"org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRedirectActivity"
25 android:
enabled=
"false"
26 android:
noHistory=
"true">
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/"/>
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"/>