appambit-push-notifications 1.0.0 → 1.0.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.
@@ -20,13 +20,13 @@ Pod::Spec.new do |s|
20
20
  core.exclude_files = "ios/AppAmbitRNNotificationService.swift"
21
21
  core.private_header_files = "ios/**/*.h"
22
22
  core.frameworks = 'Network'
23
- core.dependency 'AppAmbitPushNotifications', '~> 1.0.0'
23
+ core.dependency 'AppAmbitPushNotifications', '~> 1.0.2'
24
24
  core.dependency 'AppAmbitSdk'
25
25
  install_modules_dependencies(core)
26
26
  end
27
27
 
28
28
  s.subspec 'Extension' do |ext|
29
29
  ext.source_files = "ios/AppAmbitRNNotificationService.swift"
30
- ext.dependency 'AppAmbitPushNotifications', '~> 1.0.0'
30
+ ext.dependency 'AppAmbitPushNotifications', '~> 1.0.2'
31
31
  end
32
32
  end
package/README.md CHANGED
@@ -267,7 +267,7 @@ To display rich notifications with image attachments, create a Notification Serv
267
267
  2. **Add the pod** to your `Podfile` outside the main target:
268
268
  ```ruby
269
269
  target 'NotificationService' do
270
- pod 'AppAmbitPushNotificationsExtension', '~> 1.0.0'
270
+ pod 'AppAmbitPushNotificationsExtension', '~> 1.0.1'
271
271
  end
272
272
  ```
273
273
  Then run `pod install` under `ios/`.
@@ -73,14 +73,14 @@ dependencies {
73
73
  // ─── Remote Push SDK Dependency ─────────────────────────────────────────────
74
74
  // 'api' (not 'implementation') is required so that classes like PushNotifications
75
75
  // are visible at compile time to the consuming app (e.g. MainActivity.kt).
76
- api 'com.appambit:appambit.push.notifications:1.0.0'
76
+ api 'com.appambit:appambit.push.notifications:1.0.2'
77
77
 
78
78
  // ─── Core SDK (compile-time only) ───────────────────────────────────────────
79
79
  // The Push SDK depends on the AppAmbit Core SDK. We reference Core's `AppAmbit`
80
80
  // class (e.g. AppAmbit.isInitialized()) at compile time, but it is provided at
81
81
  // runtime by the consuming app's Core SDK dependency, so use `compileOnly` to
82
82
  // avoid bundling a second copy and risking duplicate-class conflicts.
83
- compileOnly 'com.appambit:appambit:1.0.0'
83
+ compileOnly 'com.appambit:appambit:1.0.2'
84
84
 
85
85
  // ─── Firebase (required transitively by the push AAR) ──────────────────────
86
86
  implementation platform('com.google.firebase:firebase-bom:33.6.0')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appambit-push-notifications",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Push Notifications SDK for Android to send push notifications via AppAmbit platform.",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",