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">
15 android:
name=
"com.google.android.gms.version"
16 android:
value=
"@integer/google_play_services_version" />
17 <activity android:
name=
"org.chromium.chromoting.Chromoting"
18 android:
configChanges=
"orientation|screenSize"
19 android:
theme=
"@style/MainTheme"
20 android:
launchMode=
"singleTask">
22 <action android:
name=
"android.intent.action.MAIN"/>
23 <category android:
name=
"android.intent.category.LAUNCHER"/>
27 android:
name=
"org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRedirectActivity"
28 android:
enabled=
"false"
29 android:
noHistory=
"true">
31 <action android:
name=
"android.intent.action.VIEW"/>
32 <category android:
name=
"android.intent.category.DEFAULT"/>
33 <category android:
name=
"android.intent.category.BROWSABLE"/>
34 <data android:
scheme=
"{{ APK_PACKAGE_NAME }}"/>
35 <data android:
path=
"/oauthredirect/"/>
38 <activity android:
name=
"org.chromium.chromoting.Desktop"
39 android:
configChanges=
"orientation|screenSize"
40 android:
windowSoftInputMode=
"adjustResize"
41 android:
theme=
"@style/Theme.AppCompat"/>
42 <activity android:
name=
"org.chromium.chromoting.HelpActivity"
43 android:
configChanges=
"orientation|screenSize"
44 android:
uiOptions=
"splitActionBarWhenNarrow"/>