Search Unity

adb failed to start Help

Discussion in 'Editor & General Support' started by myvrjourney, Mar 21, 2019.

  1. myvrjourney

    myvrjourney

    Joined:
    Mar 20, 2019
    Posts:
    2
    Hi all,

    First time making a Unity App for the Oculus Go and I am having trouble installing my .apk onto my oculus go to test it out. Within the Command Promt this is what is happening after I type the following:


    C:\>adb install “Build”.apk

    Performing Streamed Install

    adb: failed to stat “Build”.apk: No such file or directory
     
    Last edited: Apr 4, 2019
  2. mgear

    mgear

    Joined:
    Aug 3, 2010
    Posts:
    9,438
    try without " marks:
    adb install Build.apk

    and is the build.apk in that current folder, c: root?
     
    myvrjourney likes this.
  3. myvrjourney

    myvrjourney

    Joined:
    Mar 20, 2019
    Posts:
    2
    Thanks for the reply mgear! I found out that I had to type the following

    C:\>cd adb

    The " marks were not in my original build name just to imply what the name would in that section.