Hi, I have encountered a strange issue I am not entierly sure how to replicate but its when importing certain libraries causing the below warnings-
Include the SQLite.swift version, commit or branch experiencing the issue.
Latest version / 0.14.1
Mention Xcode and OS X versions affected.
Version 14.3 (14E222b)
How do do you integrate SQLite.swift in your project?
Swift Package manager
1- Create new project
2- Integrate SQLite.swift using SPM and the latest Xcode
3- Simply add the following header on the created ContentView.swift file
import PassKit
This will produce the following warnings:-
objc[55642]: Class _TtC6SQLite6Backup is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19b5d8) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x104328fa8). One of the two will be used. Which one is undefined. objc[55642]: Class _TtC6SQLite10Connection is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19b310) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x1043291c8). One of the two will be used. Which one is undefined. objc[55642]: Class _TtC6SQLite9Statement is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19b508) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x104329380). One of the two will be used. Which one is undefined. objc[55642]: Class _TtC6SQLite12TableBuilder is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19af40) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x10432a920). One of the two will be used. Which one is undefined.
Hi, I have encountered a strange issue I am not entierly sure how to replicate but its when importing certain libraries causing the below warnings-
Include the SQLite.swift version, commit or branch experiencing the issue. Latest version / 0.14.1
Mention Xcode and OS X versions affected. Version 14.3 (14E222b)
How do do you integrate SQLite.swift in your project? Swift Package manager
1- Create new project 2- Integrate SQLite.swift using SPM and the latest Xcode 3- Simply add the following header on the created ContentView.swift file
import PassKit
This will produce the following warnings:-
objc[55642]: Class _TtC6SQLite6Backup is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19b5d8) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x104328fa8). One of the two will be used. Which one is undefined. objc[55642]: Class _TtC6SQLite10Connection is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19b310) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x1043291c8). One of the two will be used. Which one is undefined. objc[55642]: Class _TtC6SQLite9Statement is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19b508) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x104329380). One of the two will be used. Which one is undefined. objc[55642]: Class _TtC6SQLite12TableBuilder is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinkServices.framework/LinkServices (0x1bb19af40) and /Users/vvv014/Library/Developer/CoreSimulator/Devices/DAC8F724-DB55-4EC0-B064-0FCC67866994/data/Containers/Bundle/Application/8F4F886E-4DB1-4446-A3E7-A49937F221CD/asdfsadf.app/asdfsadf (0x10432a920). One of the two will be used. Which one is undefined.
Thank you