Android Gradle Build Error:Some file crunching failed、see logs for detailsの高速解決方法
エラーログ:Error:java.lang.RuntimeException:Some file crunching failed、see logs for details
ログ:
FAILRE:Build failed with an exception.
*What went wrong:
Execution failed for task':ap:mergDebugResource'.
>Error:java.lang.RuntimeException:Crunching Cruncher ic_default_homenew.png failed、see logs
*Try:
Run with--stack trace option to get the stack trace.Run with--info or--debug option to get more logout put.
解決方法は以下の通りです。
このエラーの原因はGradeを構築する時、Graadleはファイルの拡張子名を修正したかどうかをチェックします。
大半は写真に出ています。jpgは修正されました。pngはこの問題が発生します。
以上は小编が绍介したAndroid Gradle Build Error:Some file crunching failed、see logs for detailsの迅速な解决方法です。皆さんの助けになりたいです。
ログ:
FAILRE:Build failed with an exception.
*What went wrong:
Execution failed for task':ap:mergDebugResource'.
>Error:java.lang.RuntimeException:Crunching Cruncher ic_default_homenew.png failed、see logs
*Try:
Run with--stack trace option to get the stack trace.Run with--info or--debug option to get more logout put.
解決方法は以下の通りです。
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
aaptOptions {
cruncherEnabled = false
useNewCruncher = false
}
defaultConfig {
applicationId "com.security.browser.xinj"
minSdkVersion 15
targetSdkVersion 22
versionCode 2
versionName "1.0.1"
ndk {
// SO
abiFilters 'armeabi', 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
}
}
}
このエラーの原因はGradeを構築する時、Graadleはファイルの拡張子名を修正したかどうかをチェックします。
大半は写真に出ています。jpgは修正されました。pngはこの問題が発生します。
以上は小编が绍介したAndroid Gradle Build Error:Some file crunching failed、see logs for detailsの迅速な解决方法です。皆さんの助けになりたいです。