What problem does it solve? Public Android documentation often omits implementation details, @hide APIs, and internal constants, forcing developers to read platform and library source directly — but knowing where and how to fetch that source is non-trivial. ## Core Features & Use Cases - Dual-source access strategy: Fetches AOSP framework internals via Gitiles (android.googlesource.com) and AndroidX/Jetpack source via GitHub raw URLs, with correct URL formats for each. - MCP tool preference: Prioritizes android-source-explorer MCP tools (class lookup, method search, hierarchy, go-to-definition) for sub-10ms local source queries when available. - Path inference and search guidance: Maps fully qualified class names to repo paths and provides fallback search strategies when the exact path is unknown. - Use Case: You need the default value of a View attribute or the signature of a @hide method in ActivityManagerService — this Skill fetches the exact current source from the correct repository instead of relying on stale training data. ## Quick Start Fetch the current AOSP source for android.view.ViewGroup and show me how it handles child measure calls.