JoakimForslund
04/25/2019, 11:01 AMval bugsnagInterop by cinterops.creating {
compilerOpts("-F/Users/XXX/Source/projectX/native/libs", "-framework Bugsnag")
linkerOpts("-F/Users/XXX/Source/projectX/native/libs", "-framework Bugsnag")
}
be the same as in the def file write:
compilerOpts = -F/Users/XXX/Source/projectX/native/libs -framework Bugsnag
linkerOpts = -F/Users/XXX/Source/projectX/native/libs -framework Bugsnag
Because currently by only using the above code snippet I run into linkage problemsvyatoslav.scherbina
04/25/2019, 11:12 AMlinkerOpts
should be specified either in .def
file or for binaries
in Gradle.
Using linkerOpts
for cinterops
in Gradle is not supposed to work properly and will be removed.JoakimForslund
04/25/2019, 11:13 AM