Skip to content

Commit

Permalink
Merge pull request #4 from CaioMelo8/bugfix/opentok-sdk
Browse files Browse the repository at this point in the history
Update @opentok/client to 2.22.5, Opentok Android/iOS SDK to 2.22.3.
  • Loading branch information
CaioMelo8 authored Oct 9, 2023
2 parents 24f9096 + eb1389a commit 872ca18
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build-extras.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ allprojects {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.opentok.android:opentok-android-sdk:2.19.0'
}
implementation 'com.opentok.android:opentok-android-sdk:2.22.3'
}
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
]
},
"dependencies": {
"@opentok/client": "2.19.2",
"@opentok/client": "2.22.5",
"exec": "^0.2.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="OpenTok" spec="2.19.0" />
<pod name="OpenTok" spec="2.22.3" />
</pods>
</podspec>

Expand Down
2 changes: 1 addition & 1 deletion src/android/OpenTokAndroidPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ protected Map<String, String> getParams()
params.put("partner_id", apiKey);
params.put("payload", payload.toString());
params.put("source", "https://github.com/opentok/cordova-plugin-opentok");
params.put("build", "2.19.0");
params.put("build", "2.22.3");
params.put("session_id", sessionId);
if (connectionId != null) {
params.put("action", "cp_on_connect");
Expand Down
2 changes: 1 addition & 1 deletion src/ios/OpenTokPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ -(void)logOT:(NSString*)connectionId{
[payload setObject:@"3.4.3" forKey:@"cp_version"];
NSMutableDictionary *logData = [[NSMutableDictionary alloc]init];
[logData setObject:apiKey forKey:@"partner_id"];
[logData setObject:@"2.19.0" forKey:@"build"];
[logData setObject:@"2.22.3" forKey:@"build"];
[logData setObject:@"https://github.com/opentok/cordova-plugin-opentok" forKey:@"source"];
[logData setObject:@"info" forKey:@"payload_type"];
[logData setObject:payload forKey:@"payload"];
Expand Down

0 comments on commit 872ca18

Please sign in to comment.