Skip to content

5.0.10 release notes

Choose a tag to compare

@jwfing jwfing released this 29 Jan 03:22
· 1178 commits to master since this release

Break changes

  • None

New features

  • add new instance method to AVUser:
public void getFollowersAndFolloweesInBackground(final FollowersAndFolloweesCallback callback)
  • add new static method to AVUser in order to compatible with old Android SDK.
public static <T extends AVUser> T cast(AVUser user, Class<T> clazz);
public static AVUser becomeWithSessionToken(String sessionToken);
public static <T extends AVUser> T becomeWithSessionToken(String sessionToken, Class<T> clazz);

Optimization and fixed bugs

  • change AVUser#getQuery declaration as following to compatible with old Android SDK:
public static AVQuery<AVUser> getQuery()