Unity3D Android delepoing
Unity3D Android delepoing
关于Android开发的Unity说明很难理解和不清楚。
特别是我对 Android SDK setup 有疑问。已经写过 "If the Android device is automatically recognized by the system you still might need to update the drivers with the ones that came with the Android SDK." 我怎么知道 android 设备是否被识别?我该如何检查?
第二个问题是:"Go to Settings -> Developer options, then enable USB debugging." 那个设置在哪里?在统一编辑器中我找不到这样的东西。也许在 SDK 或其他东西中,但我不知道如何到达那里。
所以我该怎么做?如果您对 android 有任何建议,请帮忙。
Unity intructions abouts Android developement is hard to understand and unclear.
同意。
How I can even know if android device is recognized? How should I check it?
写入终端adb devices
。如果输出列表为空,您应该安装最新的驱动程序。
(您的计算机可能无法识别 adb
。它是 android/sdk/platform-tools
中的可执行文件。将此路径添加到您的系统路径,因为这些可执行文件是部署到您的设备所必需的。)
USB debugging
它在你的 phone 上。您可能需要先启用开发者模式,该模式因设备而异。
关于Android开发的Unity说明很难理解和不清楚。 特别是我对 Android SDK setup 有疑问。已经写过 "If the Android device is automatically recognized by the system you still might need to update the drivers with the ones that came with the Android SDK." 我怎么知道 android 设备是否被识别?我该如何检查? 第二个问题是:"Go to Settings -> Developer options, then enable USB debugging." 那个设置在哪里?在统一编辑器中我找不到这样的东西。也许在 SDK 或其他东西中,但我不知道如何到达那里。 所以我该怎么做?如果您对 android 有任何建议,请帮忙。
Unity intructions abouts Android developement is hard to understand and unclear.
同意。
How I can even know if android device is recognized? How should I check it?
写入终端adb devices
。如果输出列表为空,您应该安装最新的驱动程序。
(您的计算机可能无法识别 adb
。它是 android/sdk/platform-tools
中的可执行文件。将此路径添加到您的系统路径,因为这些可执行文件是部署到您的设备所必需的。)
USB debugging
它在你的 phone 上。您可能需要先启用开发者模式,该模式因设备而异。