java.lang.NoClassDefFoundError: Failed resolution of: Landroid/support/v4/util/ArrayMap;

后端 未结 4 1008
囚心锁ツ
囚心锁ツ 2020-12-17 10:16

Today i found this error while trying to run my app. I made the following attempts towards solving it. - First i removed multidex support, but i can still see the slices of

4条回答
  •  -上瘾入骨i
    2020-12-17 10:57

    It looks you are missing v4 support library in your app gradle dependencies. Try by adding v4 support library

    compile 'com.android.support:support-v4:25.1.1'
    

提交回复
热议问题