Skip to content

Commit 52838ae

Browse files
Merge pull request #30 from Vonage-Community/Android-1.2
Upgraded SDK to v1.2.1 and tartinging Android SDK v34
2 parents 1f5c07c + 28e4a45 commit 52838ae

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

app-to-app-kotlin/app-to-app/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
applicationId "com.vonage.tutorial.apptoapp"
99
minSdkVersion 23
10-
targetSdkVersion 33
11-
compileSdk 33
10+
targetSdkVersion 34
11+
compileSdk 34
1212
versionCode 1
1313
versionName "1.0"
1414

@@ -34,13 +34,13 @@ android {
3434
dependencies {
3535

3636
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
37-
implementation 'androidx.core:core-ktx:1.10.1'
37+
implementation 'androidx.core:core-ktx:1.12.0'
3838
implementation 'androidx.appcompat:appcompat:1.6.1'
39-
implementation 'com.google.android.material:material:1.9.0'
39+
implementation 'com.google.android.material:material:1.10.0'
4040
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4141
testImplementation 'junit:junit:4.13.2'
4242
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
4343
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4444

45-
implementation 'com.vonage:client-sdk-voice:1.1.2'
45+
implementation 'com.vonage:client-sdk-voice:1.2.1'
4646
}

app-to-app-kotlin/app-to-app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.8.20"
3+
ext.kotlin_version = "1.8.22"
44
repositories {
55
google()
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:8.1.1'
9+
classpath 'com.android.tools.build:gradle:8.1.4'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111

1212
// NOTE: Do not place your application dependencies here; they belong

app-to-phone-kotlin/app-to-phone/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
applicationId "com.vonage.tutorial.voice.apptophone"
99
minSdkVersion 23
10-
targetSdkVersion 33
11-
compileSdk 33
10+
targetSdkVersion 34
11+
compileSdk 34
1212
versionCode 1
1313
versionName "1.0"
1414

@@ -34,13 +34,13 @@ android {
3434
dependencies {
3535

3636
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
37-
implementation 'androidx.core:core-ktx:1.10.1'
37+
implementation 'androidx.core:core-ktx:1.12.0'
3838
implementation 'androidx.appcompat:appcompat:1.6.1'
39-
implementation 'com.google.android.material:material:1.9.0'
39+
implementation 'com.google.android.material:material:1.10.0'
4040
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4141
testImplementation 'junit:junit:4.13.2'
4242
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
4343
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4444

45-
implementation 'com.vonage:client-sdk-voice:1.1.2'
45+
implementation 'com.vonage:client-sdk-voice:1.2.1'
4646
}

app-to-phone-kotlin/app-to-phone/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.8.20"
3+
ext.kotlin_version = "1.8.22"
44

55
repositories {
66
google()
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.1.1'
10+
classpath 'com.android.tools.build:gradle:8.1.4'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212

1313
// NOTE: Do not place your application dependencies here; they belong

phone-to-app-kotlin/phone-to-app/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
applicationId "com.vonage.tutorial.phonetoapp"
99
minSdkVersion 23
10-
targetSdkVersion 33
11-
compileSdk 33
10+
targetSdkVersion 34
11+
compileSdk 34
1212
versionCode 1
1313
versionName "1.0"
1414

@@ -34,13 +34,13 @@ android {
3434
dependencies {
3535

3636
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
37-
implementation 'androidx.core:core-ktx:1.10.1'
37+
implementation 'androidx.core:core-ktx:1.12.0'
3838
implementation 'androidx.appcompat:appcompat:1.6.1'
39-
implementation 'com.google.android.material:material:1.9.0'
39+
implementation 'com.google.android.material:material:1.10.0'
4040
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4141
testImplementation 'junit:junit:4.13.2'
4242
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
4343
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4444

45-
implementation 'com.vonage:client-sdk-voice:1.1.2'
45+
implementation 'com.vonage:client-sdk-voice:1.2.1'
4646
}

phone-to-app-kotlin/phone-to-app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.8.20"
3+
ext.kotlin_version = "1.8.22"
44
repositories {
55
google()
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:8.1.1'
9+
classpath 'com.android.tools.build:gradle:8.1.4'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111

1212
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)