我刚刚更新了我的 android studio,现在我所有的资源都是错误的!
- 我已经调试和调试但无济于事。
- 我所有的 xmls 文件都可以,
- 所有字符串都以小写字母开头。
- 我也重启了程序
我刚刚更新了我的 android studio,现在我所有的资源都是错误的!
这是最新版本的 android studio 0.1.6 中的一个已知错误。谷歌建议了一个临时的解决方法,直到他们可以追踪问题并在下一个版本中修复。在首选项 > 编译器中关闭外部构建。
您似乎已将Android SDK Tools
22 更新到版本,但您可能尚未将 更新Android SDK Build-Tools
到最新版本。从 sdk 管理器更新它并重新启动。请参阅类似问题的答案:Eclipse give error, missing R.java file after recent update。希望这可以帮助
“设置”/“首选项”->“编译器”如果您使用 gradle,请选中“使用外部构建”,如果您不使用 gradle,请取消选中“使用外部构建”。
资料来源: https ://code.google.com/p/android/issues/detail?id=56843 https://code.google.com/p/android/issues/detail?id=56531
您是否尝试过 android studio 中的构建按钮?....使用它并单击重建项目,看看会发生什么。
当我简单地构建项目 (Ctrl+F9) 时,这个错误就消失了。
I have the same problem, all you have to do is press, "Build > Rebuild Project" before each Run or debug. I hope this error is fixed asap.
将“工具 -> Android -> SDK 管理器”更新为最新版本的工具和 SDK。
还将 android:targetSdkVersion="18" 更新为最新的 AndroidManifest.xml 并解决了该问题。
can not resolve R error
由于 build.gradle 文件在 Android Studio中发生,应该安装最小 sdkminSdkVersion
和sdk 平台,如果有更新,请先更新它。targetSdkVersion
另一件事buildToolsVersion
,android.support:appcompat
应该清楚,所以没有发现歧义。您可以从 build.gradle 或 from File -> Project Structure -> app
and手动设置这些Flavors
。
R 无法解决的其他一些原因可能是由于.xml
文件中的错误。大多数时候我用这些方法解决我的问题。