I commission the matter device using goggle play service using private fun commissionDevice() {
val request: CommissioningRequest = CommissioningRequest.builder().build()
Matter.getCommissioningClient(this)
.commissionDevice(request)
.addOnSuccessListener { result ->
commissioningLauncher.launch(IntentSenderRequest.Builder(result).build())
}
}
after commission success not able to find commissioned device in goggle home app. is there any Method need to call after commission success to register device in google home app, I want to commission matter device in goggle fabric from my app and device can control by using goggle Home app
After commission success matter device should be visible and controle by using goggle home app
user5610789 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.