forgot to remove dummy values

This commit is contained in:
Henrik Lepson 2021-11-08 20:26:17 +02:00
parent f0c7ab96bb
commit d60cecdd26
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ class MainActivity : AppCompatActivity() {
val launchIntent = Intent()
launchIntent.setClassName("com.tarkvaraprojekt.mobileauthapp", "com.tarkvaraprojekt.mobileauthapp.MainActivity")
launchIntent.putExtra("action", "auth")
launchIntent.putExtra("challenge", "challengerValue")
launchIntent.putExtra("authUrl", "authUrl is here")
launchIntent.putExtra("challenge", challenge)
launchIntent.putExtra("authUrl", authUrl)
launchIntent.putExtra("mobile", true)
authLauncher.launch(launchIntent)
}