You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When abb_exec isn't available, the install method falls back to pushing the apk file to the remote device in the /data/local/tmp/ folder and then using 'shell pm install' to try to install it from there. However this will fail with "java.lang.IllegalArgumentException: Error: Can't open file" because the required permissions are missing. After pushing the apk file and before installing there needs to be a further step, something like: shell("chmod 705 "$remotePath"")
The text was updated successfully, but these errors were encountered:
When abb_exec isn't available, the install method falls back to pushing the apk file to the remote device in the /data/local/tmp/ folder and then using 'shell pm install' to try to install it from there. However this will fail with "java.lang.IllegalArgumentException: Error: Can't open file" because the required permissions are missing. After pushing the apk file and before installing there needs to be a further step, something like: shell("chmod 705 "$remotePath"")
The text was updated successfully, but these errors were encountered: