It is possible to change the xcframework version n...
# multiplatform
f
It is possible to change the xcframework version number from the gradle file?
j
Yes. It uses the Gradle project
version
.
f
where i can see an example?
j
It's just a property in the project build.gradle(.kts). You can set it with
version = "x.y"
.
That's per project (module). If you have a multi-module project and want to set the same version for them all, in your top-level build.gradle(.kts) you can do this:
Copy code
allprojects {
    version = "x.y"
}
1
🙌 1