赞
踩
有的真机在android studio 编译运行apk的时候会出现
Error while executing: am startservice com.hikchina.police/com.android.tools.fd.runtime.InstantRunService
Starting service: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.hikchina.police/com.android.tools.fd.runtime.InstantRunService }
Error: Not found; no service started.
的错误,究其原因 是因为android studio2.3版本添加了Instant Run(快速运行) 意在android studio使用开发者提高开发效率,不需要重新打包即可看见运行效果
根据官方文档说明:
Although your first build may take longer to complete, Instant Run pushes subsequent updates to your app without building a new APK, so changes are visible much more quickly.
尽管第一次build的时间会花费更长的时间,但是Instant Run可以在后续更新APP时不需要创建新的APK,所以改变是快速可见的.
在测试的时候对代码进行修改时,再运行会很快打开当前已经打开的Activity并更新内容(当修改UI时会非常明显).更新APK的速度确实是会非常快.但是他的缺点也是很明显的:
Instant Run is supported only when you deploy the debug build variant, use Android Plugin for Gradle version 2.0.0 or higher, and set minSdkVersion to 15 or higher in your app’s module-level build.gradle file. For the best performance, set minSdkVersion to 21 or higher.
首先只有使用Gradle 2.0以上版本可用,最低minSdkVersion必须是15或者以上,需要得到更好体验应该设置SDK 21以上.另外,只会在部署变化的调试版本时支持
(部分翻译有误请指出)
所以这就说明了当系统API并没有达到21时非常有可能是无法支持的.虽然在实际中不能用的机子有一部分是5.0系统的,但并没有什么卵用…
解决方案是建议在发部测试版本的时候如果测试的机子系统覆盖范围比较大(包括很多低版本系统时),可以关闭该功能并重新打包发布即可.
官方说明关闭方法如下:
To disable Instant Run:
- Open the Settings or Preferences dialog.
- Navigate to Build, Execution, Deployment > Instant Run.
- Uncheck the box next to Enable Instant Run.
打开设置->Build->Execution->Deployment->Instant Run->取消Enable即可
我在我的Android Studio上并没有发现这个结构层次,建议用以下的办法会更容易也比较适用所有类型的Android Studio
Instant Run
Instant Run
选项,选择第一个Enable
取消打勾我的选项显示的是:
Enable Instant Run to hot swap code/resource changes on deploy(default enabled)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。