java.lang.NoClassDefFoundError: android.support.v7.app.AppCompatDelegateImplV14

﹥>﹥吖頭↗ 提交于 2019-12-03 17:15:24

From all the exclusions you exposed, I have to say that what I read is that you just banned support-v4 and support-v7 from your application (even from design and appcompat).

So try to keep them at the end ^^

compile 'com.android.support:appcompat-v7:22.2.0' // no exclusion

for me the solution has been adding

android:name="android.support.multidex.MultiDexApplication"

to the manifest

smoothumut

just enable the multidex. That worked for me. follow the link please https://stackoverflow.com/a/31724383/3040893

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!