-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pavel Tychinin
authored and
Pavel Tychinin
committed
May 21, 2024
1 parent
53ad235
commit 60372e6
Showing
30 changed files
with
174 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Headers/NCLifecycleListener.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#pragma once | ||
|
||
/// :nodoc: | ||
@protocol NCLifecycleListener | ||
|
||
- (void)onActivate; | ||
- (void)onBackground; | ||
|
||
@end |
9 changes: 9 additions & 0 deletions
9
Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Headers/NCLifecycleProvider.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#import "NCLifecycleListener.h" | ||
|
||
@protocol NCLifecycleProvider | ||
|
||
- (void)setListener:(__weak id<NCLifecycleListener>)listener; | ||
- (void)reset; | ||
- (bool)isActive; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Info.plist
Binary file not shown.
Binary file modified
BIN
-19.7 KB
(100%)
Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Navigine
Binary file not shown.
9 changes: 9 additions & 0 deletions
9
...e.xcframework/ios-arm64_x86_64-simulator/Navigine.framework/Headers/NCLifecycleListener.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#pragma once | ||
|
||
/// :nodoc: | ||
@protocol NCLifecycleListener | ||
|
||
- (void)onActivate; | ||
- (void)onBackground; | ||
|
||
@end |
9 changes: 9 additions & 0 deletions
9
...e.xcframework/ios-arm64_x86_64-simulator/Navigine.framework/Headers/NCLifecycleProvider.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#import "NCLifecycleListener.h" | ||
|
||
@protocol NCLifecycleProvider | ||
|
||
- (void)setListener:(__weak id<NCLifecycleListener>)listener; | ||
- (void)reset; | ||
- (bool)isActive; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Frameworks/Navigine.xcframework/ios-arm64_x86_64-simulator/Navigine.framework/Info.plist
Binary file not shown.
Binary file modified
BIN
-35.7 KB
(100%)
Frameworks/Navigine.xcframework/ios-arm64_x86_64-simulator/Navigine.framework/Navigine
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'Navigine' | ||
spec.version = '2.4.9' | ||
spec.version = '2.5.0' | ||
spec.license = { :type => 'Custom', :text => 'Navigine Licence'} | ||
spec.summary = "iOS SDK for performing indoor navigation" | ||
spec.platform = :ios, "13.0" | ||
spec.frameworks = ["CoreFoundation", "CoreGraphics", "CoreLocation", "CoreText", "CoreBluetooth", "GLKit", "SystemConfiguration", "OpenGLES", "QuartzCore", "UIKit"] | ||
spec.libraries = ["c++"] | ||
spec.homepage = 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0' | ||
spec.authors = { 'Pavel Tychinin' => '[email protected]' } | ||
spec.source = { :git => 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0.git', :tag => 'v.2.4.9' } | ||
spec.source = { :git => 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0.git', :tag => 'v.2.5.0' } | ||
spec.documentation_url = 'https://github.com/Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0/wiki/Getting-Started' | ||
spec.vendored_frameworks = 'Frameworks/Navigine.xcframework' | ||
spec.preserve_paths = 'Frameworks/Navigine.xcframework' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...rameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Headers/NCLifecycleListener.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#pragma once | ||
|
||
/// :nodoc: | ||
@protocol NCLifecycleListener | ||
|
||
- (void)onActivate; | ||
- (void)onBackground; | ||
|
||
@end |
9 changes: 9 additions & 0 deletions
9
...rameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Headers/NCLifecycleProvider.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#import "NCLifecycleListener.h" | ||
|
||
@protocol NCLifecycleProvider | ||
|
||
- (void)setListener:(__weak id<NCLifecycleListener>)listener; | ||
- (void)reset; | ||
- (bool)isActive; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
...Demo/NavigineDemo/Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Info.plist
Binary file not shown.
Binary file modified
BIN
-19.7 KB
(100%)
...neDemo/NavigineDemo/Frameworks/Navigine.xcframework/ios-arm64/Navigine.framework/Navigine
Binary file not shown.
9 changes: 9 additions & 0 deletions
9
...e.xcframework/ios-arm64_x86_64-simulator/Navigine.framework/Headers/NCLifecycleListener.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#pragma once | ||
|
||
/// :nodoc: | ||
@protocol NCLifecycleListener | ||
|
||
- (void)onActivate; | ||
- (void)onBackground; | ||
|
||
@end |
9 changes: 9 additions & 0 deletions
9
...e.xcframework/ios-arm64_x86_64-simulator/Navigine.framework/Headers/NCLifecycleProvider.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#import "NCLifecycleListener.h" | ||
|
||
@protocol NCLifecycleProvider | ||
|
||
- (void)setListener:(__weak id<NCLifecycleListener>)listener; | ||
- (void)reset; | ||
- (bool)isActive; | ||
|
||
@end |
Oops, something went wrong.