From 3d6415c0d4687cfc716a5d4fb399b3b1418f8177 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Mon, 15 Jul 2024 16:20:30 -0700 Subject: [PATCH] DTSERWONE-1985 Add github actions --- balancerepository/build.gradle | 2 ++ build.gradle | 2 +- commonui/build.gradle | 2 ++ receiptrepository/build.gradle | 2 +- receiptui/build.gradle | 1 + testutils/build.gradle | 1 + transfermethodrepository/build.gradle | 2 ++ transfermethodui/build.gradle | 2 ++ 8 files changed, 12 insertions(+), 2 deletions(-) diff --git a/balancerepository/build.gradle b/balancerepository/build.gradle index 9f64eff53..f482d1ef0 100644 --- a/balancerepository/build.gradle +++ b/balancerepository/build.gradle @@ -6,6 +6,8 @@ project.ext { apply from: "$rootProject.projectDir/publish.gradle" dependencies { + implementation "androidx.annotation:annotation:1.8.0" + testImplementation "org.robolectric:robolectric:$robolectricVersion" testImplementation "com.squareup.okhttp3:mockwebserver:$mockWebServerVersion" testImplementation project(':testutils') diff --git a/build.gradle b/build.gradle index f8dff1874..1ad9d3024 100644 --- a/build.gradle +++ b/build.gradle @@ -38,7 +38,7 @@ subprojects { targetVersion = 30 codeVersion = 1 - hyperwalletCoreVersion = '1.0.0-beta12' + hyperwalletCoreVersion = '1.0.0-pentest12' hyperwalletInsightVersion = '1.0.0-beta02' // androidMaterialVersion = '1.0.0' diff --git a/commonui/build.gradle b/commonui/build.gradle index f709dadb4..ebcdd0028 100644 --- a/commonui/build.gradle +++ b/commonui/build.gradle @@ -12,6 +12,8 @@ apply from: "$rootProject.projectDir/android-library.gradle" apply from: "$rootProject.projectDir/publish.gradle" dependencies { + implementation "androidx.annotation:annotation:1.8.0" + implementation "com.hyperwallet.android:insight-sdk:$hyperwalletInsightVersion" implementation project(':commonrepository') diff --git a/receiptrepository/build.gradle b/receiptrepository/build.gradle index 2c7f54326..20d562593 100644 --- a/receiptrepository/build.gradle +++ b/receiptrepository/build.gradle @@ -8,7 +8,7 @@ apply from: "$rootProject.projectDir/publish.gradle" dependencies { - + implementation "androidx.annotation:annotation:1.8.0" implementation "androidx.legacy:legacy-support-v4:$legacySupportV4Version" implementation "androidx.paging:paging-runtime:$pagingRuntimeVersion" api project(':commonrepository') diff --git a/receiptui/build.gradle b/receiptui/build.gradle index d0e986adc..3a5592466 100644 --- a/receiptui/build.gradle +++ b/receiptui/build.gradle @@ -15,6 +15,7 @@ dependencies { implementation project(":receiptrepository") implementation project(path: ':userrepository') implementation project(":transfermethodrepository") + implementation "androidx.annotation:annotation:1.8.0" implementation "com.google.android.material:material:$androidMaterialVersion" implementation "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion" diff --git a/testutils/build.gradle b/testutils/build.gradle index b174bee8e..70465952a 100644 --- a/testutils/build.gradle +++ b/testutils/build.gradle @@ -3,6 +3,7 @@ description = 'Test Utils for Hyperwallet UI SDK' apply from: "$rootProject.projectDir/android-library.gradle" dependencies { + implementation "androidx.annotation:annotation:1.8.0" implementation "androidx.test:rules:$testRulesVersion" implementation "androidx.test.espresso:espresso-core:$espressoVersion" implementation "com.squareup.okhttp3:mockwebserver:$mockServerVersion" diff --git a/transfermethodrepository/build.gradle b/transfermethodrepository/build.gradle index 4b6a11851..65757d01c 100644 --- a/transfermethodrepository/build.gradle +++ b/transfermethodrepository/build.gradle @@ -9,6 +9,8 @@ apply from: "$rootProject.projectDir/publish.gradle" dependencies { api project(':commonrepository') + implementation "androidx.annotation:annotation:1.8.0" + testImplementation "org.robolectric:robolectric:$robolectricVersion" testImplementation "com.squareup.okhttp3:mockwebserver:$mockWebServerVersion" testImplementation project(':testutils') diff --git a/transfermethodui/build.gradle b/transfermethodui/build.gradle index 207b83eb2..36e8677b6 100644 --- a/transfermethodui/build.gradle +++ b/transfermethodui/build.gradle @@ -17,6 +17,8 @@ apply from: "$rootProject.projectDir/publish.gradle" dependencies { + implementation "androidx.annotation:annotation:1.8.0" + implementation "androidx.appcompat:appcompat:$appcompatVersion" implementation "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion" implementation "androidx.legacy:legacy-support-v4:$legacySupportV4Version"