As pointed out by @jokuskay, my code was using the incorrect BuildConfig
class. For some reason, I was importing Google's Firebase BuildConfig
into my activity
with the line of code import com.google.firebase.BuildConfig
. That was a mistake and simply deleting this line fixed the issue.
Thanks @jokuskay!