Skip to content

Instantly share code, notes, and snippets.

@Younes-Charfaoui
Created September 12, 2019 00:27
Show Gist options
  • Save Younes-Charfaoui/d9fcdc60f67948d13091f8290dc007b4 to your computer and use it in GitHub Desktop.
Save Younes-Charfaoui/d9fcdc60f67948d13091f8290dc007b4 to your computer and use it in GitHub Desktop.
class PhoneVerificationActivity : AppCompatActivity(), PhoneCallbacks.PhoneCallbacksListener {
private lateinit var auth: FirebaseAuth
private var storedVerificationId: String? = null
private lateinit var resendToken: PhoneAuthProvider.ForceResendingToken
override fun onCreate(savedInstanceState: Bundle?) {
....
auth = FirebaseAuth.getInstance()
auth.setLanguageCode(Locale.getDefault().language)
val phoneCallbacks = PhoneCallbacks(this)
...
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment