Android Studio导入项目常出现的问题

android -No resource found that matches the given name 'android:TextAppearance.Material.Inverse'

build.gradle(root)

删除android()

ext {

compileSdkVersion = 23

buildToolsVersion = "24.0.2" }

Error:Failed to complete Gradle execution. Cause: services.gradle.org

build.gradle(lib) android()中添加

compileSdkVersion rootProject.ext.compileSdkVersion

buildToolsVersion rootProject.ext.buildToolsVersion

猜你喜欢

转载自imzhq.iteye.com/blog/2321979