AAPT错误:资源可绘制/ ...未找到

Luc*_*ier 16 resources android aapt aapt2

在最近升级我的android工作室之后,我无法再构建我的项目了.

每次执行构建时,我都会遇到以下错误:

error: resource drawable/splash_screen (aka com.whereisthemonkey.nowalism:drawable/splash_screen) not found.
Message{kind=ERROR, text=error: resource drawable/splash_screen (aka com.whereisthemonkey.nowalism:drawable/splash_screen) not found., sources=[C:\Users\Lucas\.gradle\caches\transforms-1\files-1.1\appcompat-v7-27.1.1.aar\cf575568f869a44c685b16e47de83a28\res\values\values.xml:1632:5-84], original message=, tool name=Optional.of(AAPT)}
Run Code Online (Sandbox Code Playgroud)

即使文件splash_screen.xml存在于drawable文件夹下,此错误仍然存​​在.

重建,清理项目和使缓存无效不起作用!

添加android.enableAapt2 = false行并不能解决真正的问题,因此我宁愿找到问题的根源.

以下显示了我的gradle.build文件:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'kotlin-kapt'//https://github.com/bumptech/glide/issues/1939

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.3"
    defaultConfig {
        applicationId "com.whereisthemonkey.nowalism"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    // Keep the following configuration in order to target Java 8.
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    sourceSets {
        main {
            res.srcDirs += [
                    'src/main/res-backgrounds',
                    'src/main/res-jobs',
            ]
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    implementation 'com.android.support:recyclerview-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'

    //Do not update due to dex error
    implementation 'org.apache.commons:commons-lang3:3.6'

    //Do not update due to dex error
    implementation 'com.google.firebase:firebase-auth:11.8.0'
    implementation 'com.google.firebase:firebase-messaging:11.8.0'
    implementation 'com.google.android.gms:play-services:11.8.0'

    implementation 'com.aurelhubert:ahbottomnavigation:2.1.0'
    implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
    implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'

    implementation 'com.amitshekhar.android:android-networking:1.0.1'
    implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'

    implementation 'com.github.ome450901:SimpleRatingBar:1.4.1'

    implementation 'com.sothree.slidinguppanel:library:3.4.0'

    implementation 'com.github.esafirm.android-image-picker:imagepicker:1.12.0'
    //Do not update due to dex error
    implementation 'com.theartofdev.edmodo:android-image-cropper:2.5.1'

    implementation 'com.github.bumptech.glide:glide:4.6.1'
    kapt 'com.github.bumptech.glide:compiler:4.6.1'//https://github.com/bumptech/glide/issues/1939

    implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'

    implementation 'de.hdodenhof:circleimageview:2.2.0'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

    implementation 'com.firebaseui:firebase-ui-auth:3.2.1'
    implementation 'com.android.support:support-v4:27.1.1'
}


apply plugin: 'com.google.gms.google-services'
Run Code Online (Sandbox Code Playgroud)

任何帮助都非常感谢.

Moh*_*sen 36

就我而言,这是一个xml选择器。在第一行中,我有两个(感谢在我的文件之间复制粘贴):

<?xml version="1.0" encoding="utf-8"?>
Run Code Online (Sandbox Code Playgroud)

而Android Studio则未发出任何警告。删除它可以解决此问题,但之后需要进行完整的构建。

  • 请注意,这可能不在明显给出错误的文件中!检查您最近在项目中添加或修改的任何 XML 文件。 (6认同)

Luc*_*ier 16

我修复了错误,这可能来自错误格式的复制xml文件(可能是一些行结束的混淆)

重写那些修复错误,虽然Android Studio显示另一个文件作为问题的根源,这实际上与错误本身无关

  • 我有很多 xml 文件...我怎样才能找到格式错误的文件? (3认同)
  • 我有一个类似的错误,该错误是由于xml格式错误引起的。不幸的是,Android Studio没有显示警告。 (2认同)

Anb*_*oub 7

在我的情况下,我删除了命名空间声明重复,例如xmlns:android="http://schemas.android.com/apk/res/android"
,我使用分析 -> 检查代码工具在日志中显示错误,然后我解决了可绘制资源中其他文件 xml 中的错误。


小智 5

我面临同样的问题,最后通过

分析>检查代码

我的应用程序在 XML 文件之一中缺少结束标记,只需尝试分析 > 检查代码,它会将您重定向到确切的错误。