i want to install an APK file via adb commands using tcpip or the wifi not via usb

164 Views Asked by At

i want to install an apk file via adb command using wirless option tcpip not via usb , and it's not wokring i get this i get this error the command i used is " adb install name.apk " note i have android 10, have already enabled usb debugging and install via usb and all that , please help thank you

i tried to install an apk file via adb command on wifi network tcpip and i expected it to be installed on my phone

1

There are 1 best solutions below

2
On

The error is because you are installing an apk that does not have native library files (*.so files found in the lib/arm folder in the apk file)** for your specific device. You must have downloaded the wrong apk file which might be supported for x86(intel processors) but your phone is arm 64bit or arm 32bit. Please cross check the device model for architecture and download the correct apk and the installation using the same command will be successful.

please comment down your phone model if you need any assistance.

Its not a problem that occurred when you use adb over network. You should also get the error through USB as well.