We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently to add a URL Configuration, you have to do this:
val extraIntent = intent.getParcelableExtra<Intent>("extra_intent") extraIntent?.verify(this) { urlConfiguration { "insecureapp.com".allowHost() }.addConfiguration() actionOnSuccess = { startActivity(extraIntent) finish() } actionOnFailure = { throw RuntimeException("Please don't hack my app") } }
Instead, it should just be added automatically by adding a URL configuration function to the builder. e.g. it should look like this:
extraIntent?.verify(this) { urlConfiguration { "insecureapp.com".allowHost() } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently to add a URL Configuration, you have to do this:
Instead, it should just be added automatically by adding a URL configuration function to the builder. e.g. it should look like this:
The text was updated successfully, but these errors were encountered: