Small utility to synchronize the gradle version with the cargo version.
Add build dependency in Cargo.toml
:
```toml [build-dependencies] gradle-sync = 0.1.4
```
Add the following code snipper to build.rs
:
```[rust] extern crate gradlesync; use gradlesync::GradleFile;
fn main() { GradleFile::newandsyncwithcargo("./app/build.gradle").unwrap(); }
```
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.