Enable remote deploying

DanB91DanB91 Posts: 3Member
edited June 2013 in General Development
It seems the micro USB port on my Ouya is broken.  While I wait for support to reply to me, I would still like to deploy to my Ouya from Eclipse.  Unfortunately, in order to enable remote deploy (via adb), I need to connect it first via micro USB, which is not possible.

It seems today they enabled side loading of applications.  Does there exist an Android program I can load onto my Ouya from a flash drive so I can enable this feature and deploy remotely?

Thanks!
Post edited by DanB91 on

Comments

  • mjoynermjoyner Posts: 168Member
    edited June 2013
    testflightapp might be one way.

    Post edited by mjoyner on
  • NushioNushio Posts: 3Member
    Instead of using the above app, you can just download the Terminal Emulator apk via the browser and sideload it. Hook up a keyboard for easy typing and type the wireless adb commands.

    setprop service.adb.tcp.port 5555
    stop adbd && start adbd
    

  • mjoynermjoyner Posts: 168Member
    so the terminal commands don't require su ?
  • DanB91DanB91 Posts: 3Member
    edited June 2013
    Thanks!  The commands don't seem to be working, however.  After typing these on my Ouya (which seems to return successfully), I type

    adb tcpip 5555

    Which returns the response:

    error: device not found

    I try netstat on the Ouya and it seems it's not listening on 5555.  Any ideas?


    Post edited by DanB91 on
  • mjoynermjoyner Posts: 168Member
    edited June 2013
    you don't run "adb tcpip 5555" on the ouya, in Eclipse, on your linux, windows, or mac system, you have to tell adb to connect to a remote device giving it your ouya's ip#
    Post edited by mjoyner on
  • DanB91DanB91 Posts: 3Member
    I omitted the word "computer" for some reason in my previous post.  I did run another command on my computer:

    adb connect 192.168.1.114

    (where that ip is the ip of my Ouya)

    and it is unable to connect.  Is there a step I am missing?
Sign In or Register to comment.