Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #16 from opentok/2.13
Browse files Browse the repository at this point in the history
update android and ios to use 2.13.0 sdks
  • Loading branch information
Manik Sachdeva authored Jan 26, 2018
2 parents 0186b25 + bd08413 commit 4aea02d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build-extras.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ allprojects {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.opentok.android:opentok-android-sdk:2.12.0'
compile 'com.opentok.android:opentok-android-sdk:2.13.0'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.volley:volley:1.1.0'
Expand Down
2 changes: 1 addition & 1 deletion scripts/downloadiOSSDK.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

module.exports = function (context) {
var IosSDKVersion = "OpenTok-iOS-2.12.0";
var IosSDKVersion = "OpenTok-iOS-2.13.0";
var downloadFile = require('./downloadFile.js'),
exec = require('./exec/exec.js'),
Q = context.requireCordovaModule('q'),
Expand Down
2 changes: 1 addition & 1 deletion src/android/OpenTokAndroidPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,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.12.0");
params.put("build", "2.13.0");
params.put("session_id", sessionId);


Expand Down
2 changes: 1 addition & 1 deletion src/ios/OpenTokPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ -(void)logOT{
NSMutableDictionary *logData = [[NSMutableDictionary alloc]init];
[logData setObject:@"cp_initialize" forKey:@"action"];
[logData setObject:apiKey forKey:@"partner_id"];
[logData setObject:@"2.12.0" forKey:@"build"];
[logData setObject:@"2.13.0" 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 4aea02d

Please sign in to comment.