The syntax was from the person who submitted the PR, so I think I may clean this up: ```kmmbridge { ...
k
The syntax was from the person who submitted the PR, so I think I may clean this up:
Copy code
kmmbridge {
    ...
    spm(targetPlatforms = {
        iOS { v("14") }
    })
}
That can be:
Copy code
kmmbridge {
    ...
    spm {
        iOS { v("14") }
    }
}