Skip to content

Commit a7effce

Browse files
committed
chore: split protos into own module; reorganize
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent e57c45a commit a7effce

89 files changed

Lines changed: 138 additions & 124 deletions

File tree

Some content is hidden

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

api/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import com.google.protobuf.gradle.protobuf
2+
13
plugins {
24
id(Plugins.android_library)
35
id(Plugins.kotlin_android)
@@ -70,6 +72,9 @@ android {
7072

7173
dependencies {
7274
implementation(project(":common:resources"))
75+
api(project(":service:models"))
76+
implementation(project(":crypto:ed25519"))
77+
implementation(project(":crypto:kin"))
7378

7479
implementation(Libs.rxjava)
7580
implementation(Libs.kotlinx_coroutines_core)

app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ dependencies {
115115
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
116116

117117
implementation(project(":api"))
118+
implementation(project(":crypto:ed25519"))
118119
implementation(project(":common:resources"))
119120
implementation(project(":common:theme"))
120121
implementation(project(":vendor:tipkit:tipkit-m2"))

common/resources/build.gradle.kts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ android {
3232
}
3333

3434
dependencies {
35-
api(project(":model"))
36-
api(project(":ed25519"))
37-
3835
api(Libs.androidx_annotation)
3936
api(Libs.kotlin_stdlib)
4037
api(Libs.kotlinx_coroutines_core)
File renamed without changes.

0 commit comments

Comments
 (0)