在eclipse中启动从android开源项目下载的项目
我刚刚开始为 android 平台进行开发。我仍处于“阅读大量代码”阶段。我从android的音乐播放器下载了源代码到eclipse中,现在我想在模拟器上运行它,但是eclipse告诉我“选择无法启动”。
是不是少了点什么?
我使用本教程获取代码: http://www.vogella.de/articles /EGit/article.html 和 git 存储库是: https://android.googlesource.com/platform/packages/apps/Music
I'm just starting to developing for the android platform. I'm still in "reading lots of code" phase. I downloaded the source code from android's music player into eclipse, now I want to run it on the emulator but eclipse tells me that the "selection cannot be launched".
Is there something missing?
I used this tutorial to get the code: http://www.vogella.de/articles/EGit/article.html and the git repository is: https://android.googlesource.com/platform/packages/apps/Music
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想运行一个项目,你必须
首先将你的项目放入你的工作区中。
然后进入Eclipse->文件->导入并找到您的项目。
当你的项目进入 Eclipse 时,打开 AndroidManifest.xml 文件
并找到 android:minSdkVersion 的数量。
最后进入...Eclipse->窗口-> Android SDK 和 AVD 管理器并使用 android:minSdkVersion 数量创建 SDK
现在您已准备好运行您的应用程序。
If you want to run a project you have to put into the eclipse
first put you project in your workspace.
then go to Eclipse-> file-> import and find your project.
when you have your project into eclipse open AndroidManifest.xml file
and find the number of android:minSdkVersion.
Finally and go to... Eclipse-> Window-> Android SDK and AVD manager and create you SDK with the number of android:minSdkVersion
Now you are ready to run your application.