naeemqaswar
9/4/2019 - 11:54 AM

"Package android.support.annotation does not exist"

error: package android.support.annotation does not exist import android.support.annotation.Nullable; ^

1- Go to: /android/app/build.gradle file
2- Under "dependencies" section of build.gradle file, place following line:
implementation "androidx.annotation:annotation:1.1.0"
3- Place importing as following in your target file:
import androidx.annotation.Nullable;