You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set a doc build variable for executorch version (#13351)
### Summary
Now in docs we can use `${executorch_version}` to represent executorch
version.
It's defined in docs/source/executorch_custom_versions.py
`EXECUTORCH_VERSION = "0.7.0"`
### Test plan
In
https://docs-preview.pytorch.org/pytorch/executorch/13351/getting-started.html#id1,
the version is correct:
```
implementation("org.pytorch:executorch-android:0.7.0")
```
Copy file name to clipboardExpand all lines: docs/source/using-executorch-android.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,13 @@ The AAR library can be used for generic Android device with arm64-v8a or x86_64
28
28
29
29
ExecuTorch is available on [Maven Central](https://mvnrepository.com/artifact/org.pytorch/executorch-android).
30
30
31
-
Simply add the target [`org.pytorch:executorch-android:0.6.0-rc1`](https://repo.maven.apache.org/maven2/org/pytorch/executorch-android/0.6.0-rc1/) to your Android app dependency (build.gradle), and build your app.
31
+
Simply add the target [`org.pytorch:executorch-android:${executorch_version}`](https://repo.maven.apache.org/maven2/org/pytorch/executorch-android/${executorch_version}/) to your Android app dependency (build.gradle), and build your app.
0 commit comments