build(deps): Bump cargo gradle plugin to fix pipes issue (#7598)

This fixes a recent issue regarding the `pipes` module being deprecated
in python3.

Docs are also updated to fix an intermittent issue I sometimes hit with
the plugin not finding my `rustc` or `cargo`.

https://github.com/mozilla/rust-android-gradle/releases/tag/v0.9.5
This commit is contained in:
Jamil
2024-12-29 23:22:54 -08:00
committed by GitHub
parent f1a1c04d19
commit 90bac88194
2 changed files with 10 additions and 1 deletions

View File

@@ -63,6 +63,15 @@ locally.
1. Perform a test build: `./gradlew assembleDebug`.
If you get errors about `rustc` or `cargo` not being found, it can help to
explicitly specify the path to these in your shell environment. For example:
```
# ~/.zprofile or ~/.bash_profile
export RUST_ANDROID_GRADLE_RUSTC_COMMAND=$HOME/.cargo/bin/rustc
export RUST_ANDROID_GRADLE_CARGO_COMMAND=$HOME/.cargo/bin/cargo
```
# Release Setup
We release from GitHub CI, so this shouldn't be necessary. But if you're looking

View File

@@ -13,7 +13,7 @@ buildscript {
}
plugins {
id("org.mozilla.rust-android-gradle.rust-android") version "0.9.4" apply false
id("org.mozilla.rust-android-gradle.rust-android") version "0.9.5" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
id("com.android.application") version "8.7.2" apply false
id("com.google.firebase.appdistribution") version "5.0.0" apply false