进行运行Debug包遇到这问题,很是郁闷:
Error:A problem was found with the configuration of task ':packageDebug'. > File 'D:\AndroidWork\zzmobile\myproject\build\intermediates\res\resources-debug-stripped.ap_' specified for property 'resourceFile' does not exist.
最后找到了解决问题的方案:
关闭Debug模式下的混淆开关和移除无用资源开关,如下所示:
我本地的大致如下,开启了混淆
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
}
debug {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
}
}
关闭debug模式下的混淆开关和移除无用资源开关,即将minifyEnabled true改为minifyEnabled false,shrinkResources true改为shrinkResources false 即可
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
}
debug {
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
}
}
最后重新编译即可
如果有其他方案也可以贴出来大家一起交流哦!
文章评论
Niin voitteko kertoa miten tämä liittyy tehotuotantoon muuten kuin rehun osmhla?Salaoneltalan ei ole terveelle ihmiselle vaarallinen ja se hoidetaan antibiooteilla (onko se sitten hyvä että käyttää antibiotteja on toinen juttu) ja salmonella kuolee kun sitä kuumentaa. En siis ymmärrä tätä vouhkausta asiasta. Ja ei, en väitä että tämä epidemia on yhdentekevä tai että salmonella tervetuloa tai että tehotuotanto rocks (koska it sucks). Minusta tämä vaan on saanut suhteettomat mittasuhteet tämä asia. Ehkä en tiedä jotain oleellista tai en ymmärrä sitä.
It's a pluraese to find someone who can identify the issues so clearly
Thanks for finally talking about >解决specified for property resourceFile does not exist.
- 魅力程序猿 <Liked it!