@stream-io/video-react-native-sdk 1.4.19 → 1.4.20

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.4.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.19...@stream-io/video-react-native-sdk-1.4.20) (2024-12-16)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **expo:** tools not present when notifee service is added ([edccf62](https://github.com/GetStream/stream-video-js/commit/edccf62261183198871f3962ef19650ed4fc1729))
11
+
5
12
  ## [1.4.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.18...@stream-io/video-react-native-sdk-1.4.19) (2024-12-16)
6
13
 
7
14
 
@@ -4,5 +4,5 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.version = void 0;
7
- const version = exports.version = '1.4.19';
7
+ const version = exports.version = '1.4.20';
8
8
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const version = '1.4.19';
1
+ export const version = '1.4.20';
2
2
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const version = "1.4.19";
1
+ export declare const version = "1.4.20";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const config_plugins_1 = require("@expo/config-plugins");
4
- const { prefixAndroidKeys, getMainApplicationOrThrow, getMainActivityOrThrow } = config_plugins_1.AndroidConfig.Manifest;
4
+ const { prefixAndroidKeys, getMainApplicationOrThrow, getMainActivityOrThrow, ensureToolsAvailable, } = config_plugins_1.AndroidConfig.Manifest;
5
5
  function getNotifeeService(isKeepCallAliveEnabled = false) {
6
6
  /* We add this service to the AndroidManifest.xml:
7
7
  <service
@@ -29,6 +29,7 @@ const withStreamVideoReactNativeSDKManifest = (configuration, props) => {
29
29
  const androidManifest = config.modResults;
30
30
  const mainApplication = getMainApplicationOrThrow(androidManifest);
31
31
  if (props?.ringingPushNotifications || props?.androidKeepCallAlive) {
32
+ ensureToolsAvailable(androidManifest);
32
33
  /* Add the notifee foreground Service */
33
34
  let services = mainApplication.service ?? [];
34
35
  // we filter out the existing notifee service (if any) so that we can override it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-native-sdk",
3
- "version": "1.4.19",
3
+ "version": "1.4.20",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "module": "dist/module/index.js",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '1.4.19';
1
+ export const version = '1.4.20';