Skip to content

Commit

Permalink
Merge pull request #8 from bumble-tech/move-rx-package-to-interop
Browse files Browse the repository at this point in the history
Rename interop and testing modules
  • Loading branch information
Andrey authored Jul 4, 2022
2 parents 3697c2d + a6770b3 commit cd82a66
Show file tree
Hide file tree
Showing 25 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ dependencies {
implementation libs.compose.ui.ui
implementation libs.google.accompanist.flow
implementation libs.google.material
implementation project(':interop-rx2')

implementation project(':rx2')
implementation libs.rxjava2
implementation libs.rxrelay

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion interop/build.gradle → interop-ribs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
apply from: '../gradle/publication.gradle'

android {
namespace = 'com.bumble.appyx.interop'
namespace = 'com.bumble.appyx.interop.ribs'
compileSdk 32

defaultConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ internal class InteropView private constructor(
return if (activity is IntegrationPointAppyxProvider) {
activity.integrationPointAppyx
} else {
throw IllegalStateException("Activity where InteropNode is used must implement IntegrationPointV2Provider")
throw IllegalStateException("Activity where InteropNode is used must implement IntegrationPointAppyxProvider")
}
}

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion rx2/build.gradle → interop-rx2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
apply from: '../gradle/publication.gradle'

android {
namespace = 'com.bumble.appyx.rx2'
namespace = 'com.bumble.appyx.interop.rx2'
compileSdk 32

defaultConfig {
Expand Down
6 changes: 3 additions & 3 deletions sandbox/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ android {

dependencies {
implementation project(':core')
implementation project(':rx2')
implementation project(':interop')
implementation project(':interop-rx2')
implementation project(':interop-ribs')
implementation project(':routing-source-addons')
implementation project(':testing')
implementation project(':testing-ui')

implementation libs.androidx.activity.compose
implementation libs.androidx.appcompat
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ enableFeaturePreview 'VERSION_CATALOGS'
include ':app',
':core',
':sandbox',
':rx2',
':interop',
'testing',
':interop-rx2',
':interop-ribs',
'testing-ui',
':routing-source-addons'
File renamed without changes.
2 changes: 1 addition & 1 deletion testing/build.gradle → testing-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
apply from: '../gradle/publication.gradle'

android {
namespace 'com.bumble.appyx.testing'
namespace 'com.bumble.appyx.testing.ui'
compileSdk 32

defaultConfig {
Expand Down
File renamed without changes.

0 comments on commit cd82a66

Please sign in to comment.