Gradle build error: SAXParseException

耗尽温柔 提交于 2019-12-10 20:53:04

问题


on building the app, i get following error:

Error:org.xml.sax.SAXParseException; lineNumber: 0; columnNumber: 0; 
cvc-pattern-valid: Value 'build-tools;23.0.0 rc3' 
is not facet-valid with respect to pattern '[a-zA-Z0-9_\-;.]+' for type 'segmentListType'.

build.gradle of module level gradle:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "ms.demo.map"
        minSdkVersion 9
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.google.android.gms:play-services-maps:8.4.0'
}

The error remains even after cleaning the app. The structure of package does not match the applicationId described in gradle file. I am using latest version of Android Studio (2.0 Preview 9).


回答1:


The error itself clearly explains what is wrong here: is not facet-valid with respect to pattern '[a-zA-Z0-9_\-;.]+' for type 'segmentListType'.

Just remove the space before apply plugin: 'com.android.application' and rebuild the project again.




回答2:


I have same problem after updating android studio 2.0 beta 2 and gradle. for solution please follow bellow steps

  1. Navigate to SDK Path.
  2. Open Build-tools directory.
  3. Remove 23.0.0-preview from build-tools directory.
  4. Rename build-tools-21.1.2 to 21.1.2

Done.




回答3:


I encountered this problem also after updating to latest gradle. Simply go to $ANDROID_HOME/build-tools/and remove the 23.0.0 rc3 directory fixed the errors.



来源:https://stackoverflow.com/questions/35115114/gradle-build-error-saxparseexception

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!