How to activate Instant Run in AndroidStudio 2.0

馋奶兔 提交于 2019-12-05 11:45:14

问题


Android studio 2.0 introduced instant run facility, its not working for me, I know 2.0 is in the preview channel

Anybody tried 2.0 with instarun facility?


回答1:


Instant Run is enabled by default for projects built using Android Gradle Plugin 2.0.0, or later. To update an existing project with the latest version of the Gradle plugin, go to the Settings dialog:

On Mac, click Android Studio → Preferences
On Windows and Linux, click File → Settings

In the Settings/Preferences dialog, go to Build, Execution, Deployment → Instant Run.
Click the Update Project link. When prompted, click OK.
If the the Update Project link does not appear, your project is already up to date.

Using Instant Run


To first run your app, click Run ‘app’ (or Debug ‘app’ ). Android Studio will run your app by compiling, dexing, packaging and installing an .APK file, and launching the app. After your app has launched, a small, yellow thunderbolt will appear with the Run ‘app’ button (or Debug ‘app’ button). This indicates that the Instant Run feature is ready.

Clicking Run ‘app’ (or Debug ‘app’) again will start an Instant Run and your changes are pushed to the connected device within a few seconds.

To terminate the running app on your device, click Stop ‘app’ .




回答2:


Instant Run is enabled by default on newly created projects and it can be turned on for existing apps in the project settings at Build, Execution, Deployment -> Instant Run. Build scripts will have to be updated to use v2.0.0-alpha of the Gradle plugin. As always, this is still very new and may not be completely stable.



来源:https://stackoverflow.com/questions/34173500/how-to-activate-instant-run-in-androidstudio-2-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!