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

后端 未结 6 2334
孤独总比滥情好
孤独总比滥情好 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:06

    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
    • in Watson.java, replace the use of the mFragments field with a local variable fragments initialized via getActiveFragments(null), and then change the mFragment references to use the local variable

提交回复
热议问题