notifly-sdk 3.6.0 → 3.6.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.
@@ -35,7 +35,7 @@ class NotiflySdkModule internal constructor(private val reactContext: ReactAppli
35
35
  Notifly.setSdkType(NotiflyControlTokenImpl(), NotiflySdkWrapperType.REACT_NATIVE)
36
36
  Notifly.setSdkVersion(
37
37
  NotiflyControlTokenImpl(),
38
- "3.6.0"
38
+ "3.6.1"
39
39
  )
40
40
 
41
41
  Notifly.initialize(context, projectId, username, password)
@@ -9,7 +9,7 @@ class NotiflyReactNativeSdk: NSObject {
9
9
  reject _: RCTPromiseRejectBlock
10
10
  ) {
11
11
  Notifly.setSdkType(type: "react_native")
12
- Notifly.setSdkVersion(version: "3.6.0") // TODO: get version from package.json
12
+ Notifly.setSdkVersion(version: "3.6.1") // TODO: get version from package.json
13
13
  Notifly.initialize(projectId: projectId, username: username, password: password)
14
14
  resolve(nil)
15
15
  }
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
16
16
 
17
17
  s.source_files = "ios/**/*.{h,m,mmm,swift}"
18
18
 
19
- s.dependency "notifly_sdk", "1.13.1"
19
+ s.dependency "notifly_sdk", "1.14.0"
20
20
  s.dependency "React-Core"
21
21
 
22
22
  # Don't install the dependencies when we run `pod install` in the old architecture.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notifly-sdk",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "Notifly SDK for React Native",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",