如何编译com.android.sdk包?
我正在 Windows 上工作,并成功设置了 JDK、Android SDK 和 eclipse。我从以下位置下载 com.android.sdk 包:
https://android.googlesource.com/platform/packages/apps/Stk
但是当我将项目导入到eclipse中时,到处都出现错误。主要是关于 com.android.internal.telephony.gsm.stk.something 无法导入。我用谷歌搜索找到了原因。它只是说因为这些包是内部包,无法使用标准 SDK 导入。所以问题是:
我怎样才能编译这个项目?
我应该创建一个linux环境并获取整个android源代码来做到这一点吗?
I am working on windows with JDK, Android SDK and eclipse set successfully. I download the com.android.sdk package from:
https://android.googlesource.com/platform/packages/apps/Stk
But when I import the project to the eclipse, errors happen everywhere. Mostly is about the com.android.internal.telephony.gsm.stk.something cannot be imported. I googled to find the reason. It only says because of the these packages is internal package and cannot import with standard SDK. So the question is:
How can I compile this project?
Should I make a linux environment and get the whole android source code to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
依赖内部包并不是一个好主意。平台开发人员可以随时更改它们,并且您的应用程序可能会停止运行。此外,他们不保证不同 Android 平台版本上的相同行为。
Relaying on internal packages is not a good idea. They can be changed anytime by platform developers and your app can stop working. Also they do not guarantee same behavior on different Android platform versions.