Skip to content

Commit

Permalink
Update target SDK and version
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrudu committed Sep 19, 2024
1 parent c3bb313 commit d0ae108
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions DeviceIdentifiersWrapper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand All @@ -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'
}
8 changes: 6 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,21 @@ pluginManagement {
gradlePluginPortal()
google()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
maven {
url = "https://zebratech.jfrog.io/artifactory/EMDK-Android/"
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
maven {
url = "https://zebratech.jfrog.io/artifactory/EMDK-Android/"
}
}
}

Expand Down

0 comments on commit d0ae108

Please sign in to comment.