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
2 changes: 1 addition & 1 deletion dl3/android/DeepLabV3Demo/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ android {
dependencies {
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("androidx.constraintlayout:constraintlayout:2.2.0")
implementation("org.pytorch:executorch-android:1.0.0-rc1")
implementation("org.pytorch:executorch-android:1.0.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
Expand Down
2 changes: 1 addition & 1 deletion llm/android/LlamaDemo/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {
if (useLocalAar == true) {
implementation(files("libs/executorch.aar"))
} else {
implementation("org.pytorch:executorch-android:1.0.0-rc1")
implementation("org.pytorch:executorch-android:1.0.0")
}
implementation("com.google.android.material:material:1.12.0")
implementation("androidx.activity:activity:1.9.0")
Expand Down
2 changes: 1 addition & 1 deletion llm/android/LlamaDemo/docs/delegates/xnnpack_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ This is running the shell script which configures the required core ExecuTorch,
### Alternative: Use prebuilt AAR library
Simply add ExecuTorch to your gradle dependency:
```
implementation("org.pytorch:executorch-android:1.0.0-rc1")
implementation("org.pytorch:executorch-android:1.0.0")
```

## Run the Android Demo App
Expand Down