Skip to content

Commit 80ca4ac

Browse files
authored
[release] Update Android prebuilt URLs (#8000)
1 parent e9d51df commit 80ca4ac

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/source/android-prebuilt-library.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ We provide two prebuilt Android libraries (AAR), `executorch.aar` for generic us
1313
- Comes with two ABI variants, arm64-v8a and x86_64.
1414

1515
## Downloading AAR
16-
[executorch.aar](https://ossci-android.s3.amazonaws.com/executorch/release/executorch-241002/executorch.aar)
17-
[executorch.aar.sha256sums](https://ossci-android.s3.amazonaws.com/executorch/release/executorch-241002/executorch.aar.sha256sums)
16+
[executorch.aar](https://ossci-android.s3.amazonaws.com/executorch/release/v0.5.0-rc3/executorch.aar)
17+
[executorch.aar.sha256sums](https://ossci-android.s3.amazonaws.com/executorch/release/v0.5.0-rc3/executorch.aar.sha256sums)
1818

1919
## Using prebuilt libraries
2020

@@ -23,7 +23,7 @@ To add the Java library to your app, simply download the AAR, and add it to your
2323
In your app working directory, such as example executorch/examples/demo-apps/android/LlamaDemo,
2424
```
2525
mkdir -p app/libs
26-
curl https://ossci-android.s3.amazonaws.com/executorch/release/executorch-241002/executorch.aar -o app/libs/executorch.aar
26+
curl https://ossci-android.s3.amazonaws.com/executorch/release/v0.5.0-rc3/executorch.aar -o app/libs/executorch.aar
2727
```
2828

2929
And include it in gradle:

examples/demo-apps/android/LlamaDemo/download_prebuilt_lib.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
set -eu
99

10-
AAR_URL="https://ossci-android.s3.us-west-1.amazonaws.com/executorch/release/executorch-241002/executorch.aar"
11-
AAR_SHASUM_URL="https://ossci-android.s3.us-west-1.amazonaws.com/executorch/release/executorch-241002/executorch.aar.sha256sums"
10+
AAR_URL="https://ossci-android.s3.us-west-1.amazonaws.com/executorch/release/v0.5.0-rc3/executorch.aar"
11+
AAR_SHASUM_URL="https://ossci-android.s3.us-west-1.amazonaws.com/executorch/release/v0.5.0-rc3/executorch.aar.sha256sums"
1212
LIBS_PATH="$(dirname "$0")/app/libs"
1313

1414
mkdir -p "$LIBS_PATH"

0 commit comments

Comments
 (0)