这是我的app gradle -
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.1"
defaultConfig {
applicationId "com.projects.nalin.parking"
minSdkVersion 13
targetSdkVersion 21
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile ('com.google.android.gms:play-services:8.4.0'){
exclude group: 'com.google.guava'
}
compile 'com.google.android.gms:play-services-maps:8.4.0'
compile 'com.google.android.gms:play-services-nearby:8.1.0'
compile 'com.google.android.gms:play-services-appindexing:8.1.0'
compile 'com.android.support:support-v4:21.0.3'
}
这是我的项目gradle -
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
它在v23 \ values-v23.xml文件中显示错误,我不知道它来自哪里;如下图所示 -
有人可以帮我解决这个问题吗?或任何重定向到任何链接将有所帮助。我是新手,学习Android,所以不太了解。
感谢。
答案 0 :(得分:1)
如果要使用v23资源,请使用v23 SDK。
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package datastax-ddc
您仍然可以在使用API 13..21
的设备上运行代码并更新apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
dependencies { ... }
库到com.android.support
:23.2.1
到play-services
(另外,当你单独使用地图,附近和appindexing时,也不确定为什么你需要所有游戏服务)答案 1 :(得分:0)
您正在指定基于V23的样式,但您的targetSdkVersion为21.尝试将其设置为23.
此外,打开Android SDK管理器并检查AppCompat或任何相关内容是否有任何更新