-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add an ssh target #1
Comments
I made some progress towards this earlier. IPython can operate in a On Fri, Dec 28, 2012 at 5:18 AM, Gabriel Pettier
|
Should be solved by https://github.com/kivy/kivy-remote-shell. Edit: If not, please reopen. :P |
Sometime using adb is not convenient, and with an ssh-server installed on the android device, it's possible to do everything adb can do, allowing to configure such things could be useful, one needs
an ssh server on the device (dropbear is great)
an ssh key added to the ssh server, so the connection is transparent (optional)
a dump of the adb shell "env" command, so everything happens correctly (i usually put this in /sdcard/adb_env)
the ip of the server
then, the apk can be copied other with a command like
tar -c $apk |ssh root@device_ip 'cd /sdcard/ && tar -x'
and the apk can be installed with
and the activity started with
`am start -n $package_name/org.renpy.android.PythonActivity -a o rg.renpy.android.PythonActivity"``
Assuming adb_env is loaded too.
If nobody does, i'll try to do that at some point in the future, if someone wants to do it before, i can help :)
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: