From d0ae1081b77bce663de4aa7e643e2e15cbfc62a2 Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Thu, 19 Sep 2024 16:39:15 +0200 Subject: [PATCH] Update target SDK and version --- DeviceIdentifiersWrapper/build.gradle | 14 +++++++------- settings.gradle | 8 ++++++-- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/DeviceIdentifiersWrapper/build.gradle b/DeviceIdentifiersWrapper/build.gradle index 480cafd..64b0dad 100644 --- a/DeviceIdentifiersWrapper/build.gradle +++ b/DeviceIdentifiersWrapper/build.gradle @@ -3,13 +3,13 @@ plugins { } android { - compileSdkVersion 33 + compileSdkVersion 34 defaultConfig { minSdkVersion 19 - targetSdkVersion 33 - versionCode 100 - versionName "0.10.0" + targetSdkVersion 34 + versionCode 110 + versionName "0.11.0" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' @@ -32,7 +32,7 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.0.0' testImplementation 'junit:junit:4.13' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' - compileOnly 'com.symbol:emdk:+' + androidTestImplementation 'com.android.support.test:runner:1.0.2' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + compileOnly 'com.symbol:emdk:9.1.1' } diff --git a/settings.gradle b/settings.gradle index 88cd915..d658013 100644 --- a/settings.gradle +++ b/settings.gradle @@ -3,8 +3,10 @@ pluginManagement { gradlePluginPortal() google() mavenCentral() - jcenter() maven { url 'https://jitpack.io' } + maven { + url = "https://zebratech.jfrog.io/artifactory/EMDK-Android/" + } } } dependencyResolutionManagement { @@ -12,8 +14,10 @@ dependencyResolutionManagement { repositories { google() mavenCentral() - jcenter() maven { url 'https://jitpack.io' } + maven { + url = "https://zebratech.jfrog.io/artifactory/EMDK-Android/" + } } }