@capgo/capacitor-stream-call 8.0.23 → 8.0.25
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/Package.swift
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
import PackageDescription
|
|
3
3
|
|
|
4
4
|
let package = Package(
|
|
5
|
-
name: "
|
|
5
|
+
name: "CapgoCapacitorStreamCall",
|
|
6
6
|
platforms: [.iOS(.v15)],
|
|
7
7
|
products: [
|
|
8
8
|
.library(
|
|
9
|
-
name: "
|
|
9
|
+
name: "CapgoCapacitorStreamCall",
|
|
10
10
|
targets: ["StreamCallPlugin"])
|
|
11
11
|
],
|
|
12
12
|
dependencies: [
|
|
13
13
|
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"),
|
|
14
|
-
.package(url: "https://github.com/GetStream/stream-video-swift.git", exact: "1.
|
|
14
|
+
.package(url: "https://github.com/GetStream/stream-video-swift.git", exact: "1.44.0")
|
|
15
15
|
],
|
|
16
16
|
targets: [
|
|
17
17
|
.target(
|
package/android/build.gradle
CHANGED
|
@@ -39,7 +39,7 @@ android {
|
|
|
39
39
|
buildTypes {
|
|
40
40
|
release {
|
|
41
41
|
minifyEnabled false
|
|
42
|
-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
42
|
+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
lintOptions {
|
|
@@ -86,7 +86,7 @@ dependencies {
|
|
|
86
86
|
// Stream dependencies
|
|
87
87
|
implementation("io.getstream:stream-video-android-ui-compose:1.16.0")
|
|
88
88
|
implementation("io.getstream:stream-video-android-core:1.16.0")
|
|
89
|
-
implementation("io.getstream:stream-android-push:1.3.
|
|
89
|
+
implementation("io.getstream:stream-android-push:1.3.4")
|
|
90
90
|
implementation("io.getstream:stream-android-push-firebase:1.3.2")
|
|
91
91
|
|
|
92
92
|
// Firebase dependencies using BOM
|
|
@@ -12,7 +12,7 @@ import WebKit
|
|
|
12
12
|
*/
|
|
13
13
|
@objc(StreamCallPlugin)
|
|
14
14
|
public class StreamCallPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
15
|
-
private let pluginVersion: String = "8.0.
|
|
15
|
+
private let pluginVersion: String = "8.0.25"
|
|
16
16
|
public let identifier = "StreamCallPlugin"
|
|
17
17
|
public let jsName = "StreamCall"
|
|
18
18
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/capacitor-stream-call",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.25",
|
|
4
4
|
"description": "Uses the https://getstream.io/ SDK to implement calling in Capacitor",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -43,20 +43,21 @@
|
|
|
43
43
|
"capacitor-plugin"
|
|
44
44
|
],
|
|
45
45
|
"scripts": {
|
|
46
|
-
"verify": "
|
|
47
|
-
"verify:ios": "xcodebuild -scheme
|
|
46
|
+
"verify": "bun run verify:ios && bun run verify:android && bun run verify:web",
|
|
47
|
+
"verify:ios": "xcodebuild -scheme CapgoCapacitorStreamCall -destination generic/platform=iOS",
|
|
48
48
|
"verify:android": "cd android && ./gradlew clean build test && cd ..",
|
|
49
|
-
"verify:web": "
|
|
50
|
-
"lint": "
|
|
51
|
-
"fmt": "
|
|
49
|
+
"verify:web": "bun run build",
|
|
50
|
+
"lint": "bun run eslint && bun run prettier -- --check && bun run swiftlint -- lint",
|
|
51
|
+
"fmt": "bun run eslint -- --fix && bun run prettier -- --write && bun run swiftlint -- --fix --format",
|
|
52
52
|
"eslint": "eslint . --ext ts",
|
|
53
53
|
"prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
|
|
54
54
|
"swiftlint": "node-swiftlint",
|
|
55
55
|
"docgen": "docgen --api StreamCallPlugin --output-readme README.md --output-json dist/docs.json",
|
|
56
|
-
"build": "
|
|
56
|
+
"build": "bun run clean && bun run docgen && tsc && rollup -c rollup.config.mjs",
|
|
57
57
|
"clean": "rimraf ./dist",
|
|
58
58
|
"watch": "tsc --watch",
|
|
59
|
-
"prepublishOnly": "
|
|
59
|
+
"prepublishOnly": "bun run build",
|
|
60
|
+
"check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
|
|
60
61
|
},
|
|
61
62
|
"devDependencies": {
|
|
62
63
|
"@capacitor/android": "^8.0.0",
|