2017-09-25 194 views
0

我原本以为是正确的Strategy.P2P_CLUSTER连接,而是我得到:的附近连接2.0是无法连接到同行

D/Meshy: onEndpointFound (we want to connect to someone!) (endpointId=CL36, serviceId=meshy.SERVICE_ID, endpointName=365589) 
W/Meshy: acceptConnection failed with 8011 STATUS_ENDPOINT_UNKNOWN 

这是奇怪的,从来没有人说“不”连接请求。也许我的生命周期错了?

val mEndpointDiscoveryCallback = object : EndpointDiscoveryCallback() { 
     // We found someone to connect to! 
     override fun onEndpointFound(endpointId: String, info: DiscoveredEndpointInfo) { 
      Log.d(TAG, "onEndpointFound (we want to connect to someone!) (endpointId=$endpointId, serviceId=${info.serviceId}, endpointName=${info.endpointName})") 
      if (SERVICE_ID == info.serviceId) { 
       Nearby.Connections.acceptConnection(mGoogleApiClient, endpointId, mPayloadCallback) 
         .setResultCallback { status -> 
          if (!status.isSuccess) { 
           Log.w(TAG, "acceptConnection failed with ${status.toReadable()}") 
          } else { 
           Log.d(TAG, "acceptConnection success") 
           endpoints.add(endpointId) 
          } 
         } 
      } else { 
       Log.w(TAG, "onEndpointFound ignoring unknown endpointId=$endpointId serviceId=${info.serviceId}") 
      } 
     } 

回答