ShowCustomerCenter
Contract for launching the Customer Center.
Usage:
class MyActivity : ComponentActivity() {
private val customerCenter = registerForActivityResult(ShowCustomerCenter()) {
// Handle the dismissal
}
fun showCustomerCenter() {
customerCenter.launch()
}
}
Content copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
open fun getSynchronousResult(context: Context, input: Unit): ActivityResultContract.SynchronousResult<Unit>?
Link copied to clipboard