如何将Android Things mDNS主机名(Android.local)更改为其他内容

时间:2018-06-19 01:50:26

标签: android raspberry-pi adb android-things mdns

我有一个物联网项目,必须通过本地网络识别我的 RaspberryPI (其中包含 Android Things 操作系统)。

执行此操作的一种好方法是使用Android事件广播的多播DNS (mDNS)Android.local

问题是:我可以将Android.local更改为somethingelse.local,以便我没有任何冲突吗?

我知道可以使用Linux操作系统,如here所示。我可以在Android Things上做同样的事情吗?

提前致谢!

1 个答案:

答案 0 :(得分:0)

我知道 Android Things 不再受支持,但仍然......我找到了解决方案: 您可以通过 ADB 设置主机名:

adb connect x.x.x.x  # where x.x.x.x is ip address of your device                                                   
adb root
adb remount
adb shell
su
cd system
echo 'net.hostname=newHostName' >> build.prop 

echo 'net.hostname=newHostName' >> build.prop 将新行附加到 build.prop 文件.. 如果您想再次重命名,则需要在此之前删除此行