Ashish Kakkad

Results 6 comments of Ashish Kakkad

I will try to have Cocoapods support with this library. Thank you for suggestions.

@AshishKapoor Hello what is your deployment target?

Change code after the following line: ``` let cfProperties = CGImageSourceCopyPropertiesAtIndex(source, index, nil) ``` Create gifPropertiesPointer and deallocate it will fix the issue in iOS 16.x ``` let gifPropertiesPointer =...

Thanks for the reply. After adding in MySDK podspec I am still getting following crash while initializing the library : ` *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:...

I found the solution. `-ObjC` linker flag required in podspec. ``` spec.vendored_frameworks = "MySDK/Frameworks/MediaPipeTasksCommon.xcframework", "MySDK/Frameworks/MediaPipeTasksVision.xcframework" spec.pod_target_xcconfig = { 'OTHER_LDFLAGS[sdk=iphonesimulator*]' => '$(inherited) -l"c++" -ObjC -force_load "${PODS_ROOT}/../../MySDK/Frameworks/graph_libraries/libMediaPipeTasksCommon_simulator_graph.a"', 'OTHER_LDFLAGS[sdk=iphoneos*]' => '$(inherited) -l"c++" -ObjC...