https://kotlinlang.org logo
b

Brian

01/24/2019, 3:45 PM
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

hmole

01/24/2019, 3:59 PM
Doesn't work for me. My framework folder is still named
main.framework
j

Jonas Bark

01/24/2019, 4:29 PM
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

msink

01/24/2019, 4:51 PM
Most likely you have in "entryPoint main". Remove it.
In my case "main" was picked up from that
entryPoint
option.
b

Brian

01/25/2019, 10:30 AM
Thank you guys! Using
binaries.framework
fixed it.
2 Views