Ashu Tyagi
05/09/2024, 5:39 AM./gradlew build
task, It build both debug & release framework for ios which is slow.
Is there a way to generate only debug framework while testing it locally? Also is there a way to completely skip generating ios framework & generate only android framework?
Thanks in advance.Swapnil Musale
05/09/2024, 5:41 AMAshu Tyagi
05/09/2024, 5:42 AMAshu Tyagi
05/09/2024, 5:49 AMIvan Carracedo Asensio
05/09/2024, 10:30 AM./gradlew publishReleasePublicationToMavenLocal
of course with the maven-publish plugin imported and well configured in build.gradleIvan Carracedo Asensio
05/09/2024, 10:33 AM./gradlew assembleKmpSharedDebugXCFramework
in which KmpShared woould be the name of your shared moduleIvan Carracedo Asensio
05/09/2024, 10:33 AM./gradlew tasks --all
Ashu Tyagi
05/10/2024, 6:13 AM