I want to rebuild the Android SDK (or rather only the android.jar) to include hidden and internal APIs.

I could not find any documentation or discussion doing on how to go about this. I have an Ubuntu CyanogenMod build environment already setup that is able to build cm7.

Now, I read that make SDK will build the SDK but I want to build an SDK that includes methods and fields that are marked as hidden using @hide. Is this possible?

What I want to do is make changes to an application that uses hidden API and in order to rebuild it I would like to use the modified SDK.

link|improve this question
1  
@Hidden just hides the javadoc, all these methods are still available – Blundell Oct 25 '11 at 11:36
1  
@hide removes them from the class files. – Thomas Hofmann Oct 25 '11 at 12:17
Linked: stackoverflow.com/questions/4951146/… – Blundell Oct 25 '11 at 12:19
I know that I could use reflection but I want to change an existing application that uses hidden API without refelction and I don't want to change all exsiting code to use refelction. – Thomas Hofmann Oct 25 '11 at 12:21
Thomas I've shown you the resource to explain it in my Answer, I'm just linking more information for other people coming across your question. Also have you tried extending the class and overriding the method but don't use the @override annotation – Blundell Oct 25 '11 at 12:52
show 4 more comments
feedback

4 Answers

DroidCon 2011

Here Erik Hellman from Sony Ericson explains how to access the hidden Android API's:

http://vimeo.com/30180393 (Hmm link doesn't appear to work).

Goto the DroidCon webpage Day 2 scroll down to Using Hidden APIs 10:15 and you can watch it there.

The official APIs in the Android SDK is usually sufficient for most normal applications. However, there are sometimes situations where a developer needs access to the internal system services, APIs and resources that are not published in the official APIs. Fortunately, these APIs are still available through some clever tricks and can often be useful when developing new and innovative solution on top of Android. In this session you will learn how to access and use these hidden and protected APIs, the limitations of their usage and some tips'n'trick on how to use them in a safe and control manner across multiple vendors devices and Android versions. The audience will see several advanced demos that you normally cannot do with Android. Expect a fairly advanced session with lots of insights in the internals of the Android platform.

link|improve this answer
1  
It's interesting but unfortunately it does not answer my question. I was asking for a way to actually rebuild the SDK with hidden stuff included. – Thomas Hofmann Oct 25 '11 at 21:25
It looks like I found another way to achieve what I want. I will describe it tomorrow. – Thomas Hofmann Oct 25 '11 at 22:22
I found out that if you want to compile the source of a project that uses hidden API in ADT you can do the following: 1) Create an Android project for the source. 2) Remove the Android classpath container from the build path 3) Define a user library (also check the system library checkbox) that includes JAR files from an ASOP ROM build, e.g. cm7). Which JAR files you use depends on what you need to reference. framework-immediates will probably be part of it. – Thomas Hofmann Oct 27 '11 at 14:23
4) When the project is now built the user library classes will not be included in the APK being created. Hidden API is visible and everything will compile just fine. – Thomas Hofmann Oct 27 '11 at 14:27
feedback

I have done some investigating into this, and my conclusion is simply: This cannot be done without quite a bit of work. Read the rest of this answer for details on what I have found.


android.jar is actually comprised of the "public api" of framework.jar and core.jar which is found in system/frameworks/ on the device. android.jar is a kind of what I would call Java library header, all implementation in the actual byte code are just a throw new RuntimeException("stub");, this allows you to build against android.jar (e.g. in Eclipse), but execution has to be performed on a device or emulator.

The public API of the Android SDK is defined by classes/methods/fields that are not prefixed with the @{hide} javadoc annotation. I.e. everything that is not annotated is included in the SDK.

android.jar is built from the sources located in out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates which itself is generated by the tool DroidDoc located in build/tools/droiddoc.

DroidDoc is the tool (probably adapted from javadoc, or using javadoc) that generate the actual Android SDK documentation. As a side-effect, and probably because it is already parsing all the javadoc, it also spews out the android stubs which are then compiled into the android.jar which is distributed in the SDK.

So to include the stuff that is hidden you could, if you only want to include specific parts, just remove the @hide annotation and rebuild the SDK.

However if you want to include all the hidden parts things get a lot more complicated. You can modify DroidDoc (the relevant source is in build/tools/droiddoc/src/Stubs.java) such that nothing is detected as hidden. This is quite trivial and I have tried this, however the stubs that is then generated does not compile at all.

My conclusion by now is that this is simply not feasible. The stubs generated if you remove the part of DroidDoc that detect hidden annotations, is simply not compilable, and would require quite a bit of work to compile correctly.

So my answer to your questions is: No, this cannot be done, without doing a lot of work. Sorry.


A side note about the mkstubs tool. mkstubs are used when you build a SDK addon, i.e. the addons you can find in the Android SDK manager from vendors, e.g. Samsung providing you with an additional API for stuff specific to Samsung phones. mkstubs does much the same as the DroidDoc stubs generation process, however it does not use @hide annotations, it uses a .defs file describing which packages/classes/fields to include or exclude from your SDK addon.

However this is all irrelevant to the question, as the Android SDK build does not use the mkstubs tool. (Unfortunately.)

link|improve this answer
I had a look too. Besides Droiddoc there is a tool called mkstubs in /development/tools/mkstubs. It get called during the build and as far as I have seen it will modify the class files stubbing stuff out of them. In build/core/tasks/sdk-addon.mk there is the following code: define stub-addon-jar $(call stub-addon-jar-file,$(1)): $(1) | mkstubs $(info Stubbing addon jar using $(PRODUCT_SDK_ADDON_STUB_DEFS)) $(hide) java -jar $(call module-installed-files,mkstubs) $(if $(hide),,--v) \ "$$<" "$$@" @$(PRODUCT_SDK_ADDON_STUB_DEFS) endef – Thomas Hofmann Mar 5 at 15:04
Unfortunately, I am not into this stuff but too me it looks like it all depends on a variable called hide. I havn't found were it gets set though. If you search for $(hide) in the other build files you will see that a lot depends on this value. It seems to also affect the way C libs are built. – Thomas Hofmann Mar 5 at 15:04
@ThomasHofmann: I initially got confused by the mkstubs tool also. What I have learned is that mkstubs only gets used when you are building a (vendor) sdk addon, not when you just build the normal sdk. However, mkstubs does much the same as DroidDoc, except it does not use @hide annotations, it "just" uses a .defs file describing which packages/classes/fields to be included in the API of the addon. – bjarkef Mar 6 at 7:39
@ThomasHofmann: About $(hide), you are confusing yourself. $(hide) is simply a prefix in the makefiles to hide the actual command-line of the program being executed, nothing more, and it is used just about everywhere everywhere. It has nothing whatsoever to do with the Android SDK or the @hide annotation in the source code. – bjarkef Mar 6 at 7:55
feedback

try to look at this http://devmaze.wordpress.com/2011/01/18/using-com-android-internal-part-1-introduction/

link|improve this answer
1  
I already read that blog entry. It mentions this: "1) Android is an open source project. We can download the source code and customize build system so it does not exclude internal & hidden classes from android.jar. This is a hard way." Unfortunately, it does not go into details. – Thomas Hofmann Nov 10 '11 at 21:55
Go to the last part of the blog post (devmaze.wordpress.com/2011/01/19/…), there's a link (github.com/inazaruk/android-sdk/tree/master/platforms) to pre-built Android APIs with all hidden and internal APIs. – Bob Apr 2 at 15:21
feedback

There is a blog post on Sony Ericsson web page with Erik Hellmans talk and code and some references which I think will be useful to you.

Kind regards
/Johan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.