Skip to content

Commit

Permalink
WalletLib and ClientLib dependencies on Common should be api, not imp…
Browse files Browse the repository at this point in the history
…lementation
  • Loading branch information
sdlaver committed Jul 1, 2022
1 parent 8cb0540 commit 6ddb036
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion android/clientlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,5 @@ tasks.whenTaskAdded { task ->
dependencies {
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'com.neovisionaries:nv-websocket-client:2.14' // TODO: use plugin projects to select WS implementation
implementation project(path: ':common')
api project(path: ':common')
}
1 change: 0 additions & 1 deletion android/fakedapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,4 @@ dependencies {
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2'
implementation project(path: ':clientlib')
implementation project(path: ':common')
}
1 change: 0 additions & 1 deletion android/fakewallet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,5 @@ dependencies {
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2'
implementation project(path: ':walletlib')
implementation project(path: ':common')
kapt 'androidx.room:room-compiler:2.4.2'
}
2 changes: 1 addition & 1 deletion android/walletlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@ dependencies {
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'org.java-websocket:Java-WebSocket:1.5.3'
implementation 'org.slf4j:slf4j-android:1.7.36' // SLF4J logging facility for Java-WebSocket
implementation project(path: ':common')
api project(path: ':common')
}

0 comments on commit 6ddb036

Please sign in to comment.