Trey
09/01/2023, 5:58 PMrusshwolf
09/01/2023, 7:14 PMnoPodspec()
in the cocoapods block to avoid the podspec getting regenerated if you're making edits. Alternatively, you can add custom properties via extraSpecAttributes
which might let you configure the plugin to generate what you want rather than hand-editing it.russhwolf
09/01/2023, 7:16 PMTrey
09/01/2023, 7:53 PMrusshwolf
09/01/2023, 8:27 PMpod install
for you so you'll have to do that manually when needed.Trey
09/01/2023, 8:31 PMcocoapods {
version = "1.1.2"
summary = "Mobile SDK"
homepage = ""
ios.deploymentTarget = "14.1"
framework {
baseName = "mobileSdk"
isStatic = true
transitiveExport = true
}
pod("OpusKit", version = "1.0.1")
}
It puts the generated podfile under build/cocoapods/synthetic. How would I switch to including a podfile in the same directory as my podspec?russhwolf
09/01/2023, 8:35 PMdoLast {}
blockrusshwolf
09/01/2023, 8:35 PMTrey
09/01/2023, 8:35 PMTrey
09/01/2023, 8:36 PM