spotny-sdk 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/SpotnySdk.podspec CHANGED
@@ -16,8 +16,9 @@ Pod::Spec.new do |s|
16
16
  s.source_files = "ios/**/*.{h,m,mm,swift,cpp}"
17
17
  s.private_header_files = "ios/**/*.h"
18
18
 
19
- # Kontakt.io beacon SDK (iBeacon scanning)
20
- s.dependency "KontaktSDK", "~> 3.0"
19
+ # NOTE: KontaktSDK must be added to the consumer app via Swift Package Manager.
20
+ # SPM URL: https://github.com/kontaktio/kontakt-ios-sdk
21
+ # KontaktSDK's SPM transitive dependencies (CBORCoding, HALF) are resolved automatically.
21
22
 
22
23
  # Swift bridging header
23
24
  s.pod_target_xcconfig = {
@@ -5,4 +5,6 @@
5
5
 
6
6
  #import <React/RCTBridgeModule.h>
7
7
  #import <React/RCTEventEmitter.h>
8
- #import <KontaktSDK/KontaktSDK.h>
8
+ // KontaktSDK is added by the consumer app via Swift Package Manager;
9
+ // use clang module import so it resolves from the SPM-built framework.
10
+ @import KontaktSDK;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spotny-sdk",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Beacon Scanner",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",