Is there a way to launch app on device fast?

Hello everyone!

I wondering if there is any way to fast launch built app on my Android device. When I developed native apps with xCode I just had to press one button and app installed and launched on iOS device automatically.

Now, to get application running on Android device, I have to:

  1. Press “build”

  2. Find built app

  3. Copy it to device by cable or via Dropbox

  4. Install this app (and if I used Dropbox, I must download it first - it also takes time)

  5. Finally, launch it

And if I made an error, I have to pass through all this steps once again.

It is quite annoying, so I try to use simulator as much as possible. But, you know, there are many cases when real device needed. 

So, my question - is there some software that simplifies that process to the one press of button?

adb install -r your_app.apk

you can make this a shell script and execute it every time you complete the build.

Thanks!

adb install -r your_app.apk

you can make this a shell script and execute it every time you complete the build.

Thanks!