mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
0befe34a3a
--HG-- rename : mobile/android/base/WebApp.java => mobile/android/base/WebAppImpl.java
18 lines
889 B
JavaScript
18 lines
889 B
JavaScript
<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:launchMode="singleTask"
|
|
android:taskAffinity="org.mozilla.gecko.WEBAPP@APPNUM@"
|
|
android:process=":@ANDROID_PACKAGE_NAME@.WebApp@APPNUM@"
|
|
android:excludeFromRecents="true"
|
|
android:theme="@style/Gecko.App">
|
|
<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>
|
|
|