<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Matter: Search for device then Can't find device in Smart Home Developer Forum</title>
    <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601815#M6590</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, can we connect via call or any other resources that can I find fast response?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested with 2.4GHz network but still not getting success&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="media_20240301_121720_6751052478259326853.png" style="width: 450px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51631iFE06C82948E54925/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="media_20240301_121720_6751052478259326853.png" alt="media_20240301_121720_6751052478259326853.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="media_20240301_121720_2088930651450527080.png" style="width: 450px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51630iC3082B8F4C52C5E0/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="media_20240301_121720_2088930651450527080.png" alt="media_20240301_121720_2088930651450527080.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and also I shared some code snippet when I click on add device&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="click on add device button" style="width: 806px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51632i283445D655AB74AE/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2024-03-01 at 12.05.18 PM.png" alt="click on add device button" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;click on add device button&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE -&lt;/P&gt;&lt;P&gt;I am using all the functions, classes and requests from the sample Matter app, I have not made any changes in my app.&lt;BR /&gt;If I need to change something for physical device (Tapo Light L535E) in my app then please guide me on that changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is my service class -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;@AndroidEntryPoint&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;class &lt;/SPAN&gt;AppCommissioningService : Service()&lt;SPAN&gt;, &lt;/SPAN&gt;CommissioningService.Callback {&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;@Inject &lt;/SPAN&gt;&lt;SPAN&gt;internal lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;devicesRepository&lt;/SPAN&gt;: DevicesRepository&lt;BR /&gt;    &lt;SPAN&gt;@Inject &lt;/SPAN&gt;&lt;SPAN&gt;internal lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;devicesStateRepository&lt;/SPAN&gt;: DevicesStateRepository&lt;BR /&gt;    &lt;SPAN&gt;@Inject &lt;/SPAN&gt;&lt;SPAN&gt;internal lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;chipClient&lt;/SPAN&gt;: ChipClient&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;private val &lt;/SPAN&gt;&lt;SPAN&gt;serviceJob &lt;/SPAN&gt;= &lt;SPAN&gt;Job&lt;/SPAN&gt;()&lt;BR /&gt;    &lt;SPAN&gt;private val &lt;/SPAN&gt;&lt;SPAN&gt;serviceScope &lt;/SPAN&gt;= &lt;SPAN&gt;CoroutineScope&lt;/SPAN&gt;(Dispatchers.&lt;SPAN&gt;Main &lt;/SPAN&gt;+ &lt;SPAN&gt;serviceJob&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;private lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;commissioningServiceDelegate&lt;/SPAN&gt;: CommissioningService&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onCreate&lt;/SPAN&gt;() {&lt;BR /&gt;        &lt;SPAN&gt;super&lt;/SPAN&gt;.onCreate()&lt;BR /&gt;        &lt;SPAN&gt;// May be invoked without MainActivity being called to initialize APP_NAME.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        // So do it here as well.&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;APP_NAME &lt;/SPAN&gt;= getString(R.string.&lt;SPAN&gt;app_name&lt;/SPAN&gt;)&lt;BR /&gt;        Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"onCreate()"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;commissioningServiceDelegate &lt;/SPAN&gt;= CommissioningService.Builder(&lt;SPAN&gt;this&lt;/SPAN&gt;).setCallback(&lt;SPAN&gt;this&lt;/SPAN&gt;).build()&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onBind&lt;/SPAN&gt;(intent: Intent?): IBinder? {&lt;BR /&gt;        Log.d(&lt;SPAN&gt;"onBind():"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;" intent [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;intent&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;return &lt;/SPAN&gt;&lt;SPAN&gt;commissioningServiceDelegate&lt;/SPAN&gt;.asBinder()&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onStartCommand&lt;/SPAN&gt;(intent: Intent?&lt;SPAN&gt;, &lt;/SPAN&gt;flags: Int&lt;SPAN&gt;, &lt;/SPAN&gt;startId: Int): Int {&lt;BR /&gt;&lt;BR /&gt;        Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"onStartCommand(): intent [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;intent&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] flags [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;flags&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] startId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;startId&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;return super&lt;/SPAN&gt;.onStartCommand(intent&lt;SPAN&gt;, &lt;/SPAN&gt;flags&lt;SPAN&gt;, &lt;/SPAN&gt;startId)&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onDestroy&lt;/SPAN&gt;() {&lt;BR /&gt;        &lt;SPAN&gt;super&lt;/SPAN&gt;.onDestroy()&lt;BR /&gt;&lt;BR /&gt;        Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"onDestroy()"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;serviceJob&lt;/SPAN&gt;.cancel()&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onCommissioningRequested&lt;/SPAN&gt;(metadata: CommissioningRequestMetadata) {&lt;BR /&gt;        Log.d(&lt;SPAN&gt;"Request----&amp;gt;"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"*** onCommissioningRequested ***:&lt;/SPAN&gt;&lt;SPAN&gt;\n&lt;/SPAN&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;\t&lt;/SPAN&gt;&lt;SPAN&gt;deviceDescriptor: " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"deviceType [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;deviceType&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"vendorId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;vendorId&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"productId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;productId&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;\n&lt;/SPAN&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;\t&lt;/SPAN&gt;&lt;SPAN&gt;networkLocation: " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"IP address toString() [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;ipAddress&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"IP address hostAddress [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;ipAddress&lt;/SPAN&gt;.&lt;SPAN&gt;hostAddress&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"port [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;port&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;\n&lt;/SPAN&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;\t&lt;/SPAN&gt;&lt;SPAN&gt;passCode [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;passcode&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;        &lt;SPAN&gt;// CODELAB: onCommissioningRequested()&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;serviceScope&lt;/SPAN&gt;.&lt;SPAN&gt;launch &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;val &lt;/SPAN&gt;deviceId = &lt;SPAN&gt;devicesRepository&lt;/SPAN&gt;.incrementAndReturnLastDeviceId()&lt;BR /&gt;            Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                &lt;SPAN&gt;"Commissioning: App fabric -&amp;gt; ChipClient.establishPaseConnection(): deviceId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;deviceId&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;            &lt;SPAN&gt;chipClient&lt;/SPAN&gt;.awaitEstablishPaseConnection(&lt;BR /&gt;                deviceId&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;ipAddress&lt;/SPAN&gt;.&lt;SPAN&gt;hostAddress&lt;/SPAN&gt;!!&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;port&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;vendorId&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;productId&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;deviceType&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;passcode&lt;/SPAN&gt;)&lt;BR /&gt;            Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Commissioning: App fabric -&amp;gt; ChipClient.commissionDevice(): deviceId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;deviceId&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;            &lt;SPAN&gt;chipClient&lt;/SPAN&gt;.awaitCommissionDevice(deviceId&lt;SPAN&gt;, null&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;            Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Commissioning: Calling commissioningServiceDelegate.sendCommissioningComplete()"&lt;/SPAN&gt;)&lt;BR /&gt;            &lt;SPAN&gt;commissioningServiceDelegate&lt;BR /&gt;&lt;/SPAN&gt;                .sendCommissioningComplete(&lt;BR /&gt;                    CommissioningCompleteMetadata.builder().setToken(deviceId.toString()).build())&lt;BR /&gt;                .addOnSuccessListener &lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;                    Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                        &lt;SPAN&gt;"Commissioning: OnSuccess for commissioningServiceDelegate.sendCommissioningComplete()"&lt;/SPAN&gt;)&lt;BR /&gt;                &lt;SPAN&gt;}&lt;BR /&gt;&lt;/SPAN&gt;                .addOnFailureListener &lt;SPAN&gt;{ &lt;/SPAN&gt;ex &lt;SPAN&gt;-&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;                    Log.e(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Commissioning: Failed to send commissioning complete."&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;ex)&lt;BR /&gt;                &lt;SPAN&gt;}&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        }&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;// CODELAB SECTION END&lt;BR /&gt;&lt;/SPAN&gt;    }&lt;BR /&gt;}&lt;/PRE&gt;</description>
    <pubDate>Fri, 01 Mar 2024 07:06:03 GMT</pubDate>
    <dc:creator>Rgv27</dc:creator>
    <dc:date>2024-03-01T07:06:03Z</dc:date>
    <item>
      <title>Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/598129#M6514</link>
      <description>&lt;P&gt;I created matter virtual device with on/off clusters and it's working well but when I try with the physical device getting&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"Search for Devices"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Logcat:&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;runDevicesPeriodicPing deviceId [1]&lt;/P&gt;&lt;P class=""&gt;getDeviceStateOnOffCluster())&lt;/P&gt;&lt;P class=""&gt;FindOrEstablishSession: No existing OperationalSessionSetup instance found&lt;/P&gt;&lt;P class=""&gt;OperationalSessionSetup State change 1 --&amp;gt; 2&lt;/P&gt;&lt;P class=""&gt;resolve: Starting service resolution for 'F440DE2737487CDF-0000000000000001' type '_matter._tcp'&lt;/P&gt;&lt;P class=""&gt;Checking node lookup status after 202 ms&lt;/P&gt;&lt;P class=""&gt;resolve: Timing out&lt;/P&gt;&lt;P class=""&gt;ViewPostIme pointer 0&lt;/P&gt;&lt;P class=""&gt;mReversing is false. Don't call initChildren.&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;ViewPostIme pointer 1&lt;/P&gt;&lt;P class=""&gt;addDeviceButton.setOnClickListener&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: starting&lt;/P&gt;&lt;P class=""&gt;mReversing is false. Don't call initChildren.&lt;/P&gt;&lt;P class=""&gt;commissionDeviceStatus.observe: status [TaskStatus$InProgress@f100b3a]&lt;/P&gt;&lt;P class=""&gt;ShareDevice: Success getting the IntentSender: result&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [creatorPackage [com.google.android.gms]]&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: Launch GPS activity to commission device&lt;/P&gt;&lt;P class=""&gt;Recording user engagement, ms: 85765&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [null]&lt;/P&gt;&lt;P class=""&gt;handleWindowFocusChanged: 0 0 call from&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;onPreWindowFocus: skipped, hasWindowFocusfalse mHasImeFocus=true&lt;/P&gt;&lt;P class=""&gt;I&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;onPostWindowFocus: skipped, hasWindowFocusfalse mHasImeFocus=true&lt;/P&gt;&lt;P class=""&gt;Connecting to remote service&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;Activity paused,&lt;/P&gt;&lt;P class=""&gt;Connected to remote service&lt;/P&gt;&lt;P class=""&gt;Processing queued up service tasks: 2&lt;/P&gt;&lt;P class=""&gt;onCreate()&lt;/P&gt;&lt;P class=""&gt;intent [Intent { commissioning.AppCommissioningService }]&lt;/P&gt;&lt;P class=""&gt;Local module descriptor class for com.google.android.gms.googlecertificates not found.&lt;/P&gt;&lt;P class=""&gt;Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:7&lt;/P&gt;&lt;P class=""&gt;Selected remote version of com.google.android.gms.googlecertificates, version &amp;gt;= 7&lt;/P&gt;&lt;P class=""&gt;Dynamite loader version &amp;gt;= 2, using loadModule2NoCrashUtils&lt;/P&gt;&lt;P class=""&gt;ClassLoaderContext classpath size mismatch. expected=12, found=17&lt;/P&gt;&lt;P class=""&gt;Input channel destroyed: 'ClientS', fd=123&lt;/P&gt;&lt;P class=""&gt;handleAppVisibility mAppVisible = true visible = false&lt;/P&gt;&lt;P class=""&gt;Relayout returned: old=(0,0,1080,2640) new=(0,0,1080,2640) relayoutAsync=false req=(1080,2640)8 dur=8 res=0x402 s={false 0x0} ch=true seqId=0&lt;/P&gt;&lt;P class=""&gt;stopped(true) old = false&lt;/P&gt;&lt;P class=""&gt;WindowStopped on set to true&lt;/P&gt;&lt;P class=""&gt;Relayout returned: old=(0,0,1080,2640) new=(0,0,1080,2640) relayoutAsync=false req=(1080,2640)8 dur=7 res=0x402 s={false 0x0} ch=false seqId=0&lt;/P&gt;&lt;P class=""&gt;2024-02-20 11:20:55.247&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;1872-3273&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;WindowManager &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;system_server&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;E&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;win=Window{b21c0a u0 } destroySurfaces: appStopped=true cleanupOnResume=false win.mWindowRemovalAllowed=false win.mRemoveOnExit=false win.mViewVisibility=8 caller=com.android.server.wm.ActivityRecord.destroySurfaces:6900 com.android.server.wm.ActivityRecord.destroySurfaces:6881 com.android.server.wm.ActivityRecord.activityStopped:7576 com.android.server.wm.ActivityClientController.activityStopped:310 android.app.IActivityClientController$Stub.onTransact:702 com.android.server.wm.ActivityClientController.onTransact:175 android.os.Binder.execTransactInternal:1380&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;Application going to the background&lt;/P&gt;&lt;P class=""&gt;Application backgrounded at: timestamp_millis: 1708408254693&lt;/P&gt;&lt;P class=""&gt;Checking node lookup status after 15015 ms&lt;/P&gt;&lt;P class=""&gt;OperationalSessionSetup[1:0000000000000001]: operational discovery failed: 32&lt;/P&gt;&lt;P class=""&gt;Unable to get connected device with nodeId 1.&lt;/P&gt;&lt;P class=""&gt;connectedDevicePointer.&lt;/P&gt;&lt;P class=""&gt;runDevicesPeriodicUpdate: cannot get device on/off state -&amp;gt; OFFLINE&lt;/P&gt;&lt;P class=""&gt;runDevicesPeriodicPing deviceId [1] [false] [false]&lt;/P&gt;&lt;P class=""&gt;devicesUiModelFlow changed ***&lt;/P&gt;&lt;P class=""&gt;processDevices() deviceId: [1]}&lt;/P&gt;&lt;P class=""&gt;deviceId setting its own value for state&lt;/P&gt;&lt;P class=""&gt;Inactivity, disconnecting from the service&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;and&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;"Can't find device"&amp;nbsp;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;and some instructions page visible witch is already tried by many times&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 06:30:13 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/598129#M6514</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-20T06:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599088#M6525</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/516158"&gt;@Rgv27&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;The log you shared tells us that commissioning failed at operational discovery, i.e. we did not get a response for mDNS queries after the device joined WiFi.&amp;nbsp; We might be needing additional details regarding the physical device build (SDK commit, SOC, example used , etc). Also, could you inspect wireshark captured during commissioning.Without these details it is difficult for us to do a proper investigation of your issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 19:27:39 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599088#M6525</guid>
      <dc:creator>sipriyadarshi</dc:creator>
      <dc:date>2024-02-22T19:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599235#M6528</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, Can you please tell me about the hub, is that require for connectivity with the single matter physical device to my app ?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 06:59:10 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599235#M6528</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-23T06:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599236#M6529</link>
      <description>&lt;P&gt;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, and also the certification of app is require on google console for commissioning of devices ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 07:19:59 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599236#M6529</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-23T07:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599344#M6530</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, I am using Matter SDK with the Matter sample app and ChipTool&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 14:51:34 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599344#M6530</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-23T14:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599423#M6533</link>
      <description>&lt;P&gt;Hub is not required for commissioning except for thread devices which require some thread infrastructure. However, if you want to control the device from GHA you need a Google&amp;nbsp; Hub.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 18:44:08 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599423#M6533</guid>
      <dc:creator>sipriyadarshi</dc:creator>
      <dc:date>2024-02-23T18:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599425#M6534</link>
      <description>&lt;P&gt;You don't need to go through any certification process for the sample app.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 18:46:11 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/599425#M6534</guid>
      <dc:creator>sipriyadarshi</dc:creator>
      <dc:date>2024-02-23T18:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/600372#M6571</link>
      <description>&lt;P class=""&gt;Thanks for reply&lt;SPAN class=""&gt;&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;but&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;I didn’t find any log except I had mentioned above&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;So, Can you please describe some more details that are required for commissioning that how can I get a physical device ready for commissioning ?&lt;/P&gt;&lt;P class=""&gt;I have a Tapo light as a physical device.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 07:32:49 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/600372#M6571</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-26T07:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/600426#M6572</link>
      <description>&lt;P class=""&gt;&lt;STRONG&gt;I got some different message&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Logcat&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: starting&lt;/P&gt;&lt;P class=""&gt;mReversing is false. Don't call initChildren.&lt;/P&gt;&lt;P class=""&gt;commissionDeviceStatus.observe: status []&lt;/P&gt;&lt;P class=""&gt;ShareDevice: Success getting the IntentSender: result [IntentSender{}]&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [creatorPackage [com.google.android.gms]]&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: Launch GPS activity to commission device&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [null]&lt;/P&gt;&lt;P class=""&gt;Connecting to remote service&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;Activity paused, time: 1210054748&lt;/P&gt;&lt;P class=""&gt;Connected to remote service&lt;/P&gt;&lt;P class=""&gt;Processing queued up service tasks: 2&lt;/P&gt;&lt;P class=""&gt;Compat change id reported: 150939131; UID 11471; state: ENABLED&lt;/P&gt;&lt;P class=""&gt;onCreate()&lt;/P&gt;&lt;P class=""&gt;intent [Intent { .commissioning.AppCommissioningService }]&lt;/P&gt;&lt;P class=""&gt;handleAppVisibility mAppVisible = true visible = false&lt;/P&gt;&lt;P class=""&gt;Relayout returned: old=(0,0,1080,2640) new=(0,0,1080,2640) relayoutAsync=false req=(1080,2640)8 dur=8 res=0x402 s={false 0x0} ch=true seqId=0&lt;/P&gt;&lt;P class=""&gt;Local module descriptor class for com.google.android.gms.googlecertificates not found.&lt;/P&gt;&lt;P class=""&gt;Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:7&lt;/P&gt;&lt;P class=""&gt;Selected remote version of com.google.android.gms.googlecertificates, version &amp;gt;= 7&lt;/P&gt;&lt;P class=""&gt;Dynamite loader version &amp;gt;= 2, using loadModule2NoCrashUtils&lt;/P&gt;&lt;P class=""&gt;Input channel destroyed: 'ClientS', fd=135&lt;/P&gt;&lt;P class=""&gt;stopped(true) old = false&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;Application going to the background&lt;/P&gt;&lt;P class=""&gt;Application backgrounded at: timestamp_millis: 1708941845549&lt;/P&gt;&lt;P class=""&gt;Inactivity, disconnecting from the service&lt;/P&gt;&lt;P class=""&gt;Late-enabling -Xcheck:jni&lt;/P&gt;&lt;P class=""&gt;Using CollectorTypeCC GC.&lt;/P&gt;&lt;P class=""&gt;setConscryptValidator&lt;/P&gt;&lt;P class=""&gt;setConscryptValidator - put&lt;/P&gt;&lt;P class=""&gt;Compat change id reported: 171979766; UID 11471; state: ENABLED&lt;/P&gt;&lt;P class=""&gt;Compat change id reported: 242716250; UID 11471; state: ENABLED&lt;/P&gt;&lt;P class=""&gt;Currently set values for:&lt;/P&gt;&lt;P class=""&gt;angle_gl_driver_selection_pkgs=[]&lt;/P&gt;&lt;P class=""&gt;angle_gl_driver_selection_values=[]&lt;/P&gt;&lt;P class=""&gt;com.slappi is not listed in per-application setting&lt;/P&gt;&lt;P class=""&gt;App is not on the allowlist for updatable production driver.&lt;/P&gt;&lt;P class=""&gt;Compat change id reported: 183155436; UID 11471; state: ENABLED&lt;/P&gt;&lt;P class=""&gt;Device unlocked: initializing all Firebase APIs for app [DEFAULT]&lt;/P&gt;&lt;P class=""&gt;FirebaseApp initialization successful&lt;/P&gt;&lt;P class=""&gt;QUALCOMM build &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: 12ae96cb63, I409bbc12eb&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Build Date &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: 09/13/23&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;OpenGL ES Shader Compiler Version: EV031.35.01.10&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Local Branch &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;:&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Remote Branch&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;:&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Remote Branch&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;:&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Reconstruct Branch &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;:&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;Build Config &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: S P 10.0.7 AArch64&lt;/P&gt;&lt;P class=""&gt;Driver Path&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: /vendor/lib64/egl/libGLESv2_adreno.so&lt;/P&gt;&lt;P class=""&gt;PFP: 0x016dc112, ME: 0x00000000&lt;/P&gt;&lt;P class=""&gt;Selected remote version of com.google.android.gms.measurement.dynamite, version &amp;gt;= 102&lt;/P&gt;&lt;P class=""&gt;Dynamite loader version &amp;gt;= 2, using loadModule2NoCrashUtils&lt;/P&gt;&lt;P class=""&gt;Checking for metadata for AppLocalesMetadataHolderService : Service not found&lt;/P&gt;&lt;P class=""&gt;ClassLoader referenced unknown path:&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;onActivityCreated&lt;/P&gt;&lt;P class=""&gt;setWindowBackground: isPopOver=false color=fffef7ff d=android.graphics.drawable.ColorDrawable@8e650d5&lt;/P&gt;&lt;P class=""&gt;Accessing hidden method Landroid/view/View;-&amp;gt;computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (unsupported, reflection, allowed)&lt;/P&gt;&lt;P class=""&gt;Accessing hidden method Landroid/view/ViewGroup;-&amp;gt;makeOptionalFitsSystemWindows()V (unsupported, reflection, allowed)&lt;/P&gt;&lt;P class=""&gt;Compat change id reported: 210923482; UID 11471; state: ENABLED&lt;/P&gt;&lt;P class=""&gt;App measurement collection enabled&lt;/P&gt;&lt;P class=""&gt;App measurement enabled for app package, google app id:, 1:775073109900:android:88525231b865fc4da928a9&lt;/P&gt;&lt;P class=""&gt;App measurement initialized, version: 85000&lt;/P&gt;&lt;P class=""&gt;To enable faster debug mode event logging run:&lt;/P&gt;&lt;P class=""&gt;Compat change id reported: 237531167; UID 11471; state: DISABLED&lt;/P&gt;&lt;P class=""&gt;Access denied finding property "persist.dm.passive.display_brightness"&lt;/P&gt;&lt;P class=""&gt;Access denied finding property "persist.dm.passive.ambient_brightness"&lt;/P&gt;&lt;P class=""&gt;[NativeCFMS] BpCustomFrequencyManager::BpCustomFrequencyManager()&lt;/P&gt;&lt;P class=""&gt;Resetting session stitching token to not null&lt;/P&gt;&lt;P class=""&gt;synced displayState. AttachInfo displayState=2&lt;/P&gt;&lt;P class=""&gt;setView = com.android.internal.policy.DecorView@91a1e58 TM=true&lt;/P&gt;&lt;P class=""&gt;Starting IDS observe window&lt;/P&gt;&lt;P class=""&gt;App has not finished training&lt;/P&gt;&lt;P class=""&gt;Connecting to remote service&lt;/P&gt;&lt;P class=""&gt;Closing IDS observe window&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;Activity resumed, time: 1210117805&lt;/P&gt;&lt;P class=""&gt;Tag Manager is not found and thus will not be used&lt;/P&gt;&lt;P class=""&gt;mThreadedRenderer.initialize() mSurface={isValid=true 0xb400007379265cf0} hwInitialized=true&lt;/P&gt;&lt;P class=""&gt;Setup new sync=wmsSync-ViewRootImpl@3bbcf7d[]#0&lt;/P&gt;&lt;P class=""&gt;Creating new active sync group ViewRootImpl@3bbcf7d[SplashActivity]#1&lt;/P&gt;&lt;P class=""&gt;registerCallbacksForSync syncBuffer=false&lt;/P&gt;&lt;P class=""&gt;Received frameDrawingCallback syncResult=0 frameNum=1.&lt;/P&gt;&lt;P class=""&gt;mWNT: t=0xb4000071f92508b0 mBlastBufferQueue=0xb4000071d924f950 fn= 1 caller= android.view.ViewRootImpl$8.onFrameDraw:13674 android.view.ThreadedRenderer$1.onFrameDraw:788 &amp;lt;bottom of call stack&amp;gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;Setting up sync and frameCommitCallback&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;onFrameAvailable the first frame is available&lt;/P&gt;&lt;P class=""&gt;Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true&lt;/P&gt;&lt;P class=""&gt;CFMS:: SetUp Pid : 14166&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Tid : 14205&lt;/P&gt;&lt;P class=""&gt;reportDrawFinished&lt;/P&gt;&lt;P class=""&gt;registerCallbackForPendingTransactions&lt;/P&gt;&lt;P class=""&gt;applyRequestedVisibilityToControl: visible=true, type=statusBars, host=&lt;/P&gt;&lt;P class=""&gt;applyRequestedVisibilityToControl: visible=true, type=navigationBars, host=&lt;/P&gt;&lt;P class=""&gt;Connected to remote service&lt;/P&gt;&lt;P class=""&gt;Processing queued up service tasks: 5&lt;/P&gt;&lt;P class=""&gt;handleWindowFocusChanged: 1 0 call from android.view.ViewRootImpl.-$$Nest$mhandleWindowFocusChanged:0&lt;/P&gt;&lt;P class=""&gt;mThreadedRenderer.initializeIfNeeded()#2 mSurface={isValid=true 0xb400007379265cf0}&lt;/P&gt;&lt;P class=""&gt;startInputInner - Id : 0&lt;/P&gt;&lt;P class=""&gt;startInputInner - IInputMethodManagerGlobalInvoker.startInputOrWindowGainedFocus&lt;/P&gt;&lt;P class=""&gt;startInputInner - Id : 0&lt;/P&gt;&lt;P class=""&gt;applyRequestedVisibilityToControl: visible=false, type=ime, host=&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;Recording user engagement, ms: 2003&lt;/P&gt;&lt;P class=""&gt;onActivityCreated&lt;/P&gt;&lt;P class=""&gt;Activity paused, time: 1210119808&lt;/P&gt;&lt;P class=""&gt;onCreate bundle is: null&lt;/P&gt;&lt;P class=""&gt;Compat change id reported: 247079863; UID 11471; state: ENABLED&lt;/P&gt;&lt;P class=""&gt;commissionDeviceStatus.observe: status [com.TaskStatus$NotStarted@71c33c5]&lt;/P&gt;&lt;P class=""&gt;onResume(): intent [Intent { cmp= }]&lt;/P&gt;&lt;P class=""&gt;Invocation: Main&lt;/P&gt;&lt;P class=""&gt;Starting periodic ping on device with interval [2] seconds&lt;/P&gt;&lt;P class=""&gt;Activity resumed, time: 1210119969&lt;/P&gt;&lt;P class=""&gt;startDevicesPeriodicPing every 10 seconds&lt;/P&gt;&lt;P class=""&gt;[NativeCFMS] BpCustomFrequencyManager::BpCustomFrequencyManager()&lt;/P&gt;&lt;P class=""&gt;synced displayState. AttachInfo displayState=2&lt;/P&gt;&lt;P class=""&gt;setView = com.android.internal.policy.DecorView@36b5a6c TM=true&lt;/P&gt;&lt;P class=""&gt;devicesUiModelFlow changed ***&lt;/P&gt;&lt;P class=""&gt;updateUi [DevicesUiModel(devices=[], showCodelabInfo=true, showOfflineDevices=true)]&lt;/P&gt;&lt;P class=""&gt;mReversing is false. Don't call initChildren.&lt;/P&gt;&lt;P class=""&gt;Relayout returned: old=(0,0,1080,2640) new=(0,0,1080,2640) relayoutAsync=false req=(1080,2640)0 dur=8 res=0x403 s={true 0xb400007379278f80} ch=true seqId=0&lt;/P&gt;&lt;P class=""&gt;performConfigurationChange setNightDimText nightDimLevel=0&lt;/P&gt;&lt;P class=""&gt;mThreadedRenderer.initialize() mSurface={isValid=true 0xb400007379278f80} hwInitialized=true&lt;/P&gt;&lt;P class=""&gt;Setup new sync=wmsSync-ViewRootImpl@e8081c3[BaseActivity]#2&lt;/P&gt;&lt;P class=""&gt;Creating new active sync group ViewRootImpl@e8081c3[BaseActivity]#3&lt;/P&gt;&lt;P class=""&gt;registerCallbacksForSync syncBuffer=false&lt;/P&gt;&lt;P class=""&gt;Received frameDrawingCallback syncResult=0 frameNum=1.&lt;/P&gt;&lt;P class=""&gt;mWNT: t=0xb4000071f9258730 mBlastBufferQueue=0xb4000071d9246990 fn= 1 caller= android.view.ViewRootImpl$8.onFrameDraw:13674 android.view.ThreadedRenderer$1.onFrameDraw:788 &amp;lt;bottom of call stack&amp;gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;Setting up sync and frameCommitCallback&lt;/P&gt;&lt;P class=""&gt;[ViewRootImpl@e8081c3[BaseActivity]#1](f:0,a:0,s:0) onFrameAvailable the first frame is available&lt;/P&gt;&lt;P class=""&gt;Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true&lt;/P&gt;&lt;P class=""&gt;CFMS:: SetUp Pid : 14166&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Tid : 14205&lt;/P&gt;&lt;P class=""&gt;reportDrawFinished&lt;/P&gt;&lt;P class=""&gt;handleWindowFocusChanged: 0 0 call from android.view.ViewRootImpl.-$$Nest$mhandleWindowFocusChanged:0&lt;/P&gt;&lt;P class=""&gt;onPreWindowFocus: skipped, hasWindowFocusfalse mHasImeFocus=true&lt;/P&gt;&lt;P class=""&gt;onPostWindowFocus: skipped, hasWindowFocusfalse mHasImeFocus=true&lt;/P&gt;&lt;P class=""&gt;registerCallbackForPendingTransactions&lt;/P&gt;&lt;P class=""&gt;mWNT: t=0xb4000071f925b330 mBlastBufferQueue=0xb4000071d9246990 fn= 2 caller= android.view.ViewRootImpl$6.onFrameDraw:5582 android.view.ViewRootImpl$2.onFrameDraw:2131 android.view.ThreadedRenderer$1.onFrameDraw:788&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;mThreadedRenderer.initializeIfNeeded()#2 mSurface={isValid=true 0xb400007379278f80}&lt;/P&gt;&lt;P class=""&gt;startInputInner - Id : 0&lt;/P&gt;&lt;P class=""&gt;startInputInner - IInputMethodManagerGlobalInvoker.startInputOrWindowGainedFocus&lt;/P&gt;&lt;P class=""&gt;applyRequestedVisibilityToControl: visible=false, type=ime, host=com.slappi/com.slappi.base.BaseActivity&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;handleAppVisibility mAppVisible = true visible = false&lt;/P&gt;&lt;P class=""&gt;stopped(true) old = false&lt;/P&gt;&lt;P class=""&gt;WindowStopped on set to true&lt;/P&gt;&lt;P class=""&gt;dispatchDetachedFromWindow&lt;/P&gt;&lt;P class=""&gt;Input channel destroyed: '325b4fb', fd=110&lt;/P&gt;&lt;P class=""&gt;Inactivity, disconnecting from the service&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;Cleared Reference was only reachable from finalizer (only reported once)&lt;/P&gt;&lt;P class=""&gt;Input channel destroyed: 'ClientS', fd=141&lt;/P&gt;&lt;P class=""&gt;startInputInner - Id : 0&lt;/P&gt;&lt;P class=""&gt;startInputInner - IInputMethodManagerGlobalInvoker.startInputOrWindowGainedFocus&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;ViewPostIme pointer 0&lt;/P&gt;&lt;P class=""&gt;mReversing is false. Don't call initChildren.&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;ViewPostIme pointer 1&lt;/P&gt;&lt;P class=""&gt;addDeviceButton.setOnClickListener&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: starting&lt;/P&gt;&lt;P class=""&gt;mReversing is false. Don't call initChildren.&lt;/P&gt;&lt;P class=""&gt;commissionDeviceStatus.observe: status [InProgress@3ac5515]&lt;/P&gt;&lt;P class=""&gt;ShareDevice: Success getting the IntentSender: result [IntentSender]&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [creatorPackage [com.google.android.gms]]&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: Launch GPS activity to commission device&lt;/P&gt;&lt;P class=""&gt;Recording user engagement, ms: 35345&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [null]&lt;/P&gt;&lt;P class=""&gt;onPreWindowFocus: skipped, hasWindowFocusfalse mHasImeFocus=true&lt;/P&gt;&lt;P class=""&gt;Connecting to remote service&lt;/P&gt;&lt;P class=""&gt;onCreate()&lt;/P&gt;&lt;P class=""&gt;intent [Intent { pkg=.commissioning.AppCommissioningService }]&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;Activity paused, time: 1210155315&lt;/P&gt;&lt;P class=""&gt;Connected to remote service&lt;/P&gt;&lt;P class=""&gt;Processing queued up service tasks: 2&lt;/P&gt;&lt;P class=""&gt;Local module descriptor class for com.google.android.gms.googlecertificates not found.&lt;/P&gt;&lt;P class=""&gt;Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:7&lt;/P&gt;&lt;P class=""&gt;Selected remote version of com.google.android.gms.googlecertificates, version &amp;gt;= 7&lt;/P&gt;&lt;P class=""&gt;Dynamite loader version &amp;gt;= 2, using loadModule2NoCrashUtils&lt;/P&gt;&lt;P class=""&gt;Input channel destroyed: 'ClientS', fd=124&lt;/P&gt;&lt;P class=""&gt;handleAppVisibility mAppVisible = true visible = false&lt;/P&gt;&lt;P class=""&gt;stopped(true) old = false&lt;/P&gt;&lt;P class=""&gt;onDisplayChanged oldDisplayState=2 newDisplayState=2&lt;/P&gt;&lt;P class=""&gt;Application going to the background&lt;/P&gt;&lt;P class=""&gt;Application backgrounded at: timestamp_millis:&lt;/P&gt;&lt;P class=""&gt;Inactivity, disconnecting from the service&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Cann’t connect to wifi("name") network&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;Check that your device can work with this network type and try again&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;then, how can I check my device work with which network type?&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 11:48:28 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/600426#M6572</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-26T11:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601168#M6579</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, any update on this?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 06:41:12 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601168#M6579</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-28T06:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601206#M6580</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="When I tap the pluse + button on sample app using matter sdk, scanner opened" style="width: 409px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51598i72FE6B055580BD19/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Scanning.JPEG" alt="When I tap the pluse + button on sample app using matter sdk, scanner opened" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;When I tap the pluse + button on sample app using matter sdk, scanner opened&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Scanning done with code using Tapo Light L535E" style="width: 409px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51599i44D91E6422086A45/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Scanning_done.JPEG" alt="Scanning done with code using Tapo Light L535E" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Scanning done with code using Tapo Light L535E&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Blutooth_permission_allowed.JPEG" style="width: 409px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51603i64D628BF954E9C35/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Blutooth_permission_allowed.JPEG" alt="Blutooth_permission_allowed.JPEG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Searching for the device" style="width: 409px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51600iA947D7F2B2FB1E13/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Searching.JPEG" alt="Searching for the device" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Searching for the device&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="getting this page after searching" style="width: 409px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51602i0180572435782703/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Not_Connected.JPEG" alt="getting this page after searching" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;getting this page after searching&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, please find details via the screens flow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Whats the issue in that?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 10:16:58 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601206#M6580</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-02-28T10:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601726#M6587</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/516158"&gt;@Rgv27&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Tapo only supports 2.4 GHz. Based on your screenshot "Can't connect to 5exceptions_Mobile_Team5G", looks like you have a split network. Try testing everything using a 2.4GHz network only.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 22:19:26 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601726#M6587</guid>
      <dc:creator>sipriyadarshi</dc:creator>
      <dc:date>2024-02-29T22:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601815#M6590</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, can we connect via call or any other resources that can I find fast response?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested with 2.4GHz network but still not getting success&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="media_20240301_121720_6751052478259326853.png" style="width: 450px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51631iFE06C82948E54925/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="media_20240301_121720_6751052478259326853.png" alt="media_20240301_121720_6751052478259326853.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="media_20240301_121720_2088930651450527080.png" style="width: 450px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51630iC3082B8F4C52C5E0/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="media_20240301_121720_2088930651450527080.png" alt="media_20240301_121720_2088930651450527080.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and also I shared some code snippet when I click on add device&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="click on add device button" style="width: 806px;"&gt;&lt;img src="https://www.googlenestcommunity.com/t5/image/serverpage/image-id/51632i283445D655AB74AE/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2024-03-01 at 12.05.18 PM.png" alt="click on add device button" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;click on add device button&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE -&lt;/P&gt;&lt;P&gt;I am using all the functions, classes and requests from the sample Matter app, I have not made any changes in my app.&lt;BR /&gt;If I need to change something for physical device (Tapo Light L535E) in my app then please guide me on that changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is my service class -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;@AndroidEntryPoint&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;class &lt;/SPAN&gt;AppCommissioningService : Service()&lt;SPAN&gt;, &lt;/SPAN&gt;CommissioningService.Callback {&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;@Inject &lt;/SPAN&gt;&lt;SPAN&gt;internal lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;devicesRepository&lt;/SPAN&gt;: DevicesRepository&lt;BR /&gt;    &lt;SPAN&gt;@Inject &lt;/SPAN&gt;&lt;SPAN&gt;internal lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;devicesStateRepository&lt;/SPAN&gt;: DevicesStateRepository&lt;BR /&gt;    &lt;SPAN&gt;@Inject &lt;/SPAN&gt;&lt;SPAN&gt;internal lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;chipClient&lt;/SPAN&gt;: ChipClient&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;private val &lt;/SPAN&gt;&lt;SPAN&gt;serviceJob &lt;/SPAN&gt;= &lt;SPAN&gt;Job&lt;/SPAN&gt;()&lt;BR /&gt;    &lt;SPAN&gt;private val &lt;/SPAN&gt;&lt;SPAN&gt;serviceScope &lt;/SPAN&gt;= &lt;SPAN&gt;CoroutineScope&lt;/SPAN&gt;(Dispatchers.&lt;SPAN&gt;Main &lt;/SPAN&gt;+ &lt;SPAN&gt;serviceJob&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;private lateinit var &lt;/SPAN&gt;&lt;SPAN&gt;commissioningServiceDelegate&lt;/SPAN&gt;: CommissioningService&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onCreate&lt;/SPAN&gt;() {&lt;BR /&gt;        &lt;SPAN&gt;super&lt;/SPAN&gt;.onCreate()&lt;BR /&gt;        &lt;SPAN&gt;// May be invoked without MainActivity being called to initialize APP_NAME.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        // So do it here as well.&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;APP_NAME &lt;/SPAN&gt;= getString(R.string.&lt;SPAN&gt;app_name&lt;/SPAN&gt;)&lt;BR /&gt;        Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"onCreate()"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;commissioningServiceDelegate &lt;/SPAN&gt;= CommissioningService.Builder(&lt;SPAN&gt;this&lt;/SPAN&gt;).setCallback(&lt;SPAN&gt;this&lt;/SPAN&gt;).build()&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onBind&lt;/SPAN&gt;(intent: Intent?): IBinder? {&lt;BR /&gt;        Log.d(&lt;SPAN&gt;"onBind():"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;" intent [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;intent&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;return &lt;/SPAN&gt;&lt;SPAN&gt;commissioningServiceDelegate&lt;/SPAN&gt;.asBinder()&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onStartCommand&lt;/SPAN&gt;(intent: Intent?&lt;SPAN&gt;, &lt;/SPAN&gt;flags: Int&lt;SPAN&gt;, &lt;/SPAN&gt;startId: Int): Int {&lt;BR /&gt;&lt;BR /&gt;        Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"onStartCommand(): intent [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;intent&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] flags [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;flags&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] startId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;startId&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;return super&lt;/SPAN&gt;.onStartCommand(intent&lt;SPAN&gt;, &lt;/SPAN&gt;flags&lt;SPAN&gt;, &lt;/SPAN&gt;startId)&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onDestroy&lt;/SPAN&gt;() {&lt;BR /&gt;        &lt;SPAN&gt;super&lt;/SPAN&gt;.onDestroy()&lt;BR /&gt;&lt;BR /&gt;        Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"onDestroy()"&lt;/SPAN&gt;)&lt;BR /&gt;        &lt;SPAN&gt;serviceJob&lt;/SPAN&gt;.cancel()&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;override fun &lt;/SPAN&gt;&lt;SPAN&gt;onCommissioningRequested&lt;/SPAN&gt;(metadata: CommissioningRequestMetadata) {&lt;BR /&gt;        Log.d(&lt;SPAN&gt;"Request----&amp;gt;"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"*** onCommissioningRequested ***:&lt;/SPAN&gt;&lt;SPAN&gt;\n&lt;/SPAN&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;\t&lt;/SPAN&gt;&lt;SPAN&gt;deviceDescriptor: " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"deviceType [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;deviceType&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"vendorId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;vendorId&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"productId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;productId&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;\n&lt;/SPAN&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;\t&lt;/SPAN&gt;&lt;SPAN&gt;networkLocation: " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"IP address toString() [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;ipAddress&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"IP address hostAddress [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;ipAddress&lt;/SPAN&gt;.&lt;SPAN&gt;hostAddress&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;] " &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"port [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;port&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;\n&lt;/SPAN&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;+&lt;BR /&gt;                    &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;\t&lt;/SPAN&gt;&lt;SPAN&gt;passCode [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;metadata.&lt;SPAN&gt;passcode&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;        &lt;SPAN&gt;// CODELAB: onCommissioningRequested()&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;serviceScope&lt;/SPAN&gt;.&lt;SPAN&gt;launch &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;val &lt;/SPAN&gt;deviceId = &lt;SPAN&gt;devicesRepository&lt;/SPAN&gt;.incrementAndReturnLastDeviceId()&lt;BR /&gt;            Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                &lt;SPAN&gt;"Commissioning: App fabric -&amp;gt; ChipClient.establishPaseConnection(): deviceId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;deviceId&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;            &lt;SPAN&gt;chipClient&lt;/SPAN&gt;.awaitEstablishPaseConnection(&lt;BR /&gt;                deviceId&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;ipAddress&lt;/SPAN&gt;.&lt;SPAN&gt;hostAddress&lt;/SPAN&gt;!!&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;networkLocation&lt;/SPAN&gt;.&lt;SPAN&gt;port&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;vendorId&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;productId&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;deviceDescriptor&lt;/SPAN&gt;.&lt;SPAN&gt;deviceType&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                metadata.&lt;SPAN&gt;passcode&lt;/SPAN&gt;)&lt;BR /&gt;            Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Commissioning: App fabric -&amp;gt; ChipClient.commissionDevice(): deviceId [&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;deviceId&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;]"&lt;/SPAN&gt;)&lt;BR /&gt;            &lt;SPAN&gt;chipClient&lt;/SPAN&gt;.awaitCommissionDevice(deviceId&lt;SPAN&gt;, null&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;            Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Commissioning: Calling commissioningServiceDelegate.sendCommissioningComplete()"&lt;/SPAN&gt;)&lt;BR /&gt;            &lt;SPAN&gt;commissioningServiceDelegate&lt;BR /&gt;&lt;/SPAN&gt;                .sendCommissioningComplete(&lt;BR /&gt;                    CommissioningCompleteMetadata.builder().setToken(deviceId.toString()).build())&lt;BR /&gt;                .addOnSuccessListener &lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;                    Log.d(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                        &lt;SPAN&gt;"Commissioning: OnSuccess for commissioningServiceDelegate.sendCommissioningComplete()"&lt;/SPAN&gt;)&lt;BR /&gt;                &lt;SPAN&gt;}&lt;BR /&gt;&lt;/SPAN&gt;                .addOnFailureListener &lt;SPAN&gt;{ &lt;/SPAN&gt;ex &lt;SPAN&gt;-&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;                    Log.e(&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Commissioning: Failed to send commissioning complete."&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;ex)&lt;BR /&gt;                &lt;SPAN&gt;}&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;        }&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;// CODELAB SECTION END&lt;BR /&gt;&lt;/SPAN&gt;    }&lt;BR /&gt;}&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Mar 2024 07:06:03 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601815#M6590</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-03-01T07:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601818#M6591</link>
      <description>&lt;P&gt;&lt;STRONG&gt;This is latest Logs -&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;W&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;Frame time is 0.089496 ms in the future!&lt;SPAN class=""&gt;&amp;nbsp; &lt;/SPAN&gt;Check that graphics HAL is generating vsync timestamps using the correct timebase.&lt;/P&gt;&lt;P class=""&gt;addDeviceButton.setOnClickListener&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: starting&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;commissionDeviceStatus.observe: status []&lt;/P&gt;&lt;P class=""&gt;ShareDevice: Success getting the IntentSender: result [IntentSender]&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [creatorPackage [com.google.android.gms]]&lt;/P&gt;&lt;P class=""&gt;CommissionDevice: Launch GPS activity to commission device&lt;/P&gt;&lt;P class=""&gt;Recording user engagement, ms: 13103&lt;/P&gt;&lt;P class=""&gt;commissionDeviceIntentSender.observe is called with [null]&lt;/P&gt;&lt;P class=""&gt;Connecting to remote service&lt;/P&gt;&lt;P class=""&gt;Connection attempt already in progress&lt;/P&gt;&lt;P class=""&gt;Activity paused, time: 3750429&lt;/P&gt;&lt;P class=""&gt;onCreate()&lt;/P&gt;&lt;P class=""&gt;intent [Intent commissioning.AppCommissioningService ]&lt;/P&gt;&lt;P class=""&gt;Connected to remote service&lt;/P&gt;&lt;P class=""&gt;Processing queued up service tasks: 2&lt;/P&gt;&lt;P class=""&gt;Local module descriptor class for com.google.android.gms.googlecertificates not found.&lt;/P&gt;&lt;P class=""&gt;Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:7&lt;/P&gt;&lt;P class=""&gt;Selected remote version of com.google.android.gms.googlecertificates, version &amp;gt;= 7&lt;/P&gt;&lt;P class=""&gt;Dynamite loader version &amp;gt;= 2, using loadModule2NoCrashUtils&lt;/P&gt;&lt;P class=""&gt;Application going to the background&lt;/P&gt;&lt;P class=""&gt;Application backgrounded at: timestamp_millis: 1709277938430&lt;/P&gt;&lt;P class=""&gt;Inactivity, disconnecting from the service&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 07:35:51 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/601818#M6591</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-03-01T07:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/602808#M6596</link>
      <description>&lt;P&gt;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/137766"&gt;@sipriyadarshi&lt;/a&gt;&amp;nbsp;, please update on this ?&lt;BR /&gt;and&amp;nbsp;&lt;SPAN&gt;can you have any other resources that can I find quick response?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 05:47:05 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/602808#M6596</guid>
      <dc:creator>Rgv27</dc:creator>
      <dc:date>2024-03-05T05:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Matter: Search for device then Can't find device</title>
      <link>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/719317#M8732</link>
      <description>&lt;P&gt;I bought a new lap top and now my chromecast can't find any devices. It used to find my living room tv. now nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 21:16:00 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Smart-Home-Developer-Forum/Matter-Search-for-device-then-Can-t-find-device/m-p/719317#M8732</guid>
      <dc:creator>dmcgregor5571</dc:creator>
      <dc:date>2025-05-22T21:16:00Z</dc:date>
    </item>
  </channel>
</rss>

