After upgrading to 1.3.20 my generated xcode frame...
# multiplatform
b
After upgrading to 1.3.20 my generated xcode framework changed their names (which results in quite some compilation errors). What would be the Gradle-way to control how the framework is named?
h
Doesn't work for me. My framework folder is still named
main.framework
j
are you sure? just tested it and it works. It actually still seems to create main.framework inside a directory called "mainReleaseFramework" but the correctly named framework is inside "releaseFramework"
did you put those binaries lines inside your preset(s)?
m
Most likely you have in "entryPoint main". Remove it.
In my case "main" was picked up from that
entryPoint
option.
b
Thank you guys! Using
binaries.framework
fixed it.