I am running a KMM project. I get this error, but ...
# ios
d
I am running a KMM project. I get this error, but I am not sure how to fix it:
Cannot infer a bundle ID from packages of source files and exported dependencies, use the bundle name instead: shared. Please specify the bundle ID explicitly using the -Xbinary=bundleId=<id> compiler flag.
solved! by adding:
Copy code
binaryOption("bundleId", "sharedPackageName")
to gradle’s
binaries.framework
531 Views