You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building in xcode I get this: Use of undeclared type '_Incrementable'
cordova/ionic show an error like this: (the arrow is pointing at _Incremental as well:
public struct JSONIndex: Comparable, _Incrementable, Equatable {
^~~~~~~~~~~~~~
** BUILD FAILED **
The following build commands failed:
CompileSwift normal x86_64 /Users/jsharpe/yellowstone/mobile/platforms/ios/D Fuse v0.0.12/Plugins/cordova-plugin-geofence/GeofencePlugin.swift
CompileSwift normal x86_64 /Users/jsharpe/yellowstone/mobile/platforms/ios/D Fuse v0.0.12/Plugins/cordova-plugin-geofence/SwiftData.swift
CompileSwift normal x86_64 /Users/jsharpe/yellowstone/mobile/platforms/ios/D Fuse v0.0.12/Plugins/cordova-plugin-geofence/SwiftyJson.swift
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
The text was updated successfully, but these errors were encountered:
The _Incrementable protocol has been deleted from the inheritance hierarchy of Swift in version 3.3.
So just remove it from SwiftyJson.swift file next to JSONIndex derived struct. Seems it is not required.
When building in xcode I get this:
Use of undeclared type '_Incrementable'
cordova/ionic show an error like this: (the arrow is pointing at
_Incremental
as well:The text was updated successfully, but these errors were encountered: