Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <activity android:name=".WebApps$WebApp@APPNUM@"
2 android:label="@string/webapp_generic_name"
3 android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize"
4 android:windowSoftInputMode="stateUnspecified|adjustResize"
5 android:process=":@ANDROID_PACKAGE_NAME@.Webapp@APPNUM@"
6 android:theme="@style/Gecko.App"
7 #ifdef MOZ_ANDROID_SYNTHAPKS
8 android:launchMode="singleTop"
9 android:exported="true"
10 />
11 #else
12 android:launchMode="singleTask"
13 android:taskAffinity="org.mozilla.gecko.WEBAPP@APPNUM@"
14 android:excludeFromRecents="true">
15 <intent-filter>
16 <action android:name="org.mozilla.gecko.WEBAPP@APPNUM@" />
17 </intent-filter>
18 <intent-filter>
19 <action android:name="org.mozilla.gecko.ACTION_ALERT_CALLBACK" />
20 </intent-filter>
21 </activity>
22 #endif