Mark Caveneau
Mark Caveneau

Reputation: 39

How to run Android without installing the APK everytime?

Launching a project would be much faster if Android Studio wouldn't need to reinstall the APK everytime.

Is there a solution/tool for this?

Thank u all.

Upvotes: 2

Views: 1313

Answers (2)

Pranit Darekar
Pranit Darekar

Reputation: 5

If you have installed the apk once then you can directly run it on the connected device using the follow option, just click the icon on the right side of run option. See the image for reference. if there is any difficulty write in comment.

https://i.sstatic.net/m1L6U.png

Upvotes: 0

Ratul Bin Tazul
Ratul Bin Tazul

Reputation: 2151

Use Android Instant Run.

Android Studio sets up new projects to deploy to the Android Emulator or a connected device with just a few clicks. Once your app is installed, Instant Run allows you to push code changes without building a new APK.

Check out the Developer Guide to find out more.

Upvotes: 2

Related Questions