From 1f053d639a097060675b71749a509911b2da498b Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:33:45 +0200 Subject: [PATCH] feat(*): extend SDK support to 21 till 34 --- build.gradle | 4 ++-- example/build.gradle | 6 +++--- player/build.gradle | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index 3fead12..ef849e7 100644 --- a/build.gradle +++ b/build.gradle @@ -3,8 +3,8 @@ buildscript { ext { kotlinVersion = '1.8.0' dokkaVersion = '1.8.20' - exoPlayerVersion = '1.1.0' - analyticsVersion = '1.4.0' + exoPlayerVersion = '1.1.1' + analyticsVersion = '2.0.0' } dependencies { diff --git a/example/build.gradle b/example/build.gradle index 62beae4..6489290 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -4,12 +4,12 @@ plugins { } android { - compileSdk 33 + compileSdk 34 defaultConfig { applicationId "video.api.player.example" - minSdk 24 - targetSdk 33 + minSdk 21 + targetSdk 34 versionCode 1 versionName "1.0" diff --git a/player/build.gradle b/player/build.gradle index 3d2362e..cc4642f 100644 --- a/player/build.gradle +++ b/player/build.gradle @@ -6,11 +6,11 @@ plugins { apply from: 'maven-push.gradle' android { - compileSdk 33 + compileSdk 34 defaultConfig { - minSdk 24 - targetSdk 33 + minSdk 21 + targetSdk 34 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArgument "INTEGRATION_TESTS_API_KEY", "${System.getenv("INTEGRATION_TESTS_API_KEY")}" @@ -77,6 +77,6 @@ dependencies { androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' - androidTestImplementation "video.api:android-api-client:1.3.0" + androidTestImplementation "video.api:android-api-client:1.5.2" } \ No newline at end of file