https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
f

Federico Amura

09/21/2023, 5:41 PM
It is possible to change the xcframework version number from the gradle file?
j

Jeff Lockhart

09/21/2023, 5:56 PM
Yes. It uses the Gradle project
version
.
f

Federico Amura

09/21/2023, 5:57 PM
where i can see an example?
j

Jeff Lockhart

09/21/2023, 6:01 PM
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
3 Views