Plugin [id: 'org.jetbrains.native.cocoapods', vers...
# multiplatform
r
Plugin [id: 'org.jetbrains.native.cocoapods', version: '2.0.0'] was not found in any of the following sources: Error occurs when i try to add this 👇🏻👇🏻👇🏻👇🏻 in plugins block of build.gradle.kts
Copy code
alias(libs.plugins.cocopods)
a
... kotlin.native.cocoapods
r
Copy code
cocopods = { id = "org.jetbrains.native.cocoapods", version.ref = "kotlin" }
kotlin = "2.0.0"
In the libs.versions.toml file
a
Copy code
cocopods = { id = "org.jetbrains.kotlin.native.cocoapods", version.ref = "kotlin" }
kotlin = "2.0.0"
Find 7 differences
r
Thanks, Got it 🤐
What does ios.deploymentTarget = "13.5" means?. Can you please give some explaination
Whether its is neccssary?
d
r
So what is the recommented deploymentTarget?. In android minSDK version is 24 maxSDK version is 35.
d
It depends on how many users are targeted by your app. You can check the versions usage here: https://iosref.com/ios-usage
r
I go with iphone 12 version, thanks for your valuable comment ❤️
c
We pick iOS deployment target of 14.1 right now, when the next version comes out I would bump that to 15 as most iOS devs only support the last few versions, iOS 15 would still support Air2/6S (2014 devices) so I think 9/10 years of support is more than acceptable
☝️ 2
r
Thanks for your suggestion.