哪里可以下载android.jar的完整源代码?
我下载了存储库: git://android.git.kernel.org/platform/frameworks/base.git
但我发现这还不够。例如,java.、javax. 等包的大部分源代码都不存在。
我还需要下载什么存储库?
I downloaded the repository:
git://android.git.kernel.org/platform/frameworks/base.git
But I found it's not enough. For example, most of the source code for the packages like java., javax. were not there.
What else repository do I need to download?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,这并不是
android.jar
的真正源代码。开发计算机上的android.jar
是构成 SDK 基础的非隐藏类和方法的存根 JAR。其次,如果您想使用代码,下载一个 Git 存储库通常并不是特别有用。您将需要所有存储库,如 Android 开源项目网站 中所述。
您正在寻找的一些内容位于 libcore存储库。据推测,其他类位于其他存储库中。
First, that's not really the source code to
android.jar
. Theandroid.jar
on your development machine is a JAR of stubs for the non-hidden classes and methods that form the basis of the SDK.Second, downloading one Git repository usually isn't particularly useful if you want to work with the code. You are going to need all of the repositories, as is documented on the Android Open Source Project site.
Some of what you are seeking are in the libcore repository. Other classes are in other repositories, presumably.