Skip to content

Commit

Permalink
chore(gradle): update dependencies
Browse files Browse the repository at this point in the history
SUITEDEV-34202

Co-authored-by: davidSchuppa <[email protected]>
Co-authored-by: LasOri <[email protected]>
  • Loading branch information
3 people committed Sep 20, 2023
1 parent 915f946 commit 3bd6da7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on_tag_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: echo $ANDROID_HOME > local.properties

- name: Release with Gradle
run: ./gradlew clean assembleRelease publishToSonatype
run: ./gradlew clean assembleRelease && ./gradlew publishToSonatype

- name: Create file 'FAILURE.TXT' and write 'true' into it
if: ${{ failure() }}
Expand Down
30 changes: 15 additions & 15 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ buildscript {
maven { url 'https://developer.huawei.com/repo/' }
}
dependencies {
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.gms:google-services:4.4.0'
classpath 'com.huawei.agconnect:agcp:1.9.1.300'
}
}

dependencies {
if (project.devConfig.useLocalDependency || System.env.DEVELOPMENT_MODE) {
if (project.devConfig.useLocalDependency == true || System.env.DEVELOPMENT_MODE == true) {
implementation project(':emarsys-sdk')
implementation project(':emarsys-firebase')
implementation project(':emarsys-huawei')
Expand All @@ -99,39 +99,39 @@ dependencies {
// Getting a "Could not find firebase-core" error? Make sure you have
// the latest Google Repository in the Android SDK manager

implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.0"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.10"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.10"
implementation 'com.google.android.material:material:1.9.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.google.android.gms:play-services-auth:20.6.0'
implementation 'com.google.android.gms:play-services-auth:20.7.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'io.coil-kt:coil:2.4.0'

implementation "androidx.core:core-ktx:1.10.1"
implementation "androidx.core:core-ktx:1.12.0"
implementation "com.google.android.material:material:1.9.0"
implementation "androidx.compose.ui:ui:1.4.3"
implementation "androidx.compose.material:material:1.4.3"
implementation "androidx.compose.ui:ui-tooling-preview:1.4.3"
implementation "androidx.navigation:navigation-compose:2.6.0"
implementation "androidx.compose.material:material-icons-extended:1.4.3"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"
implementation "androidx.compose.ui:ui:1.5.1"
implementation "androidx.compose.material:material:1.5.1"
implementation "androidx.compose.ui:ui-tooling-preview:1.5.1"
implementation "androidx.navigation:navigation-compose:2.7.2"
implementation "androidx.compose.material:material-icons-extended:1.5.1"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
implementation "androidx.activity:activity-compose:1.7.2"
implementation "io.coil-kt:coil-compose:2.4.0"
implementation "androidx.datastore:datastore-preferences:1.0.0"
implementation "com.chibatching.kotpref:kotpref:2.13.2"
implementation "com.google.firebase:firebase-common-ktx:20.3.3"
implementation "com.google.firebase:firebase-messaging-ktx:23.2.1"
implementation "com.google.android.gms:play-services-auth:20.6.0"
implementation "com.google.android.gms:play-services-auth:20.7.0"
implementation "com.google.accompanist:accompanist-swiperefresh:0.30.1"
implementation "com.google.code.gson:gson:2.10.1"

debugImplementation "androidx.compose.ui:ui-tooling:1.4.3"
debugImplementation "androidx.compose.ui:ui-tooling:1.5.1"

testImplementation 'junit:junit:4.13.2'

androidTestImplementation "androidx.test.ext:junit:1.1.5"
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.4.3"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.5.1"
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation('com.adevinta.android:barista:4.3.0') {
Expand Down

0 comments on commit 3bd6da7

Please sign in to comment.