Sean Keane
12/14/2022, 4:42 PMiosArm64 {
binaries {
framework {
isStatic = true
transitiveExport = true
}
}
}
cocoapods {
summary = Metadata.IOS.summary
homepage = Metadata.IOS.homepage
version = Metadata.IOS.sdkVersion
ios.deploymentTarget = Metadata.IOS.deploymentTarget
framework {
baseName = Metadata.IOS.frameworkBaseName
isStatic = true
transitiveExport = true
}
pod("TensorFlowLiteTaskVision")
}
Basically when we use it we get this error in XCode Undefined symbol: _OBJC_CLASS_$_GMLImage
which is part of the Tensorflow pod...a-dd
12/15/2022, 2:28 AMSean Keane
12/16/2022, 3:04 PM