I'm trying to compile Gallery App source code for Android, which is currently public on Google Source.
I've had a few issues in the process, so I'll recap what I made:
- Clone the project from git repo
- Import on Eclipse
- Add framework.jar and core.jar libs from source to access hidden and internal APIs. (As answered here)
However, I still get compiler errors for some instance variables (e.g. on a derived class from TextView: mScrollX, mRight, etc.). Some of these are marked as protected on the super class ancestor, so they cannot be resolved from the source code (As seen here)
I've other similar issues for other Android internal clases. Am I missing something when configuring my environment to compile these kind of apps?