我得到这个错误.我能做什么.请帮助我是新的android studio.我已经尽了最大努力来解决这个问题,但我无法解决这个请帮助.我得到这个错误.错误:任务执行失败“:libraryMaskLayout:processLoggResources”.
无法分析XML资源文件“D:\Android\FastChargerAdmob\libraryMaskLayout\build\intermediates\softles\debug\res\values\values.xml”
编辑:我更新了帖子,并发布了我项目中的所有gradle文件。build.gradle(项目)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
字符串
Build.gradle(模块:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.TuAndroidPR.fast.Chargin"
minSdkVersion 15
targetSdkVersion 25
versionCode 2
versionName "2.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.0.0'
testCompile 'junit:junit:4.12'
compile project(':libraryMaskLayout')
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:25.0.0'
compile 'com.github.lzyzsd:circleprogress:1.1.0@aar'
compile 'com.android.support:cardview-v7:25.0.0'
compile 'cn.fanrunqi:waveprogress:1.0.1'
compile 'com.squareup.picasso:picasso:2.5.2'
//noinspection GradleCompatible
compile 'com.google.android.gms:play-services-ads:10.0.1'
compile 'com.google.firebase:firebase-ads:10.0.1'
compile 'com.google.firebase:firebase-core:10.0.1'
}
apply plugin: 'com.google.gms.google-services'
型
Build.gradle(模块:libraryMaskLayout)
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
defaultConfig {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile files('libs/annotations-12.0.jar')
}
型
3条答案
按热度按时间ryevplcw1#
我已经解决了这个问题,从strings.xml中手动删除了额外的引号。
如何解决ArrayIndexOutOfBoundsException:Index 2048 out of bounds for length 2048 in AndroidStudio
wbgh16ku2#
我在升级我的
buildToolsVersion
时遇到了这个问题。如果其他人也遇到了这个问题,下面是我解决它的方法:我为gradle打开了
--stacktrace
,发现它在上面的“无法解析XML资源文件”之后出现了以下错误:字符串
在
debug/res/values/values.xml
中,我发现:型
根据Android XML规则,“元素名称”不能包含空格(
"DARKEN "
)。在搜索
"DARKEN "
时,我在一个XML文件中找到了一个<enum>
名称,并将"DARKEN "
设置为XML元素名称。wb1gzix03#
lib build.gradle
dependencies { ... compile 'com.android.support:support-annotations:27.0.1' }