mobile/android/base/WebappManifestFragment.xml.frag.in

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 <activity android:name=".WebApps$WebApp@APPNUM@"
michael@0 2 android:label="@string/webapp_generic_name"
michael@0 3 android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize"
michael@0 4 android:windowSoftInputMode="stateUnspecified|adjustResize"
michael@0 5 android:process=":@ANDROID_PACKAGE_NAME@.Webapp@APPNUM@"
michael@0 6 android:theme="@style/Gecko.App"
michael@0 7 #ifdef MOZ_ANDROID_SYNTHAPKS
michael@0 8 android:launchMode="singleTop"
michael@0 9 android:exported="true"
michael@0 10 />
michael@0 11 #else
michael@0 12 android:launchMode="singleTask"
michael@0 13 android:taskAffinity="org.mozilla.gecko.WEBAPP@APPNUM@"
michael@0 14 android:excludeFromRecents="true">
michael@0 15 <intent-filter>
michael@0 16 <action android:name="org.mozilla.gecko.WEBAPP@APPNUM@" />
michael@0 17 </intent-filter>
michael@0 18 <intent-filter>
michael@0 19 <action android:name="org.mozilla.gecko.ACTION_ALERT_CALLBACK" />
michael@0 20 </intent-filter>
michael@0 21 </activity>
michael@0 22 #endif

mercurial