在最近升级我的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)}
即使文件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/1939androID { 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'
任何帮助都非常感谢.
解决方法:
在我的例子中,它是一个xml选择器.在第一行我有两个(感谢我的文件中的复制粘贴):
<?xml version="1.0" enCoding="utf-8"?>
并且AndroID Studio没有发出任何警告或其他内容.删除它解决了问题,但之后需要完全清理构建.
总结以上是内存溢出为你收集整理的android – AAPT错误:资源drawable / …未找到全部内容,希望文章能够帮你解决android – AAPT错误:资源drawable / …未找到所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)