Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ Currently only Linux is fully supported. Mac may work but is not regularly teste
on PATH.
* Install the [Android SDK](https://developer.android.com/studio/install) and
run the following command to ensure you have the necessary components:
`cmdline-tools/latest/bin/sdkmanager "build-tools;33.0.2"`
`cmdline-tools/latest/bin/sdkmanager "platforms;android-35" "build-tools;35.0.0"`
`cmdline-tools/latest/bin/sdkmanager "build-tools;36.0.0" "platforms;android-36"`
* Set the `ANDROID_HOME` environment variable to point to the SDK install
location. For example
* On Linux: `export ANDROID_HOME=/home/$USER/Android/Sdk`
* On Mac: `export ANDROID_HOME=/Users/$USER/Library/Android/sdk`
You can also add this command to your ~/.bashrc, ~/.zshrc, or ~/.profile file to make it
permanent.
*. Install Zulu Java 21 and add to PATH

### IDE setup

Expand Down
2 changes: 1 addition & 1 deletion opensource/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ load("@build_bazel_rules_android//android:rules.bzl", "android_library")
java_import(
name = "androidsdk_compiletime",
jars = [
"@androidsdk//:platforms/android-35/android.jar",
"@androidsdk//:platforms/android-36/android.jar",
],
neverlink = 1,
visibility = [
Expand Down
Loading