Skip to content

Commit

Permalink
Merge pull request #22 from emartech/dependencies-update
Browse files Browse the repository at this point in the history
chore: dependencies-update
  • Loading branch information
eduzatoni authored Oct 8, 2024
2 parents 06f04b2 + 806f382 commit 3366bb4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.8.10'
kotlin_version = '1.9.25'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.7.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.8.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
12 changes: 7 additions & 5 deletions emarsys-mobile-inbox/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
coreLibraryDesugaringEnabled true
}

kotlinOptions {
Expand All @@ -41,17 +42,18 @@ dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.appcompat:appcompat:1.7.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.fragment:fragment-ktx:1.8.4'
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.7.7'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.6'
implementation 'androidx.navigation:navigation-fragment-ktx:2.8.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.8.2'
implementation 'com.google.android.material:material:1.12.0'
implementation "com.emarsys:emarsys-sdk:$emarsys_sdk_version"
implementation 'com.squareup.picasso:picasso:2.71828'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.1.2'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Mar 28 15:06:26 CEST 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
13 changes: 12 additions & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ android {
versionName emarsys_sdk_version
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
coreLibraryDesugaringEnabled true
}

kotlinOptions {
jvmTarget = '11'
}

buildTypes {
release {
minifyEnabled false
Expand All @@ -34,8 +44,9 @@ dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "com.emarsys:emarsys-sdk:$emarsys_sdk_version"
implementation project(':emarsys-mobile-inbox')
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.1.2'
}

0 comments on commit 3366bb4

Please sign in to comment.