Skip to content

Commit

Permalink
Moved Builder, SimpleBuilder, Interactor to separate module
Browse files Browse the repository at this point in the history
  • Loading branch information
Aashay Gaikwad committed Feb 9, 2024
1 parent f05f56f commit f9770f8
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 3 deletions.
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ include(
":utils:interop-ribs",
":utils:interop-rx2",
":utils:interop-rx3",
":utils:ribs-helpers",
":utils:testing-junit4",
":utils:testing-junit5",
":utils:testing-ui",
Expand Down
17 changes: 17 additions & 0 deletions utils/ribs-helpers/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
plugins {
id("com.bumble.appyx.android.library")
id("appyx-publish-android")
}

publishingPlugin {
artifactId = "utils-ribs-helpers"
}

appyx {
namespace.set("com.bumble.appyx.utils.ribs.helpers")
}

dependencies {
api(project(":appyx-navigation:appyx-navigation"))
api(project(":appyx-interactions:appyx-interactions"))
}
4 changes: 4 additions & 0 deletions utils/ribs-helpers/lint-baseline.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<issues format="6" by="lint 7.1.3" type="baseline" client="gradle" dependencies="false" name="AGP (7.1.3)" variant="all" version="7.1.3">

</issues>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.bumble.appyx.navigation.builder
package com.bumble.appyx.utils.ribshelpers.builder

import com.bumble.appyx.navigation.modality.NodeContext
import com.bumble.appyx.navigation.node.Node
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.bumble.appyx.navigation.builder
package com.bumble.appyx.utils.ribshelpers.builder

import com.bumble.appyx.navigation.modality.NodeContext
import com.bumble.appyx.navigation.node.Node
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.bumble.appyx.navigation.clienthelper.interactor
package com.bumble.appyx.utils.ribshelpers.interactor

import com.bumble.appyx.interactions.core.plugin.SavesInstanceState
import com.bumble.appyx.navigation.children.ChildAware
Expand Down

0 comments on commit f9770f8

Please sign in to comment.