Skip to content

Instantly share code, notes, and snippets.

@cketti
Created December 18, 2017 04:07
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cketti/c0d1886627ce31fbf9aa8d7dc8a12424 to your computer and use it in GitHub Desktop.
Save cketti/c0d1886627ce31fbf9aa8d7dc8a12424 to your computer and use it in GitHub Desktop.
Build your own android-27 sources

Build "Sources for Android 27" so you can comfortably browse the Android API source in Android Studio.

  1. Collect source files
mkdir android-sdk-source-build
cd android-sdk-source-build

mkdir -p frameworks/base

# Fetch repositories that contain the sources we're interested in
git clone --depth 1 https://android.googlesource.com/platform/frameworks/base -b android-8.1.0_r2 frameworks/base
git clone --depth 1 https://android.googlesource.com/platform/libcore -b android-8.1.0_r2
git clone --depth 1 https://android.googlesource.com/platform/development -b android-8.1.0_r2

# Create a basic source.properties file
echo -e "Pkg.UserSrc=false\nPkg.Revision=1\nAndroidVersion.ApiLevel=27" > source.properties

# Modify the script to create a sources ZIP to use "android-27" as top-level directory
cat development/build/tools/mk_sources_zip.py | sed -e 's/TOP_FOLDER = .*/TOP_FOLDER = "android-27"/' > my_mk_sources_zip.py

# Run the script to create android-27-sources.zip
python my_mk_sources_zip.py -z source.properties android-27-sources.zip .
  1. Extract into Android SDK source directory
unzip android-27-sources.zip -d ${ANDROID_HOME}/sources
  1. Restart Android Studio and SDK sources should show up.
@cketti
Copy link
Author

cketti commented Dec 18, 2017

Or just download the ZIP: https://hugo.cketti.eu/android-27-sources.zip (29 MB)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment