我刚刚安装了Android Studio(直到现在才使用eclipse)。我开始了一个新项目。 SDK 4.0版(也试过不同的版本)。主要活动空白。
项目初始化后,我在" Gradle Build"窗口出现以下错误:
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'E:\Android\sdk\build-tools\23.0.0\aapt.exe'' finished with non-zero exit value 1
当然,我无法运行该项目。这里没什么特别的。一切都开箱即用"。
这里有什么问题?
答案 0 :(得分:1)
您的编译SDK版本必须与支持库的已安装版本类似。
我假设您使用的是支持库的第23版,因为您安装了最新的Android Studio。因此,您还需要使用Android SDK的第23版编译项目。
打开SDK Manager并安装最新的API(API 23)。如果有更新,请更新Android支持库和Android支持存储库,然后创建新项目并将目标版本设置为API 23。
希望对你有用。