Information:Gradle tasks [:app:assembleDebug]

来源:互联网 发布:网银淘宝买东西的流程 编辑:程序博客网 时间:2024/06/05 09:37

在Android Studio编译的时候会出现下面的异常提示

Information:Gradle tasks [:app:assembleDebug]
E:\Workspace\android\ZhengBaJing2\app\build\intermediates\res\merged\debug\values-v24\values-v24.xml
Error:(3) Error retrieving parent for item: No resource found that matches the given name ‘android:TextAppearance.Material.Widget.Button.Borderless.Colored’.
Error:(4) Error retrieving parent for item: No resource found that matches the given name ‘android:TextAppearance.Material.Widget.Button.Colored’.
Error:(3) Error retrieving parent for item: No resource found that matches the given name ‘android:TextAppearance.Material.Widget.Button.Borderless.Colored’.
Error:(4) Error retrieving parent for item: No resource found that matches the given name ‘android:TextAppearance.Material.Widget.Button.Colored’.
Error:Execution failed for task ‘:app:processDebugResources’.
‘>com.android.ide.common.process.ProcessException: Failed to execute aapt

解决办法:
将compileSdkVersion, buildToolsVersion 和 下面的(V7,V4等)包版本调成一致即可
compile ‘com.android.support:support-v4:25.3.1’
compile ‘com.android.support:appcompat-v7:25.3.1’
compile ‘com.android.support:design:25.3.1’
compile ‘com.android.support:recyclerview-v7:25.3.1’

阅读全文
0 0
原创粉丝点击