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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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