Ishara
04/29/2024, 7:51 AMShowing Recent Messages
ld: framework 'TensorFlowLiteC' not found
where I use cocoapods in gradle like,
cocoapods {
        summary = "Machine Learning on KMP"
        homepage = "<https://project.com>"
        version = "1.0"
        ios.deploymentTarget = "16.0"
        framework {
           baseName = "mlframework"
        }
        noPodspec()
        podfile = file("../iosApp/Podfile")
  
        pod("TensorFlowLiteObjC"){
            moduleName = "TFLTensorFlowLite"
        }
    }
This is how my iosApp/Podfile looks like,
# Uncomment the next line to define a global platform for your project
platform :ios, '16.0'
target 'iosApp' do
  # Comment the next line if you don't want to use dynamic frameworks
  # use_frameworks!
  # Pods for iosApp
  pod 'TensorFlowLiteObjC'
end
I've followed the usual steps (clean build, re-syncing dependencies) without success. Any insights or suggestions would be greatly appreciated!
Thanks in advance for any help you can provide! 🙏