Skip to content

Commit

Permalink
Merge pull request #21 from emartech/MV-741-update-targetSdkVersion
Browse files Browse the repository at this point in the history
Mv 741 update target sdk version
  • Loading branch information
biancalui-emarsys authored Jul 31, 2024
2 parents 3416616 + cdf3363 commit 06f04b2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
14 changes: 7 additions & 7 deletions emarsys-mobile-inbox/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ apply plugin: 'androidx.navigation.safeargs.kotlin'
android {
namespace 'com.emarsys.pnp.inbox'

compileSdkVersion 34
compileSdk 34

buildFeatures {
viewBinding true
}

defaultConfig {
minSdkVersion 24
targetSdkVersion 33
targetSdkVersion 34

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
consumerProguardFiles 'consumer-rules.pro'
Expand All @@ -40,18 +40,18 @@ android {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.fragment:fragment-ktx:1.6.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.6.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
implementation 'com.google.android.material:material:1.12.0'
implementation "com.emarsys:emarsys-sdk:$emarsys_sdk_version"
implementation 'com.squareup.picasso:picasso:2.71828'
}
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ apply plugin: 'kotlin-parcelize'
android {
namespace 'com.emarsys.pnp.inbox.sample'

compileSdkVersion 34
compileSdk 34

defaultConfig {
applicationId 'com.emarsys.pnp.inbox.sample'
minSdkVersion 24
targetSdkVersion 33
targetSdkVersion 34
versionCode emarsys_sdk_version_code
versionName emarsys_sdk_version
}
Expand All @@ -33,7 +33,7 @@ android {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "com.emarsys:emarsys-sdk:$emarsys_sdk_version"
Expand Down

0 comments on commit 06f04b2

Please sign in to comment.