任务执行失败app processdebugresources无法解析xml资源文件android studio

jhiyze9q  于 2024-01-04  发布在  Android
关注(0)|答案(3)|浏览(214)

我得到这个错误.我能做什么.请帮助我是新的android studio.我已经尽了最大努力来解决这个问题,但我无法解决这个请帮助.我得到这个错误.错误:任务执行失败“:libraryMaskLayout:processLoggResources”.
无法分析XML资源文件“D:\Android\FastChargerAdmob\libraryMaskLayout\build\intermediates\softles\debug\res\values\values.xml”


编辑:我更新了帖子,并发布了我项目中的所有gradle文件。build.gradle(项目)

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. }
  6. dependencies {
  7. classpath 'com.android.tools.build:gradle:3.0.0'
  8. classpath 'com.google.gms:google-services:3.0.0'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. jcenter()
  16. }
  17. }
  18. task clean(type: Delete) {
  19. delete rootProject.buildDir
  20. }

字符串
Build.gradle(模块:app)

  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion '26.0.2'
  5. defaultConfig {
  6. applicationId "com.TuAndroidPR.fast.Chargin"
  7. minSdkVersion 15
  8. targetSdkVersion 25
  9. versionCode 2
  10. versionName "2.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled true
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. compile fileTree(dir: 'libs', include: ['*.jar'])
  22. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  23. exclude group: 'com.android.support', module: 'support-annotations'
  24. })
  25. compile 'com.android.support:appcompat-v7:25.0.0'
  26. testCompile 'junit:junit:4.12'
  27. compile project(':libraryMaskLayout')
  28. compile fileTree(dir: 'libs', include: ['*.jar'])
  29. testCompile 'junit:junit:4.12'
  30. compile 'com.android.support:appcompat-v7:25.0.0'
  31. compile 'com.android.support:design:25.0.0'
  32. compile 'com.github.lzyzsd:circleprogress:1.1.0@aar'
  33. compile 'com.android.support:cardview-v7:25.0.0'
  34. compile 'cn.fanrunqi:waveprogress:1.0.1'
  35. compile 'com.squareup.picasso:picasso:2.5.2'
  36. //noinspection GradleCompatible
  37. compile 'com.google.android.gms:play-services-ads:10.0.1'
  38. compile 'com.google.firebase:firebase-ads:10.0.1'
  39. compile 'com.google.firebase:firebase-core:10.0.1'
  40. }
  41. apply plugin: 'com.google.gms.google-services'


Build.gradle(模块:libraryMaskLayout)

  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion '26.0.2'
  5. defaultConfig {
  6. compileOptions {
  7. sourceCompatibility JavaVersion.VERSION_1_7
  8. targetCompatibility JavaVersion.VERSION_1_7
  9. }
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  15. }
  16. }
  17. }
  18. dependencies {
  19. compile files('libs/annotations-12.0.jar')
  20. }

ryevplcw

ryevplcw1#

我已经解决了这个问题,从strings.xml中手动删除了额外的引号。
如何解决ArrayIndexOutOfBoundsException:Index 2048 out of bounds for length 2048 in AndroidStudio

wbgh16ku

wbgh16ku2#

我在升级我的buildToolsVersion时遇到了这个问题。如果其他人也遇到了这个问题,下面是我解决它的方法:
我为gradle打开了--stacktrace,发现它在上面的“无法解析XML资源文件”之后出现了以下错误:

  1. Error:java.lang.IllegalArgumentException:
  2. Error: ' ' is not a valid resource name character

字符串
debug/res/values/values.xml中,我发现:

  1. <enum name="DARKEN " value="2"/>


根据Android XML规则,“元素名称”不能包含空格("DARKEN ")。
在搜索"DARKEN "时,我在一个XML文件中找到了一个<enum>名称,并将"DARKEN "设置为XML元素名称。

wb1gzix0

wb1gzix03#

lib build.gradle
dependencies { ... compile 'com.android.support:support-annotations:27.0.1' }

相关问题