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
Using google play services version 8.1.0 instead of 8.4.0 solved on my side
Thank you @zmarties for the answer , I want to add the details and links
Thank you for the above answers .
I did the some thing as you did , but I found gradle can solve dependencies, in External Libraries i cannot find support-v4-23.0.0,support-v7-23.0.0 and other lib which the version is 23.0.0. then I reverted back to compile 'com.android.support:support-v4:22.2.0', the problem solver @mraviator
Did you change the theme view in the main layout from the design tab? Try changing it again to a Sherlock theme view at the design tab.
I found that I could build ActionBarSherlock using SDK 23 if I made the following two sets of changes:
FloatMath
calls with their corresponding Math
callsmFragments
field with a local variable fragments
initialized via getActiveFragments(null)
, and then change the mFragment
references to use the local variable 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.