本文介绍了无法为任务 android studio 捕获输入文件的快照的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作 android studio 项目,

I am trying to make android studio project,

我在 Android 设备管理器中运行项目很好,但是当我尝试在真实设备上运行时,出现了一些错误:

I was run project in Android Device Manager is fine,but when I try to run on a real device I have some error:

Error:Failed to capture snapshot of input files for task 'transformClassesWithInstantRunForDebug' property 'otherFileInputs' during up-to-date check.
> Failed to create MD5 hash for file 'C:\Users\psd1-pc\AppData\Local\Android\sdk\platforms\android-21\android.jar'.

我的真实设备有 Lollipop Android,我该怎么做才能解决这个问题

my real device have Lollipop Android,what do I do for resolve this problem

谢谢.

推荐答案

启用 Instant Run 后,您需要使用相同的 api 级别构建和运行项目.使用 Instant Run 为特定 api 构建的调试应用程序仅适用于真实设备中的相同 api 级别.

With Instant Run enabled, you need to build and run the project with the same api level. A debug app build with Instant Run for a specific api will only work for the same api level in the real device.

如果您想运行该应用程序,请关闭 Instant Run,然后重新构建该应用程序.

If you want to run the app, please turn off Instant Run, then rebuild the app.

这篇关于无法为任务 android studio 捕获输入文件的快照的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 11:16