0

I have a Nokia 6300 4G running KaiOS. I've turned on ADB and USB Debugging on it. When I try to push an apk to the phone, it looks like it's working at first (it says a file gets pushed) but then it throws an error and nothing gets installed. What am I doing wrong?

Here is my terminal output:

adb install myapp.apk
Performing Push Install
myapp.apk: 1 file pushed, 0 skipped. 1.8 MB/s (42103965 bytes in 21.748s)
/system/bin/pm[6]: app_process: not found
Elliptica
  • 3,928
  • 3
  • 37
  • 68
  • `pm` is the central package manger. If this executable is missing you can't do anything. If it is present in a different path (search for it) you can try to `adb upload` the apk and then install it with the pm binary manually in an `adb shell`. – Robert Apr 07 '22 at 07:01
  • How do I search for it on my phone? – Elliptica Apr 08 '22 at 04:30
  • `adb shell` provides a standard shell like on Linux. So you can do `ls` or if it exists on the phone `find`. You will find plenty of tutorials how to use these programs, be aware that the binaries on Android may not support all options you read about here on Stackoverflow, Superuser or other tutorials. – Robert Apr 08 '22 at 07:06

0 Answers0