这是我的应用程式-

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'
}


这是我的项目摇篮-

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文件中的错误,我不知道它来自何处;如下图所示-
java - Android Studio Project无法正确编译-LMLPHP

有人可以帮我解决这个问题吗?否则任何重定向到任何链接都将有所帮助。我是新来的,正在学习Android,所以了解的不多。

谢谢。

最佳答案

如果要使用v23资源,请使用v23 SDK。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"


您仍然可以在具有API 13..21的设备上运行代码

并更新dependencies { ... }中的所有行


com.android.support库到:23.2.1
play-services:8.4.0(也不确定当您分别使用地图,附近地区和appindexing时为什么需要所有播放服务)

08-17 11:45