[Internal] Use AnimatorSet#playTogether without workarounds on API 23+ by pubiqq · Pull Request #4601 · material-components/material-components-android

From a semantic standpoint, there is no significant difference between "for API ≥ 23, we invoke the platform implementation" and "for API ≥ 23, we invoke the implementation for API ≥ 23 (Api23Impl), which is the platform implementation". Even in the sample from the official guidelines, the platform method is called through an intermediate class.

But if you really want to, sure, you can edit my implementation and inline the platform call directly. Moreover, you can even remove all Api*Impl entirely and just use the platform call, like this:

@RestrictTo(Scope.LIBRARY_GROUP)
public class AnimatorSetCompat {

  public static void playTogether(@NonNull AnimatorSet animatorSet, @NonNull List<Animator> items) {
    animatorSet.playTogether(items);
  }
}

since the library no longer supports platforms prior to Marshmallow.