How to build ios cocoapods? #150
Replies: 1 comment
-
I have a similar issue. I used to use script build phase:
But since updating to kotlin to version 2.0.0 and BuildKonfig version 1.5.1, it just says:
I tried switching to any other task like EditI reverted back to the old kotlin version 1.19.20 and BuildKonfig 1.5.0 and any other task than @Knoxvillekm As for your issue I can only recomend to try using |
Beta Was this translation helpful? Give feedback.
-
I use same property for builds.
android - ./gradlew assembleRelease --project-prop buildkonfig.flavor=test
jvm - ./gradlew createDistributable --project-prop buildkonfig.flavor=test
This work fine.
ios - ./gradlew podInstall --project-prop buildkonfig.flavor=test
This not working.
If I change buildkonfig.flavor in gradle.properties its work too.
Beta Was this translation helpful? Give feedback.
All reactions