Android Studio无法创建没有错误的新项目

时间:2015-08-22 02:03:53

标签: android android-studio gradle android-gradle

当我尝试创建一个新项目时,gradle构建失败并给出了这3个错误:

C:\Users\Ian\AndroidStudioProjects\BusApp\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.0.0\res\values-v23\values-v23.xml

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 'C:\Users\Ian\AppData\Local\Android\sdk\build-tools\23.0.0\aapt.exe'' finished with non-zero exit value 1

如果有帮助的话,我会将我的思想设定为15,目标为22。

4 个答案:

答案 0 :(得分:2)

尝试将compileSdkVersion更改为23

答案 1 :(得分:1)

尝试将compileSdkVersion设置为23,这解决了我的问题。有关详细信息,请访问此YouTube视频 Youtube Link

答案 2 :(得分:0)

我曾经遇到同样的错误,你必须重新启动android studio它会再次构建gradle,这对我有用。 有些时候因为记忆原因工作室没有成功建立gradle所以尝试重新启动android工作室可能这也适合你。

答案 3 :(得分:0)

您正在build.gradle

中使用支持库v23 必须使用

compileSdkVersion 23

无法使用api22编译支持库v23。

您可以在这里找到"official" post about it