加载 SDK 9 示例应用程序时出错
具体来说,加载 tictactoemain 样本。
我收到以下错误:
[2010-12-27 19:48:35 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] 无法读取 D:\Program Files\Android\android-sdk-windows \AndroidManifest.xml: java.io.FileNotFoundException: D:\Program Files\Android\android-sdk-windows\AndroidManifest.xml (系统找不到指定的文件) [2010-12-27 19:48:35 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] 无法读取 D:\Program Files\Android\android-sdk-windows\AndroidManifest.xml: java .io.FileNotFoundException: D:\Program Files\Android\android-sdk-windows\AndroidManifest.xml (系统找不到指定的文件) [2010-12-27 19:49:15 - TicTacToe] 无法解析目标“android-8”,
我只加载了“android-9”SDK,但清单文件仅将 min SDK 设置为 8。
我在以下情况下得到此信息我尝试从 SDK 文件创建一个项目。
什么配置告诉 Eclipse 在“D:\Program Files\Android\android-sdk-windows\”中查找?
Specifically, loading the tictactoemain sample.
I get the following error:
[2010-12-27 19:48:35 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read D:\Program Files\Android\android-sdk-windows\AndroidManifest.xml: java.io.FileNotFoundException: D:\Program Files\Android\android-sdk-windows\AndroidManifest.xml (The system cannot find the file specified)
[2010-12-27 19:48:35 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read D:\Program Files\Android\android-sdk-windows\AndroidManifest.xml: java.io.FileNotFoundException: D:\Program Files\Android\android-sdk-windows\AndroidManifest.xml (The system cannot find the file specified)
[2010-12-27 19:49:15 - TicTacToe] Unable to resolve target 'android-8'
I only have 'android-9' SDK loaded, but the manifest file only sets the min SDK to 8.
I get this when I try to create a project out of the SDK files.
What configuration tells Eclipse to look in 'D:\Program Files\Android\android-sdk-windows\'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
想通了。 TicTacToeMain SDK 示例需要已加载 TicTacToeLib 才能解决依赖关系。看起来您只需将其作为项目打开即可使其可用于主版本。
Figured it out. The TicTacToeMain SDK Sample requires the TicTacToeLib to already be loaded to resolve the dependencies. Looks like you just open it as a project to make it available to the main version.
这不是你的问题。您的问题是该项目以
android-8
为目标。进入项目属性的 Android 区域,将目标更改为您已安装的 SDK。窗口|偏好 | Android——这里有一个字段用于显示 Android SDK 安装的路径。
That is not your problem. Your problem is that the project targets
android-8
. Go into the Android area of your project properties and change the target to an SDK you have installed.Window | Preferences | Android -- there is a field here for the path to your Android SDK installation.