Skip to content

Instantly share code, notes, and snippets.

@enieber
Last active August 6, 2019 20:07
Show Gist options
  • Save enieber/e34d110f9d12c83bccc25aee67b874f4 to your computer and use it in GitHub Desktop.
Save enieber/e34d110f9d12c83bccc25aee67b874f4 to your computer and use it in GitHub Desktop.

change from:

import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.annotation.IntDef;
import android.support.v4.util.Pools;

to:

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.IntDef;
import androidx.core.util.Pools;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment