mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-07 21:10:46 +08:00
android: rename package for new engine
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
com.gamemaker.game
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="in.celest.xash3d.hl"
|
||||
android:versionCode="1276"
|
||||
android:versionName="0.19.3"
|
||||
package="su.xash.engine"
|
||||
android:versionCode="1705"
|
||||
android:versionName="0.20"
|
||||
android:installLocation="auto">
|
||||
|
||||
<application android:label="@string/app_name"
|
||||
@@ -14,31 +14,17 @@
|
||||
android:debuggable="false"
|
||||
android:hardwareAccelerated="true">
|
||||
|
||||
<activity android:name="in.celest.xash3d.LauncherActivity"
|
||||
<activity android:name="su.xash.engine.LauncherActivity"
|
||||
android:label="@string/launcher_name"
|
||||
android:windowSoftInputMode="adjustResize"
|
||||
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize">
|
||||
<intent-filter>
|
||||
<action android:name="in.celest.xash3d.LauncherActivity"/>
|
||||
<action android:name="su.xash.engine.LauncherActivity"/>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!--<activity android:name="in.celest.xash3d.SteamActivity"
|
||||
android:label="Steam"
|
||||
android:windowSoftInputMode="adjustResize"
|
||||
android:launchMode="singleTask">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="in.celest.xash3d.SteamActivity"/>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
|
||||
</activity>-->
|
||||
|
||||
<activity android:name="in.celest.xash3d.ShortcutActivity"
|
||||
<activity android:name="su.xash.engine.ShortcutActivity"
|
||||
android:label="@string/text_shortcut"
|
||||
android:theme="@android:style/Theme.Dialog">
|
||||
<intent-filter>
|
||||
@@ -47,39 +33,27 @@
|
||||
</intent-filter>
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="in.celest.xash3d.SHORTCUT" />
|
||||
<action android:name="su.xash.engine.SHORTCUT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!--
|
||||
<activity android:name="org.libsdl.app.SDLActivity"
|
||||
android:screenOrientation="sensorLandscape"
|
||||
android:configChanges="orientation|screenSize"
|
||||
android:label="@string/app_name"
|
||||
android:taskAffinity="org.libsdl.app.SDLActivity" >
|
||||
<intent-filter>
|
||||
<action android:name="in.celest.xash3d.START" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
-->
|
||||
<activity android:name="in.celest.xash3d.XashActivity"
|
||||
<activity android:name="su.xash.engine.XashActivity"
|
||||
android:screenOrientation="sensorLandscape"
|
||||
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
|
||||
android:label="@string/app_name"
|
||||
android:launchMode="singleTask">
|
||||
<intent-filter>
|
||||
<action android:name="in.celest.xash3d.START" />
|
||||
<action android:name="su.xash.engine.START" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="in.celest.xash3d.FPicker"></activity>
|
||||
<activity android:name="in.celest.xash3d.XashTutorialActivity">
|
||||
<activity android:name="su.xash.engine.FPicker"></activity>
|
||||
<activity android:name="su.xash.engine.XashTutorialActivity">
|
||||
</activity>
|
||||
|
||||
<service android:name="in.celest.xash3d.XashService" android:stopWithTask="false" />
|
||||
<receiver android:name="in.celest.xash3d.XashService$exitButtonListener" />
|
||||
<receiver android:name="in.celest.xash3d.InstallReceiver">
|
||||
<service android:name="su.xash.engine.XashService" android:stopWithTask="false" />
|
||||
<receiver android:name="su.xash.engine.XashService$exitButtonListener" />
|
||||
<receiver android:name="su.xash.engine.InstallReceiver">
|
||||
<intent-filter android:priority="100">
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<action android:name="android.intent.action.PACKAGE_ADDED" />
|
||||
@@ -90,7 +64,7 @@
|
||||
<data android:scheme="package" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
<!--<service android:name="in.celest.xash3d.SteamService" />-->
|
||||
<!--<service android:name="su.xash.engine.SteamService" />-->
|
||||
<meta-data android:name="android.max_aspect" android:value="2.1" />
|
||||
</application>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user