Index: remoting/android/java/AndroidManifest.xml.jinja2 |
diff --git a/remoting/android/java/AndroidManifest.xml.jinja2 b/remoting/android/java/AndroidManifest.xml.jinja2 |
index 7521f52afffff8d7f9a34fb78e96d1763990b96a..5123907506b41c01e1c23e9d8236dcd340d3a729 100644 |
--- a/remoting/android/java/AndroidManifest.xml.jinja2 |
+++ b/remoting/android/java/AndroidManifest.xml.jinja2 |
@@ -12,12 +12,25 @@ |
android:theme="@android:style/Theme.Holo"> |
<activity android:name="org.chromium.chromoting.Chromoting" |
android:configChanges="orientation|screenSize" |
- android:theme="@style/MainTheme"> |
+ android:theme="@style/MainTheme" |
+ android:launchMode="singleTask"> |
<intent-filter> |
<action android:name="android.intent.action.MAIN"/> |
<category android:name="android.intent.category.LAUNCHER"/> |
</intent-filter> |
</activity> |
+ <activity |
+ android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRedirectActivity" |
+ android:enabled="false" |
+ android:noHistory="true"> |
+ <intent-filter> |
+ <action android:name="android.intent.action.VIEW"/> |
+ <category android:name="android.intent.category.DEFAULT"/> |
+ <category android:name="android.intent.category.BROWSABLE"/> |
+ <data android:scheme="org.chromium.chromoting"/> |
Lambros
2014/06/17 02:01:39
I think it might be better to use the official pac
kelvinp
2014/06/17 03:33:40
Done.
|
+ <data android:host="oauthredirect"/> |
+ </intent-filter> |
+ </activity> |
<activity android:name="org.chromium.chromoting.Desktop" |
android:configChanges="orientation|screenSize" |
android:windowSoftInputMode="adjustResize"/> |