On This Page
Enroll a Device
Before starting the device enrollment process, make sure the Tap to Pay Ready
app is installed on the Android device. Download the app using this Google Play Store link. If the app is not
installed before device enrollment, you will be prompted to install it during the
enrollment process. To learn more about the Tap to Pay Ready app, see PCI MPoC Standard Compliance.
Use the information in this
section to enroll a device using the
enrollDevice
activity. This
activity presents a merchant-facing UI that enables users to enroll a new device or
a previously enrolled device by selecting or entering the device’s serial
number.- Use theenrollDeviceactivity to enroll the device.val mposUi: MposUi = ... mposUi.tapToPhone.enrollDevice(activity, requestCode) ... override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) { if (EnrollResultIntent.isEnrollmentSuccessful(resultCode, data)) { onDeviceEnrolled() } super.onActivityResult(requestCode, resultCode, data) }
Step Result
Theenrollactivity returns the result Intent.