Small utility to synchronize the gradle version with the cargo version.
First, add build dependency in Cargo.toml
:
toml
[build-dependencies]
gradle-sync = "0.2.0"
and secondly, add the following code snippet to build.rs
(with a reference to the build.gradle
file):
```rust extern crate gradlesync; use gradlesync::BuildGradleFile; use gradle_sync::GradlePropertiesFile;
fn main() { BuildGradleFile::new("./app/build.gradle").unwrap() .syncwithcargo().unwrap(); GradlePropertiesFile::new("./gradle.properties").unwrap() .syncwithcargo().unwrap(); }
```
When you now build your project, the version specified in Cargo.toml
file is used as versionName
in the build.gradle
file. If required, the versionCode
is also incremented.
gradle-sync is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in gradle-sync by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.