version:4.9

fix:
update:更新下单流程,增加备注,增加桌面图标
This commit is contained in:
2024-03-13 18:13:33 +08:00
parent 7cb6eecb3d
commit 5e9b850d6b
41 changed files with 945 additions and 124 deletions

View File

@@ -188,8 +188,8 @@
<activity
android:name=".activity.GoodsActivity"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustPan"
android:screenOrientation="userPortrait" />
android:screenOrientation="userPortrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".activity.OrderActivity"
android:launchMode="singleTask"
@@ -206,7 +206,20 @@
android:name=".activity.ExpressActivity"
android:launchMode="singleTask"
android:screenOrientation="userPortrait" />
<activity
android:name=".activity.AddressActivity"
android:launchMode="singleTask"
android:screenOrientation="userPortrait" />
<!-- Intent received used to install shortcuts from other applications -->
<receiver
android:name=".receiver.InstallShortcutReceiver"
android:enabled="@bool/enable_install_shortcut_api"
android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">
<intent-filter>
<action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
</intent-filter>
</receiver>
<receiver
android:name=".receiver.BootReceiver"
@@ -226,6 +239,7 @@
<action android:name="zuoyeos.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name=".receiver.InstallResultReceiver"
android:enabled="true"