我的Android Studio工作正常。但是当我尝试使用Master-Detail Flow布局创建一个新项目时,我遇到了这些错误。
现在我创建的任何项目都会给我带来同样的错误。
C:\Users\Lucas\Documents\PopularMovies2\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.1.1\res\values-v23\values-v23.xml
Error:(1) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Error:(1) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
我该怎么办?
这是Gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.example.lucas.popularmovies2"
minSdkVersion 10
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
}
感谢。
答案 0 :(得分:1)
如果您使用图书馆com.android.support:appcompat-v7:23.1.1
和com.android.support:support-v4:23.1.1
,请尝试使用buildToolsVersion
,compileSdkVersion
和targetSdkVersion
= 23:
...
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.lucas.popularmovies2"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
...
此外,您可以将appcompat版本更改回22.2.1
或更少
答案 1 :(得分:1)
您的问题是您对compileSdkVersion 22的编译,但支持库需要版本23作为您的gradle文件。支持库使用sdk版本。所以v4:23表示compileSdkVersion 23.所以在gradle compileSdkVersion 22中更改为compileSdkVersion 23