蓝牙 – Android Things中的WiFi P2P网络

我想创建一个使用
Android Things(5.1)和一些Raspberry Pi 3或者使用蓝牙的P2P WiFi网络.我按照Android Developer部分
https://developer.android.com/guide/topics/connectivity/wifip2p.html中的指南进行操作,因此我的MainActivity如下所示:

    私有类MainActtivity {
    私人WifiP2pManager mManager;
    ….
        @覆盖
        public void onCreate(Bundle savedInstances){
            mManager =(WifiP2pManager)
            getSystemService(Context.WIFI_P2P_SERVICE);
            ….
        }
    }

但是,当我尝试运行应用程序时,启用了WiFI,SystemServiceRegistry会显示一条消息说明

No service published for: wifip2p

 并且未检索到WifiP2pManager.

我该如何解决这个问题?有人知道是否有可能使用WiFi Direct和Android Things创建WiFi P2P网络?

最佳答案 截至目前(Android东西稳定版1.0)RPI3B不支持WifiP2P,因此尝试使用
Google NearBy 2.0 API替代我认为它将满足您的需求.

点赞