WSA
Why
Run android app on Windows
How
adb problem.
The most of issues here is about
How to use proxy
adb connect 127.0.0.1:58526 && adb shell "settings put global http_proxy ``ip route list match 0 table all scope global | cut -F3``:7890"
- https://github.com/WSA-Community/WSAGAScript/issues/131
- Windows Android 子系统 WSA 代理设置方法教程 — 秋风于渭水 (tjsky.net)
- Android device: set Wifi Proxy with ADB command | by Andres Sandoval | Medium
- Win11 安卓子系统VirtWifi无法访问网络_virtwifi已连接,但无法访问互联网_被闲置的鱼的博客-CSDN博客
How to Push Files
adb connect 127.0.0.1:58526
adb install application.apk
adb push file_path /storage/emulated/0/Download
via: How to use adb command to push a file on device without sd card
How to install apk
.\adb install-multiple ..\Snipd_2.2.24\base.apk ..\Snipd_2.2.24\split_config.arm64_v8a.apk ..\Snipd_2.2.24\split_config.en.apk ..\Snipd_2.2.24\split_config.ja.apk ..\Snipd_2.2.24\split_config.xxhdpi.apk ..\Snipd_2.2.24\split_config.zh.apk
via: How to install xapk, apks, or multiple-apks via adb?
Install Failed
adb shell settings put global verifier_verify_adb_installs 0
adb shell settings put global package_verifier_enable 0
via: APK installation failed: [INSTALL_FAILED_VERIFICATION_FAILURE]