在 Eclipse 中构建 Android 源应用程序

发布于 2024-11-04 23:43:16 字数 512 浏览 0 评论 0原文

我在这里下载了备件的源代码

https://android.googlesource .com/platform/development/+/gingerbread-release/apps/SpareParts

它包括 Android.mkAndroidManifest.xmlNoticeressrc 文件夹。

我的问题是如何在 Eclipse 中编译这个源代码?我看到有一个 make 文件 (Android.mk),我猜我需要使用它,但我不知道该怎么做才能将这个东西导入到 Eclipse 中而不出现 500 多个错误。

I downloaded the source to spareparts here

https://android.googlesource.com/platform/development/+/gingerbread-release/apps/SpareParts

It includes Android.mk, AndroidManifest.xml, Notice, res and src folders.

My question is how can I compile this source code in Eclipse? I see there is a make file (Android.mk) which I'm guessing I need to use but I can't figure out what to do to get this thing imported into Eclipse without having 500+ errors.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

执笏见 2024-11-11 23:43:16

这篇文章似乎有答案。不过,根据它,您需要下载所有源代码才能构建其中一个应用程序。

This article seems to have the answer. According to it you would need to download all of the source just to build one of the apps, though.

柠栀 2024-11-11 23:43:16

蛮力总是有效:)

  • 在 Eclipse 中创建一个名为 SpareParts 的新 Android 项目
  • 使用资源管理器将工作区/SpareParts 中的 src/ 和 res/ 文件夹替换为从 git 下载的文件夹
  • 单击项目中 SpareParts 条目上的右键Eclipse 中的树 ->刷新
  • 享受

我查看了文件,它似乎没有使用任何外部库。
如果你尝试自己构建它,你仍然会遇到问题,因为这三个类不在 android.jar 中:

import android.app.ActivityManagerNative; //cannot be resolved
import android.os.ServiceManager; //cannot be resolved
import android.view.IWindowManager; //cannot be resolved

Brute force always works :)

  • Create a new android project in Eclipse named SpareParts
  • Use the explorer to replace both the src/ and res/ folders inside workspace/SpareParts with the ones downloaded form git
  • Click with the right button on the SpareParts entry in the project tree in Eclipse -> Refresh
  • enjoy

I looked into the files and it does not seem that it uses any external library.
If you try to build it by itself, you will still have problems due to these three classes that are not in android.jar:

import android.app.ActivityManagerNative; //cannot be resolved
import android.os.ServiceManager; //cannot be resolved
import android.view.IWindowManager; //cannot be resolved
踏月而来 2024-11-11 23:43:16

在 Eclipse 中尝试“文件”->“导入...”和“常规”->“现有项目到工作区”,添加项目文件夹,然后尝试编译它。希望有帮助。

In Eclipse try File->Import... and General->Existing Projects into Workspace, add the project folder and then try to compile it. Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文