Skip to content

Commit 8691104

Browse files
authored
Merge pull request #384 from code-payments/feat/tip-chat-proto
feat: add in-memory tip chat prototype behind beta flags
2 parents a9640ee + f29b943 commit 8691104

File tree

95 files changed

+3134
-658
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+3134
-658
lines changed

api/build.gradle.kts

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ android {
4949

5050
java {
5151
toolchain {
52-
languageVersion.set(JavaLanguageVersion.of(17))
52+
languageVersion.set(JavaLanguageVersion.of(Versions.java))
5353
}
5454
}
5555

@@ -69,14 +69,10 @@ android {
6969
}
7070

7171
dependencies {
72-
implementation(project(":model"))
73-
implementation(project(":ed25519"))
72+
implementation(project(":common"))
7473

75-
implementation(Libs.kotlin_stdlib)
7674
implementation(Libs.rxjava)
77-
api(Libs.kotlinx_coroutines_core)
7875
implementation(Libs.kotlinx_coroutines_core)
79-
api(Libs.kotlinx_coroutines_rx3)
8076
implementation(Libs.kotlinx_serialization_json)
8177
implementation(Libs.inject)
8278

@@ -85,6 +81,7 @@ dependencies {
8581
implementation(Libs.androidx_room_runtime)
8682
implementation(Libs.androidx_room_ktx)
8783
implementation(Libs.androidx_room_rxjava3)
84+
implementation(Libs.androidx_room_paging)
8885
implementation(Libs.okhttp)
8986
implementation(Libs.mixpanel)
9087

@@ -113,8 +110,6 @@ dependencies {
113110
androidTestImplementation(Libs.androidx_test_runner)
114111
implementation(Libs.hilt)
115112

116-
implementation(Libs.kin_sdk)
117-
118113
implementation(Libs.timber)
119114
implementation(Libs.bugsnag)
120115
}

0 commit comments

Comments
 (0)