notifly-sdk 4.0.0 → 4.0.2

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.
@@ -88,7 +88,7 @@ dependencies {
88
88
  //noinspection GradleDynamicVersion
89
89
  implementation "com.facebook.react:react-native:+"
90
90
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
91
- implementation "com.github.team-michael:notifly-android-sdk:1.18.5"
91
+ implementation "com.github.team-michael:notifly-android-sdk:1.18.6"
92
92
  }
93
93
 
94
94
  if (isNewArchitectureEnabled()) {
@@ -37,7 +37,7 @@ class NotiflySdkModule internal constructor(private val reactContext: ReactAppli
37
37
  val context: Context = reactContext.currentActivity ?: reactContext.applicationContext
38
38
 
39
39
  Notifly.setSdkType(NotiflyControlTokenImpl(), NotiflySdkWrapperType.REACT_NATIVE)
40
- Notifly.setSdkVersion(NotiflyControlTokenImpl(), "4.0.0")
40
+ Notifly.setSdkVersion(NotiflyControlTokenImpl(), "4.0.2")
41
41
 
42
42
  Notifly.initialize(context, projectId, username, password)
43
43
 
@@ -9,7 +9,7 @@ class NotiflyReactNativeSdk: NSObject {
9
9
  reject _: RCTPromiseRejectBlock
10
10
  ) {
11
11
  Notifly.setSdkType(type: "react_native")
12
- Notifly.setSdkVersion(version: "4.0.0") // TODO: get version from package.json
12
+ Notifly.setSdkVersion(version: "4.0.2") // 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", "2.1.0"
19
+ s.dependency "notifly_sdk", "2.2.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": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "Notifly SDK for React Native",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",