I updated android support library dependencies in build.gradle
file then
When I am trying to build project its showing below error:
AAPT: libpng error: Not a PNG file
:app:mergeDebugResources FAILED
Error:Execution failed for task ':app:mergeDebugResources'.
> Some file crunching failed, see logs for details
It's working fine when I am using old dependencies:
old dependencies:
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:percent:23.1.1'
compile 'com.android.support:support-v13:23.1.1'
new dependencies:
compile 'com.android.support:support-v4:24.0.0-alpha1'
compile 'com.android.support:appcompat-v7:24.0.0-alpha1'
compile 'com.android.support:design:24.0.0-alpha1'
compile 'com.android.support:percent:24.0.0-alpha1'
compile 'com.android.support:support-v13:24.0.0-alpha1'
Can anyone help me out from this issue?
Thank you very much for your time and assistance in this matter.