Android: java.land.NoSuchFieldError after update to SDK 23

后端 未结 6 2337
孤独总比滥情好
孤独总比滥情好 2020-12-16 10:44

I updated to SDK 23 and updated the gradle.build to API 23, support library to 23.0.0, etc and am now getting the following error when trying to run the app (compiles just f

6条回答
  •  太阳男子
    2020-12-16 11:11

    i had the same problem when import project eclipse to Android Studio

    This is best solution for me

    I found that I could build ActionBarSherlock using SDK 23 if I made the following two sets of changes:

    in AnimatorProxy.java, replace FloatMath calls with their corresponding Math calls - i change FloatMath - to Math

    in Waston Class i had the error - mFragments.isadded So, i replace the follow code instead of checking

    mFragments.isadded != null

    to

    mFragments.getActiveFragments(mCreatedMenus)

    everywher when it required

    i had solve these issues.

提交回复
热议问题