@stream-io/video-react-native-sdk 1.0.6 → 1.0.7
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 +7 -0
- package/dist/commonjs/version.js +1 -1
- package/dist/module/version.js +1 -1
- package/dist/typescript/version.d.ts +1 -1
- package/expo-config-plugin/README.md +2 -2
- package/expo-config-plugin/dist/withAndroidManifest.js +2 -2
- package/expo-config-plugin/dist/withAndroidPermissions.js +0 -3
- package/package.json +1 -1
- package/src/version.ts +1 -1
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.0.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.6...@stream-io/video-react-native-sdk-1.0.7) (2024-09-11)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* replace dataSync with shortService for android foreground service type ([#1485](https://github.com/GetStream/stream-video-js/issues/1485)) ([2681535](https://github.com/GetStream/stream-video-js/commit/26815357f66b43f94e1d939fb30a6cdb85c77a5f))
|
|
11
|
+
|
|
5
12
|
## [1.0.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.5...@stream-io/video-react-native-sdk-1.0.6) (2024-09-11)
|
|
6
13
|
|
|
7
14
|
### Dependency Updates
|
package/dist/commonjs/version.js
CHANGED
package/dist/module/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '1.0.
|
|
1
|
+
export const version = '1.0.7';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "1.0.
|
|
1
|
+
export declare const version = "1.0.7";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -45,10 +45,10 @@ public class MainApplication extends Application implements ReactApplication {
|
|
|
45
45
|
Add service named `app.notifee.core.ForegroundService`.
|
|
46
46
|
|
|
47
47
|
```xml
|
|
48
|
-
<service android:name="app.notifee.core.ForegroundService" android:stopWithTask="true" android:foregroundServiceType="
|
|
48
|
+
<service android:name="app.notifee.core.ForegroundService" android:stopWithTask="true" android:foregroundServiceType="shortService"/>
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
The `@stream-io/video-react-native-sdk` also adds the appropriate android permissions such as `POST_NOTIFICATIONS`, `FOREGROUND_SERVICE`, `
|
|
51
|
+
The `@stream-io/video-react-native-sdk` also adds the appropriate android permissions such as `POST_NOTIFICATIONS`, `FOREGROUND_SERVICE`, `BLUETOOTH`, `BLUETOOTH_ADMIN` and `BLUETOOTH_CONNECT` to the `AndroidManifest.xml`.
|
|
52
52
|
|
|
53
53
|
### iOS
|
|
54
54
|
|
|
@@ -7,9 +7,9 @@ function getNotifeeService() {
|
|
|
7
7
|
<service
|
|
8
8
|
android:name="app.notifee.core.ForegroundService"
|
|
9
9
|
android:stopWithTask="true"
|
|
10
|
-
android:foregroundServiceType="
|
|
10
|
+
android:foregroundServiceType="shortService" />
|
|
11
11
|
*/
|
|
12
|
-
const foregroundServiceType = '
|
|
12
|
+
const foregroundServiceType = 'shortService';
|
|
13
13
|
let head = prefixAndroidKeys({
|
|
14
14
|
name: 'app.notifee.core.ForegroundService',
|
|
15
15
|
stopWithTask: 'true',
|
|
@@ -9,9 +9,6 @@ const withStreamVideoReactNativeSDKAndroidPermissions = (configuration, props) =
|
|
|
9
9
|
];
|
|
10
10
|
if (props?.ringingPushNotifications || props?.enableScreenshare) {
|
|
11
11
|
permissions.push('android.permission.POST_NOTIFICATIONS', 'android.permission.FOREGROUND_SERVICE');
|
|
12
|
-
if (props?.ringingPushNotifications) {
|
|
13
|
-
permissions.push('android.permission.FOREGROUND_SERVICE_DATA_SYNC');
|
|
14
|
-
}
|
|
15
12
|
if (props?.enableScreenshare) {
|
|
16
13
|
permissions.push('android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION');
|
|
17
14
|
}
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.0.
|
|
1
|
+
export const version = '1.0.7';
|