Describe the bug
I use the WSA 2407.40000.4.0 x64, with Google Play, Amazon, and Magisk. I download the apk of the APP and use ADB to install it. After launching the app "不背单词", the app gets stuck on the Splash Screen (the screen displaying the app's logo). It never progresses to the main interface. To solve this problem, I have taken the following steps:
- Created a fake CPU info file
Attempted to create /system/etc/cpuinfo.arm64.txt with content Hardware : Qualcomm Technologies, Inc (initial attempts failed due to read‑only system partition; later placed via Magisk module overlay).
- Created a Magisk module named cpuinfo_fix
Created module directory /data/adb/modules/cpuinfo_fix/
Wrote module.prop descriptor file
Placed system/etc/cpuinfo.arm64.txt inside the module (so Magisk overlays it onto /system/etc/)
- Wrote startup scripts
Tried multiple locations: post-fs-data.sh, service.sh, and /data/adb/service.d/cpuinfo_bind.sh
Eventually settled on the module’s own service.sh, which includes:
setenforce 0 (set SELinux to permissive)
mount --make-shared / and mount --make-shared /proc (set mount propagation to shared)
mount --bind /system/etc/cpuinfo.arm64.txt /proc/cpuinfo (bind the fake file)
resetprop to modify CPU ABI properties (ro.product.cpu.abilist, etc.)
- Set script permissions
All scripts were given 755 permissions (chmod 755)
- Cleaned up conflicting scripts
Removed /data/adb/service.d/cpuinfo_bind.sh
Removed older post-fs-data.sh or service.sh inside the module (kept only one)
- Device model spoofing
Change the device model to OnePlus Ace 2
Final State
/proc/cpuinfo is successfully bind‑mounted and shows spoofed Qualcomm info.
CPU ABI properties are changed to ARM64.
SELinux is set to permissive mode.
Although I do these things, the app still can't work. I have uploaded the log. The apk can be downloaded at https://bbdc.cn/index.
wsa_log.txt
Steps to reproduce the issue
Install the app on WSA, and it can't work.
Expected behaviour
The app should launch normally, transition from the Splash Screen to the main interface within a few seconds, and remain responsive without crashing or restarting.
Downloaded Build Of WSA
WSA_2407.40000.4.0_x64
Windows build number
x64
PC Specification
System Info.txt
Additional context
No response
Describe the bug
I use the WSA 2407.40000.4.0 x64, with Google Play, Amazon, and Magisk. I download the apk of the APP and use ADB to install it. After launching the app "不背单词", the app gets stuck on the Splash Screen (the screen displaying the app's logo). It never progresses to the main interface. To solve this problem, I have taken the following steps:
Attempted to create /system/etc/cpuinfo.arm64.txt with content Hardware : Qualcomm Technologies, Inc (initial attempts failed due to read‑only system partition; later placed via Magisk module overlay).
Created module directory /data/adb/modules/cpuinfo_fix/
Wrote module.prop descriptor file
Placed system/etc/cpuinfo.arm64.txt inside the module (so Magisk overlays it onto /system/etc/)
Tried multiple locations: post-fs-data.sh, service.sh, and /data/adb/service.d/cpuinfo_bind.sh
Eventually settled on the module’s own service.sh, which includes:
setenforce 0 (set SELinux to permissive)
mount --make-shared / and mount --make-shared /proc (set mount propagation to shared)
mount --bind /system/etc/cpuinfo.arm64.txt /proc/cpuinfo (bind the fake file)
resetprop to modify CPU ABI properties (ro.product.cpu.abilist, etc.)
All scripts were given 755 permissions (chmod 755)
Removed /data/adb/service.d/cpuinfo_bind.sh
Removed older post-fs-data.sh or service.sh inside the module (kept only one)
Change the device model to OnePlus Ace 2
Final State
/proc/cpuinfo is successfully bind‑mounted and shows spoofed Qualcomm info.
CPU ABI properties are changed to ARM64.
SELinux is set to permissive mode.
Although I do these things, the app still can't work. I have uploaded the log. The apk can be downloaded at https://bbdc.cn/index.
wsa_log.txt
Steps to reproduce the issue
Install the app on WSA, and it can't work.
Expected behaviour
The app should launch normally, transition from the Splash Screen to the main interface within a few seconds, and remain responsive without crashing or restarting.
Downloaded Build Of WSA
WSA_2407.40000.4.0_x64
Windows build number
x64
PC Specification
System Info.txt
Additional context
No response