Skip to content

Commit

Permalink
Updated to latest opentok/other package version
Browse files Browse the repository at this point in the history
  • Loading branch information
devwithzachary committed Nov 14, 2022
1 parent eb4e0c5 commit c90f5bf
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 22 deletions.
34 changes: 18 additions & 16 deletions accelerator-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ apply plugin: 'kotlin-android'
apply plugin: 'maven'

android {
def acceleratorCoreVersion = '2.0.1'
def acceleratorCoreVersion = '2.0.2'

compileSdkVersion 30
compileSdkVersion 32
buildToolsVersion "30.0.2"

defaultConfig {
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName "1.0.24"
minSdkVersion 24
targetSdkVersion 32
versionCode 2
versionName "1.0.25"
project.archivesBaseName = "opentok-accelerator-core"
project.version = acceleratorCoreVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -79,27 +79,29 @@ android {
packagingOptions {
exclude 'META-INF/ASL2.0'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.md'
exclude 'META-INF/LICENSE-notice.md'
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.opentok.android:opentok-solutions-logging:1.0.3'

implementation ("com.opentok.android:opentok-android-sdk:2.21.1") {
implementation ("com.opentok.android:opentok-android-sdk:2.23.1") {
transitive = true
}

implementation 'com.google.android.material:material:1.2.1'
implementation 'com.google.android.material:material:1.6.0'
implementation "androidx.multidex:multidex:2.0.1"
implementation "androidx.annotation:annotation:1.1.0"
implementation "androidx.constraintlayout:constraintlayout:2.0.4"

androidTestImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'org.amshove.kluent:kluent-android:1.63'
androidTestImplementation "io.mockk:mockk-android:1.10.2"
implementation "androidx.annotation:annotation:1.5.0"
implementation "androidx.constraintlayout:constraintlayout:2.1.4"

androidTestImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
androidTestImplementation 'org.amshove.kluent:kluent-android:1.69'
androidTestImplementation "io.mockk:mockk-android:1.13.2"
}

if (project.hasProperty("MAVEN_USERNAME") && project.hasProperty("MAVEN_PASSWORD")) {
Expand Down
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.4.20'
ext.kotlin_version = '1.7.20'

repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -18,12 +18,11 @@ buildscript {

allprojects {
repositories {
jcenter()
mavenCentral()
google()

repositories {
maven { url 'https://maven.google.com' }
maven { url 'http://tokbox.bintray.com/maven' }
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
org.gradle.jvmargs=-Xmx4000m

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
Expand Down

0 comments on commit c90f5bf

Please sign in to comment.