You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create two binary version of the library, one with debug info, and the other without. I've tried to use twice the multiplatformSwiftPackage gradle option like this:
It seems the second block overrides the first. So right now I need to build one configuration, then change gradle, build the other one, and restore the original one for git to not complain.
Is there a better way to do this?
The text was updated successfully, but these errors were encountered:
hmm... A hacky way you could probably do something like that. is surround them with an if or case statement activated by a boolean... where the boolean is updated in a gradle task according to the build type release or debug. If you want to write a pr to add support for that be my guest 😅
I'm trying to create two binary version of the library, one with debug info, and the other without. I've tried to use twice the
multiplatformSwiftPackage
gradle option like this:It seems the second block overrides the first. So right now I need to build one configuration, then change gradle, build the other one, and restore the original one for git to not complain.
Is there a better way to do this?
The text was updated successfully, but these errors were encountered: