HI @dodi_games. Please give the community time to respond to your posts. We recommend waiting at least 24 hours before you bump a post.
There is nothing specific about installing the “adb tools” to Corona. As such, there is a ton of information on the Internet on how to do this. We don’t like writing documentation on third-party products because they change at a whim and it’s not really practical for us to documented someone elses products.
A quick Google search on “installing adb on windows” returned a bunch of hits that can help you accomplish this:
https://www.google.com/search?q=installing+adb+on+windows&oq=installing+adb+on+windows
Then once you have it installed, you have to understand some basics for using command line tools.
-
Your adb.exe will be located in a particular folder.
-
This folder/path will likely not be added to the command line search path, which means you either have to be in the folder with adb.exe to run it, or you have to type in the full path to the command (or update the PATH environment variable so you don’t have to deal with it, but this is all part of learning how to work with the Windows command line)
-
Your .apk will be output to a build folder that you have set in Corona.
In an ideal world, you would add the folder where adb.exe is to the PATH environment variable and then use the cd (change directory) command to the folder where you output your .apk file then you just have to do:
adb install apkname.apk
But if you don’t want to set this up in the path, then your command could be more like:
c:\Program Files (x86)\path\to\adb.exe install c:\users\yourname\path\to\your.apk
Rob