Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fotiDim committed Sep 13, 2023
1 parent 821d95a commit 9ebb47f
Show file tree
Hide file tree
Showing 59 changed files with 1,128 additions and 384 deletions.
26 changes: 13 additions & 13 deletions VolumedeckiOS.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,56 +8,56 @@
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_arm64e_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>VolumedeckiOS.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>arm64e</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_arm64e_x86_64-maccatalyst</string>
<string>ios-arm64_arm64e_armv7_armv7s</string>
<key>LibraryPath</key>
<string>VolumedeckiOS.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>arm64e</string>
<string>x86_64</string>
<string>armv7</string>
<string>armv7s</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_arm64e_armv7_armv7s</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>VolumedeckiOS.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>arm64e</string>
<string>armv7</string>
<string>armv7s</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ SWIFT_CLASS("_TtC13VolumedeckiOS10Volumedeck")
/// Initializes the Volumedeck class.
/// \param runInBackground A boolean indicating whether to continue running in the background. Defaults to <code>false</code>.
///
/// \param onLocationUpdate A closure that provides the current GPS coordinates (latitude and longitude) as arguments. Defaults to <code>nil</code>.
/// \param onLocationUpdate A closure that provides thes speed and volume as arguments. Defaults to <code>nil</code>.
///
/// \param onLocationStatusChange A closure that receives a boolean indicating the GPS status (enabled/disabled). Defaults to <code>nil</code>.
///
Expand Down Expand Up @@ -539,7 +539,7 @@ SWIFT_CLASS("_TtC13VolumedeckiOS10Volumedeck")
/// Initializes the Volumedeck class.
/// \param runInBackground A boolean indicating whether to continue running in the background. Defaults to <code>false</code>.
///
/// \param onLocationUpdate A closure that provides the current GPS coordinates (latitude and longitude) as arguments. Defaults to <code>nil</code>.
/// \param onLocationUpdate A closure that provides thes speed and volume as arguments. Defaults to <code>nil</code>.
///
/// \param onLocationStatusChange A closure that receives a boolean indicating the GPS status (enabled/disabled). Defaults to <code>nil</code>.
///
Expand Down Expand Up @@ -826,7 +826,7 @@ SWIFT_CLASS("_TtC13VolumedeckiOS10Volumedeck")
/// Initializes the Volumedeck class.
/// \param runInBackground A boolean indicating whether to continue running in the background. Defaults to <code>false</code>.
///
/// \param onLocationUpdate A closure that provides the current GPS coordinates (latitude and longitude) as arguments. Defaults to <code>nil</code>.
/// \param onLocationUpdate A closure that provides thes speed and volume as arguments. Defaults to <code>nil</code>.
///
/// \param onLocationStatusChange A closure that receives a boolean indicating the GPS status (enabled/disabled). Defaults to <code>nil</code>.
///
Expand Down Expand Up @@ -1113,7 +1113,7 @@ SWIFT_CLASS("_TtC13VolumedeckiOS10Volumedeck")
/// Initializes the Volumedeck class.
/// \param runInBackground A boolean indicating whether to continue running in the background. Defaults to <code>false</code>.
///
/// \param onLocationUpdate A closure that provides the current GPS coordinates (latitude and longitude) as arguments. Defaults to <code>nil</code>.
/// \param onLocationUpdate A closure that provides thes speed and volume as arguments. Defaults to <code>nil</code>.
///
/// \param onLocationStatusChange A closure that receives a boolean indicating the GPS status (enabled/disabled). Defaults to <code>nil</code>.
///
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import UIKit
import _Concurrency
@_inheritsConvenienceInitializers @objc public class Volumedeck : ObjectiveC.NSObject {
@objc public init(runInBackground: Swift.Bool = false, onLocationUpdate: ((Swift.Double, Swift.Double) -> Swift.Void)? = nil, onLocationStatusChange: ((Swift.Bool) -> Swift.Void)? = nil, onStart: (() -> Swift.Void)? = nil, onStop: (() -> Swift.Void)? = nil, activationKey: Swift.String? = nil, autoStart: Swift.Bool = true)
@objc convenience override dynamic public init()
@objc override convenience dynamic public init()
@objc public func start()
@objc public func stop()
@objc public func mockSpeed(speed: Swift.Double)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import UIKit
import _Concurrency
@_inheritsConvenienceInitializers @objc public class Volumedeck : ObjectiveC.NSObject {
@objc public init(runInBackground: Swift.Bool = false, onLocationUpdate: ((Swift.Double, Swift.Double) -> Swift.Void)? = nil, onLocationStatusChange: ((Swift.Bool) -> Swift.Void)? = nil, onStart: (() -> Swift.Void)? = nil, onStop: (() -> Swift.Void)? = nil, activationKey: Swift.String? = nil, autoStart: Swift.Bool = true)
@objc convenience override dynamic public init()
@objc override convenience dynamic public init()
@objc public func start()
@objc public func stop()
@objc public func mockSpeed(speed: Swift.Double)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import UIKit
import _Concurrency
@_inheritsConvenienceInitializers @objc public class Volumedeck : ObjectiveC.NSObject {
@objc public init(runInBackground: Swift.Bool = false, onLocationUpdate: ((Swift.Double, Swift.Double) -> Swift.Void)? = nil, onLocationStatusChange: ((Swift.Bool) -> Swift.Void)? = nil, onStart: (() -> Swift.Void)? = nil, onStop: (() -> Swift.Void)? = nil, activationKey: Swift.String? = nil, autoStart: Swift.Bool = true)
@objc convenience override dynamic public init()
@objc override convenience dynamic public init()
@objc public func start()
@objc public func stop()
@objc public func mockSpeed(speed: Swift.Double)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import UIKit
import _Concurrency
@_inheritsConvenienceInitializers @objc public class Volumedeck : ObjectiveC.NSObject {
@objc public init(runInBackground: Swift.Bool = false, onLocationUpdate: ((Swift.Double, Swift.Double) -> Swift.Void)? = nil, onLocationStatusChange: ((Swift.Bool) -> Swift.Void)? = nil, onStart: (() -> Swift.Void)? = nil, onStop: (() -> Swift.Void)? = nil, activationKey: Swift.String? = nil, autoStart: Swift.Bool = true)
@objc convenience override dynamic public init()
@objc override convenience dynamic public init()
@objc public func start()
@objc public func stop()
@objc public func mockSpeed(speed: Swift.Double)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,59 +10,59 @@
</data>
<key>Headers/VolumedeckiOS-Swift.h</key>
<data>
d2a2sBBHSQKJQ0l98pVsI2tFVZs=
uCTp73phxR6gzlNUnW+sa/UnL8w=
</data>
<key>Info.plist</key>
<data>
L0QT3JQCdAWCjAYUwU+Ng0G2WUI=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/arm64-apple-ios.swiftdoc</key>
<data>
rxjkFPNlJ+WFD5XXXRkX768C9NE=
yR+C8lRekpfvT9ZAN3ybg1ujFsA=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/arm64-apple-ios.swiftinterface</key>
<data>
Gu5Ebmvgw5FTz/qD+Ssg+aU6oDE=
lHJm4p/KfRoPMLOZFRq8TQoG7o0=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/arm64-apple-ios.swiftmodule</key>
<data>
aFv5/C9QQ5HEXcqhxPUA6Ch3iDI=
+Fdbgp6ILM42DjK8+jp8AzGKNUY=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/arm64e-apple-ios.swiftdoc</key>
<data>
H6m3L0Bws34DXMD0w5f7IJ4ttz8=
BYn3U0r8ikyBTlKaUmevU5xPF7M=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/arm64e-apple-ios.swiftinterface</key>
<data>
zx6a4BwAvd0eqyIMlOxvexprSJI=
lHNnZeqEWniAa8goibHYp15s0zs=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/arm64e-apple-ios.swiftmodule</key>
<data>
xmMftmS4p5mmAzH21LwpPY2gq+8=
N7GwdqyTV5HM5QcMid72aRLWiKg=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/armv7-apple-ios.swiftdoc</key>
<data>
G82v9L7+gKqknAppK1AATwQtNwY=
Ka7gvr6xqECX38pGVl4a/qeNzTw=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/armv7-apple-ios.swiftinterface</key>
<data>
Wl/iVLtnkgYy+CQB1S7MAzi52i8=
CKoEloPg4QeCR81FBHpHAywIZWo=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/armv7-apple-ios.swiftmodule</key>
<data>
XFnkeasdtnhHoy0vNKHeG0kVIDA=
VuX7LQn98SVBk0e5ZQfpZSWZGIg=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/armv7s-apple-ios.swiftdoc</key>
<data>
efeXHIgT3DvSDihNoybSrt/MJwo=
iVFtBbg0rUm0GDUX9li2BKoPAro=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/armv7s-apple-ios.swiftinterface</key>
<data>
QnbldsSNNH5cgSz8KYxIT+lg2+A=
vW3At8BH/PDxhuUmqsT0HF2VfJY=
</data>
<key>Modules/VolumedeckiOS.swiftmodule/armv7s-apple-ios.swiftmodule</key>
<data>
kX11vJ5mR+cIgXvruoQKN+T6u2Q=
z1ibEK89QE10V7n0raAtKslRTTE=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -86,143 +86,143 @@
<dict>
<key>hash</key>
<data>
d2a2sBBHSQKJQ0l98pVsI2tFVZs=
uCTp73phxR6gzlNUnW+sa/UnL8w=
</data>
<key>hash2</key>
<data>
G3V8aT9plGwtf/KGIoH57CT9Lg0ZMcO0XdX4bXP4kpk=
6LEZcCoBVajqFIwyj/jhwhk5RCDXcbomc70FOj3qeRo=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/arm64-apple-ios.swiftdoc</key>
<dict>
<key>hash</key>
<data>
rxjkFPNlJ+WFD5XXXRkX768C9NE=
yR+C8lRekpfvT9ZAN3ybg1ujFsA=
</data>
<key>hash2</key>
<data>
quNhP90SZW7ylolZuTBUz217xfkzovoBWX6rbkSkqWk=
Kyqet79iJmdw8GylHJ/wmK5RXuG/Wt07CAeeiGH5884=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/arm64-apple-ios.swiftinterface</key>
<dict>
<key>hash</key>
<data>
Gu5Ebmvgw5FTz/qD+Ssg+aU6oDE=
lHJm4p/KfRoPMLOZFRq8TQoG7o0=
</data>
<key>hash2</key>
<data>
IERrJh7R/l/WmAFMJi7QYwF6Kj4UWKnQdLjd0MqVSqg=
FAkcLns48mfIjWiFdwucNTs2lCFm3YZS1kzheprTazs=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/arm64-apple-ios.swiftmodule</key>
<dict>
<key>hash</key>
<data>
aFv5/C9QQ5HEXcqhxPUA6Ch3iDI=
+Fdbgp6ILM42DjK8+jp8AzGKNUY=
</data>
<key>hash2</key>
<data>
P4bRngCMIZMG4XbFWdf8RuGb+H9nmhuazg1XugVDxO0=
lbMbwdRswfEx5qHOX2VNjKBIoXqzBLUE0gJRhbLU4ag=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/arm64e-apple-ios.swiftdoc</key>
<dict>
<key>hash</key>
<data>
H6m3L0Bws34DXMD0w5f7IJ4ttz8=
BYn3U0r8ikyBTlKaUmevU5xPF7M=
</data>
<key>hash2</key>
<data>
yxKV3ZSd78klhmwFmCSylqGenazHTt7CeV3BNeJr3Ak=
h6xXsEVmMfz0/KaYDHXaIaZfSWpWd+xRoGrph8BISBc=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/arm64e-apple-ios.swiftinterface</key>
<dict>
<key>hash</key>
<data>
zx6a4BwAvd0eqyIMlOxvexprSJI=
lHNnZeqEWniAa8goibHYp15s0zs=
</data>
<key>hash2</key>
<data>
EPBH7UQxdCrJ9+aCJA1OCsLLFO9wigyP5hgpao7JJlI=
9nZeKhFcBQU0nmVVAfOwjmfHbru0JLBTixV4V9ocS58=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/arm64e-apple-ios.swiftmodule</key>
<dict>
<key>hash</key>
<data>
xmMftmS4p5mmAzH21LwpPY2gq+8=
N7GwdqyTV5HM5QcMid72aRLWiKg=
</data>
<key>hash2</key>
<data>
ZLvwdhQsLvmFTbW5DmN1o9ITcw68CIoXF5WipDjka8Q=
Km61yF4PZ5P//3kdI+0Kv53Yz/eSnRP06wzo1Saawxk=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/armv7-apple-ios.swiftdoc</key>
<dict>
<key>hash</key>
<data>
G82v9L7+gKqknAppK1AATwQtNwY=
Ka7gvr6xqECX38pGVl4a/qeNzTw=
</data>
<key>hash2</key>
<data>
6BP+gD9AodtMkCLvLzoewa3sPMK5YLAjkEH1dxfbYJ8=
Ps2s2hlmSTUPs8kNdsB7hhKfnkRqz+3KKdzutt8XTYc=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/armv7-apple-ios.swiftinterface</key>
<dict>
<key>hash</key>
<data>
Wl/iVLtnkgYy+CQB1S7MAzi52i8=
CKoEloPg4QeCR81FBHpHAywIZWo=
</data>
<key>hash2</key>
<data>
ud0x3uR2u9GDurjWcGEOQefXKLEZ0TaF3G8GdHaunAU=
RvYCYbQKU6pNqzat3bbcgownF1Pp6TbIo5AKsAUGddQ=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/armv7-apple-ios.swiftmodule</key>
<dict>
<key>hash</key>
<data>
XFnkeasdtnhHoy0vNKHeG0kVIDA=
VuX7LQn98SVBk0e5ZQfpZSWZGIg=
</data>
<key>hash2</key>
<data>
bLPZJ3V7UhLcNTIqaYkwUrQnnfKJfVWI30WOpqGAQJo=
r+5o7mNklldeceZ2EFwZbnBieM+g3qfiym8o8l+YKN0=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/armv7s-apple-ios.swiftdoc</key>
<dict>
<key>hash</key>
<data>
efeXHIgT3DvSDihNoybSrt/MJwo=
iVFtBbg0rUm0GDUX9li2BKoPAro=
</data>
<key>hash2</key>
<data>
zWsCsbHN4NLuy4/5Dg+H3XXGM5Mx1wkfAbaK8D8i/No=
q9oO7p6HIoW592HulixpmiMcKY0pWuw/BMQOHagbEfM=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/armv7s-apple-ios.swiftinterface</key>
<dict>
<key>hash</key>
<data>
QnbldsSNNH5cgSz8KYxIT+lg2+A=
vW3At8BH/PDxhuUmqsT0HF2VfJY=
</data>
<key>hash2</key>
<data>
bwxzI4d+6RmSNMzw0z1LbIcEGfyJc4VjvarMbpIvkDY=
LDmPYbIW9GQZ7DwICd4cYnAGR3cXIl5TlmZEBd2x8hI=
</data>
</dict>
<key>Modules/VolumedeckiOS.swiftmodule/armv7s-apple-ios.swiftmodule</key>
<dict>
<key>hash</key>
<data>
kX11vJ5mR+cIgXvruoQKN+T6u2Q=
z1ibEK89QE10V7n0raAtKslRTTE=
</data>
<key>hash2</key>
<data>
KqYmUz9aJD1zqu4ZkZ+MExC3/GgppNcOoKurnsjo6RU=
mC1jyf2sQiWnmKy82Vb8isiyFfY+DigIKsogd9j6IIE=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Binary file not shown.
Loading

0 comments on commit 9ebb47f

Please sign in to comment.