I have this line of code:
ActivityOptionsCompat.makeSceneTransitionAnimation(this);
//ActivityOptionsCompat.makeSceneTransitionAnimation(this, null); // tried this as well
which causes the mentioned warning. The method signature is
ActivityOptionsCompat makeSceneTransitionAnimation(Activity activity, Pair...<View, String> sharedElements)
I wish to send a null sharedElements
but my code gets a warning.