|
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 |