0

I am facing a problem of my android app(online streaming app). I had to make an app in which performs online video streaming. It has firebase phone number authentication. my problem is that the debug app is working properly but the signed apk is not working properly at authentication section. it does not send verification code. please help me out configure it..

UTTAM KUMAR
  • 80
  • 1
  • 9

2 Answers2

1

Often, this kind of problem is linked with the android permissions. The app works fine in debug mode because android is "allowing" your phone by default. Try to add the "android.permission.INTERNET" in your android manifest and try to deploy the app again.

Hope this is helpful, good luck

0

You need to add SHA1 of your release key store file in firebase console.

you can get SHA1 with follow command

keytool -list -v -keystore {keystore_name} -alias {alias_name}

eg:

keytool -list -v -keystore C:\Users\me\Desktop\release.jks -alias sample
Uma Achanta
  • 3,289
  • 3
  • 18
  • 46