Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run "Instant Run" from command line

I'm running my Android app from Android Studio, and Instant Run kicks in, which is great. I want to run the exact same thing from the command-line.

In Android Studio's Event Log, I see

22:00:28 Executing tasks: [:app:incrementalDevDebugSupportDex]
22:00:48 Gradle build finished in 20s 286ms
22:00:51 Instant Run applied code changes and restarted the current Activity.

So, I expected I would be able to run that task from the command line: ./gradlew :app:incrementalDevDebugSupportDex. However, it's not found:

FAILURE: Build failed with an exception.

* What went wrong:
Task 'incrementalDevDebugSupportDex' not found in project ':app'.

Is there a way to run with Instant Run from the command line?

like image 369
espinchi Avatar asked Mar 04 '16 03:03

espinchi


2 Answers

It is currently not possible to use instant run outside of Android Studio. This was mentioned at the Android Dev Summit, but I can't recall exactly in which talk that was.

like image 117
kevinpelgrims Avatar answered Nov 16 '22 00:11

kevinpelgrims


You can run instant-run from command line like this:

./gradlew clean :sample-app:assembleDebug -Pandroid.optional.compilation=INSTANT_DEV -Pandroid.injected.build.api=24
like image 20
muyiou Avatar answered Nov 16 '22 02:11

muyiou