Skip to content

Commit

Permalink
CMP-4037 update android api 33 (#93)
Browse files Browse the repository at this point in the history
* update android native sdk

* use compile version 33 for sample and test apps
  • Loading branch information
nicolas-chaix-didomi authored Oct 10, 2023
1 parent c112806 commit ef4401a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@ dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

implementation "io.didomi.sdk:android:1.82.0"
implementation "io.didomi.sdk:android:1.83.1"
}
6 changes: 3 additions & 3 deletions sampleApp/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import org.apache.tools.ant.taskdefs.condition.Os
buildscript {
ext.kotlin_version = "1.7.20"
ext {
buildToolsVersion = "31.0.0"
buildToolsVersion = "33.0.2"
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
compileSdkVersion = 33
targetSdkVersion = 33
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
ndkVersion = "24.0.8215888"
Expand Down
6 changes: 3 additions & 3 deletions testApp/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import org.apache.tools.ant.taskdefs.condition.Os
buildscript {
ext.kotlin_version = "1.7.20"
ext {
buildToolsVersion = "31.0.0"
buildToolsVersion = "33.0.2"
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
compileSdkVersion = 33
targetSdkVersion = 33
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
ndkVersion = "24.0.8215888"
Expand Down

0 comments on commit ef4401a

Please sign in to comment.