mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7ed59e75c8
--HG-- extra : rebase_source : d97be65ec4c033f5eca37bc0b6f94979398fcf02
23 lines
1.0 KiB
GLSL
23 lines
1.0 KiB
GLSL
<activity android:name=".WebApps$WebApp@APPNUM@"
|
|
android:label="@string/webapp_generic_name"
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize"
|
|
android:windowSoftInputMode="stateUnspecified|adjustResize"
|
|
android:process=":@ANDROID_PACKAGE_NAME@.WebApp@APPNUM@"
|
|
android:theme="@style/Gecko.App"
|
|
#ifdef MOZ_ANDROID_SYNTHAPKS
|
|
android:launchMode="singleTop"
|
|
android:exported="true"
|
|
/>
|
|
#else
|
|
android:launchMode="singleTask"
|
|
android:taskAffinity="org.mozilla.gecko.WEBAPP@APPNUM@"
|
|
android:excludeFromRecents="true">
|
|
<intent-filter>
|
|
<action android:name="org.mozilla.gecko.WEBAPP@APPNUM@" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="org.mozilla.gecko.ACTION_ALERT_CALLBACK" />
|
|
</intent-filter>
|
|
</activity>
|
|
#endif
|