您现在的位置是:主页 > news > 手机网站优化怎么做/免费推广产品平台有哪些
手机网站优化怎么做/免费推广产品平台有哪些
admin2025/6/13 10:04:28【news】
简介手机网站优化怎么做,免费推广产品平台有哪些,如何建设招聘网站,两学一做 官方网站第一次遇到这样的问题,蒙蔽一脸,这里记录 报 Error:Error retrieving parent for item: No resource found that matches the given name “xxxxxxxxxx” 过程就不说了,直接来解决方法(个人解决的方法) 找到项目中G…
手机网站优化怎么做,免费推广产品平台有哪些,如何建设招聘网站,两学一做 官方网站第一次遇到这样的问题,蒙蔽一脸,这里记录
报 Error:Error retrieving parent for item: No resource found that matches the given name “xxxxxxxxxx”
过程就不说了,直接来解决方法(个人解决的方法)
找到项目中G…
第一次遇到这样的问题,蒙蔽一脸,这里记录
报 Error:Error retrieving parent for item: No resource found that matches the given name “xxxxxxxxxx”
过程就不说了,直接来解决方法(个人解决的方法)
找到项目中Gradle Script
打开这个
解决前
compileSdkVersion 21implementation 'com.android.support:appcompat-v7:25.3.0'//就是这个
implementation 'com.android.support:cardview-v7:21.0.3'
implementation 'com.android.support:recyclerview-v7:21.0.3'
implementation 'com.android.support:support-v4:21.0.3'
改动后
compileSdkVersion 21implementation 'com.android.support:appcompat-v7:21.0.3'//改动后
implementation 'com.android.support:cardview-v7:21.0.3'
implementation 'com.android.support:recyclerview-v7:21.0.3'
implementation 'com.android.support:support-v4:21.0.3'
必须要
compileSdkVersion 21
implementation 'com.android.support:appcompat-v7:21.0.3'
这两个一致,然后再编译就正常了,小细节需要特别注意。