Ameen Azeez
01/08/2024, 7:45 AMcocoapods {
summary = "Some description for the Shared Module"
homepage = "Link to the Shared Module homepage"
version = "1.0"
ios.deploymentTarget = "13.0"
podfile = project.file("../iosApp/Podfile")
I was exploring cocoapods integration. Is there any specific reason that podfile = project.file("../iosApp/Podfile")
is required?Pamela Hill
01/08/2024, 8:46 AMPamela Hill
01/08/2024, 8:46 AMVlad
12/30/2024, 1:04 PMPamela Hill
12/30/2024, 1:06 PMVlad
12/30/2024, 1:07 PMPamela Hill
12/30/2024, 1:12 PMPamela Hill
01/08/2025, 12:31 PM> Is it required?
No
> What does it default to?
The default isit's optionalnull
> What is the meaning of podfile attribute?
The user can point to existing projects Podfile (like)podfile = project.file("../iosApp/Podfile")
AFAIK it was used for KMP android studio plugin integration, so thatcould be invoked from gradle taskpodinstall
Pamela Hill
01/08/2025, 12:31 PM