├── .github ├── pull_request_template.md └── workflows │ ├── build_1.x.yml │ ├── build_2.x.yml │ ├── check_documentation.yml │ ├── documentation.yml │ ├── post_merge.yml │ ├── release-dependencies-diff-generator.sh │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASING.md ├── detekt-compose.yml ├── detekt.yml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libraries ├── core │ ├── build.gradle.kts │ ├── detekt-baseline.xml │ ├── lint-baseline.xml │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── core │ │ │ ├── AppyxTestScenario.kt │ │ │ ├── InternalAppyxTestActivity.kt │ │ │ ├── node │ │ │ ├── BackStackMovableContentTest.kt │ │ │ ├── BackStackTargetVisibilityTest.kt │ │ │ ├── PermanentChildTest.kt │ │ │ ├── RetainedInstanceStoreTest.kt │ │ │ └── SpotlightTargetVisibilityTest.kt │ │ │ └── plugin │ │ │ └── BackPressHandlerTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ ├── Appyx.kt │ │ │ ├── core │ │ │ ├── FlowExt.kt │ │ │ ├── builder │ │ │ │ ├── Builder.kt │ │ │ │ └── SimpleBuilder.kt │ │ │ ├── children │ │ │ │ ├── ChildAware.kt │ │ │ │ ├── ChildAwareCallbackInfo.kt │ │ │ │ ├── ChildAwareExt.kt │ │ │ │ ├── ChildAwareImpl.kt │ │ │ │ ├── ChildCallback.kt │ │ │ │ ├── ChildEntry.kt │ │ │ │ ├── ChildEntryExt.kt │ │ │ │ ├── ChildEntryMap.kt │ │ │ │ └── ChildNodeCreationManager.kt │ │ │ ├── clienthelper │ │ │ │ └── interactor │ │ │ │ │ └── Interactor.kt │ │ │ ├── collections │ │ │ │ └── ImmutableList.kt │ │ │ ├── composable │ │ │ │ ├── Child.kt │ │ │ │ ├── ChildRenderer.kt │ │ │ │ ├── Children.kt │ │ │ │ └── PermanentChild.kt │ │ │ ├── integration │ │ │ │ ├── NodeFactory.kt │ │ │ │ └── NodeHost.kt │ │ │ ├── integrationpoint │ │ │ │ ├── ActivityIntegrationPoint.kt │ │ │ │ ├── IntegrationPoint.kt │ │ │ │ ├── IntegrationPointProvider.kt │ │ │ │ ├── IntegrationPointStub.kt │ │ │ │ ├── LocalIntegrationPoint.kt │ │ │ │ ├── NodeActivity.kt │ │ │ │ ├── NodeComponentActivity.kt │ │ │ │ ├── activitystarter │ │ │ │ │ ├── ActivityBoundary.kt │ │ │ │ │ ├── ActivityResultHandler.kt │ │ │ │ │ ├── ActivityStarter.kt │ │ │ │ │ ├── ActivityStarterHost.kt │ │ │ │ │ └── CanProvideActivityStarter.kt │ │ │ │ ├── permissionrequester │ │ │ │ │ ├── PermissionRequestBoundary.kt │ │ │ │ │ ├── PermissionRequestResultHandler.kt │ │ │ │ │ ├── PermissionRequester.kt │ │ │ │ │ └── PermissionRequesterHost.kt │ │ │ │ └── requestcode │ │ │ │ │ ├── RequestCodeBasedEventStream.kt │ │ │ │ │ ├── RequestCodeBasedEventStreamImpl.kt │ │ │ │ │ ├── RequestCodeClient.kt │ │ │ │ │ ├── RequestCodeDoesntFitInMask.kt │ │ │ │ │ └── RequestCodeRegistry.kt │ │ │ ├── lifecycle │ │ │ │ ├── ChildNodeLifecycleManager.kt │ │ │ │ ├── LifecycleExt.kt │ │ │ │ ├── LifecycleLogger.kt │ │ │ │ ├── MinimumCombinedLifecycle.kt │ │ │ │ ├── NodeLifecycle.kt │ │ │ │ └── NodeLifecycleImpl.kt │ │ │ ├── modality │ │ │ │ ├── AncestryInfo.kt │ │ │ │ └── BuildContext.kt │ │ │ ├── navigation │ │ │ │ ├── BaseNavModel.kt │ │ │ │ ├── EmptyNavModel.kt │ │ │ │ ├── NavElement.kt │ │ │ │ ├── NavElementExt.kt │ │ │ │ ├── NavElements.kt │ │ │ │ ├── NavKey.kt │ │ │ │ ├── NavModel.kt │ │ │ │ ├── NavModelAdapter.kt │ │ │ │ ├── NavModelExt.kt │ │ │ │ ├── Operation.kt │ │ │ │ ├── Resolver.kt │ │ │ │ ├── backpresshandlerstrategies │ │ │ │ │ ├── BackPressHandlerStrategy.kt │ │ │ │ │ ├── BaseBackPressHandlerStrategy.kt │ │ │ │ │ └── DontHandleBackPress.kt │ │ │ │ ├── model │ │ │ │ │ ├── combined │ │ │ │ │ │ ├── CombinedNavModel.kt │ │ │ │ │ │ └── NavModelExt.kt │ │ │ │ │ └── permanent │ │ │ │ │ │ ├── PermanentElement.kt │ │ │ │ │ │ ├── PermanentElements.kt │ │ │ │ │ │ ├── PermanentNavModel.kt │ │ │ │ │ │ └── operation │ │ │ │ │ │ ├── Add.kt │ │ │ │ │ │ ├── AddUnique.kt │ │ │ │ │ │ └── PermanentOperation.kt │ │ │ │ ├── onscreen │ │ │ │ │ ├── AlwaysOnScreenResolver.kt │ │ │ │ │ ├── OnScreenStateResolver.kt │ │ │ │ │ └── OnScreenStateResolverExt.kt │ │ │ │ ├── operationstrategies │ │ │ │ │ ├── BaseOperationStrategy.kt │ │ │ │ │ ├── ExecuteImmediately.kt │ │ │ │ │ ├── FinishTransitionsOnNewOperation.kt │ │ │ │ │ ├── IgnoreIfThereAreUnfinishedTransitions.kt │ │ │ │ │ ├── OperationStrategy.kt │ │ │ │ │ └── QueueOperations.kt │ │ │ │ ├── transition │ │ │ │ │ ├── CombinedHandler.kt │ │ │ │ │ ├── JumpToEndTransitionHandler.kt │ │ │ │ │ ├── ModifierTransitionHandler.kt │ │ │ │ │ ├── MovableContent.kt │ │ │ │ │ ├── SharedElement.kt │ │ │ │ │ ├── TransitionBounds.kt │ │ │ │ │ ├── TransitionDescriptor.kt │ │ │ │ │ ├── TransitionHandler.kt │ │ │ │ │ ├── TransitionParams.kt │ │ │ │ │ └── TransitionSpec.kt │ │ │ │ └── upnavigation │ │ │ │ │ └── UpNavigationHandler.kt │ │ │ ├── node │ │ │ │ ├── ComposableNode.kt │ │ │ │ ├── EmptyNodeViews.kt │ │ │ │ ├── LocalNode.kt │ │ │ │ ├── Node.kt │ │ │ │ ├── NodeExt.kt │ │ │ │ ├── NodeView.kt │ │ │ │ ├── ParentNode.kt │ │ │ │ ├── ParentNodeExt.kt │ │ │ │ ├── ParentNodeView.kt │ │ │ │ └── ViewFactory.kt │ │ │ ├── plugin │ │ │ │ ├── NodeAwareImpl.kt │ │ │ │ └── Plugins.kt │ │ │ ├── state │ │ │ │ ├── MutableSavedStateMap.kt │ │ │ │ ├── MutableSavedStateMapImpl.kt │ │ │ │ └── SavedStateMap.kt │ │ │ └── store │ │ │ │ ├── RetainedInstanceStore.kt │ │ │ │ ├── RetainedInstanceStoreExt.kt │ │ │ │ └── RetainedInstanceStoreImpl.kt │ │ │ ├── debug │ │ │ └── Appyx.kt │ │ │ └── navmodel │ │ │ ├── OffsetExt.kt │ │ │ ├── backstack │ │ │ ├── BackStack.kt │ │ │ ├── BackStackElement.kt │ │ │ ├── BackStackElements.kt │ │ │ ├── BackStackExt.kt │ │ │ ├── BackStackOnScreenResolver.kt │ │ │ ├── backpresshandler │ │ │ │ └── PopBackPressHandler.kt │ │ │ ├── operation │ │ │ │ ├── BackStackOperation.kt │ │ │ │ ├── NewRoot.kt │ │ │ │ ├── Pop.kt │ │ │ │ ├── Push.kt │ │ │ │ ├── Remove.kt │ │ │ │ ├── Replace.kt │ │ │ │ └── SingleTop.kt │ │ │ └── transitionhandler │ │ │ │ ├── BackStackFader.kt │ │ │ │ └── BackStackSlider.kt │ │ │ └── spotlight │ │ │ ├── Spotlight.kt │ │ │ ├── SpotlightElement.kt │ │ │ ├── SpotlightElementExt.kt │ │ │ ├── SpotlightExt.kt │ │ │ ├── SpotlightOnScreenResolver.kt │ │ │ ├── backpresshandler │ │ │ ├── GoToDefault.kt │ │ │ ├── GoToPrevious.kt │ │ │ └── UndoHistory.kt │ │ │ ├── operation │ │ │ ├── Activate.kt │ │ │ ├── Next.kt │ │ │ ├── Previous.kt │ │ │ ├── SpotlightOperation.kt │ │ │ └── UpdateElements.kt │ │ │ └── transitionhandler │ │ │ ├── SpotlightFader.kt │ │ │ └── SpotlightSlider.kt │ │ └── test │ │ └── kotlin │ │ ├── android │ │ └── util │ │ │ └── Log.kt │ │ └── com │ │ └── bumble │ │ └── appyx │ │ ├── core │ │ ├── children │ │ │ ├── ChildAwareCommonTestSpec.kt │ │ │ ├── ChildAwareImplAfterTest.kt │ │ │ ├── ChildAwareImplBeforeTest.kt │ │ │ ├── ChildAwareImplTest.kt │ │ │ ├── ChildAwareTestBase.kt │ │ │ └── ChildCreationTest.kt │ │ ├── lifecycle │ │ │ ├── ChildLifecycleTest.kt │ │ │ ├── LifecycleExtKtTest.kt │ │ │ ├── MinimumCombinedLifecycleTest.kt │ │ │ ├── ParentLifecycleTest.kt │ │ │ └── TestLifecycle.kt │ │ ├── navigation │ │ │ └── upnavigation │ │ │ │ └── UpNavigationTest.kt │ │ ├── node │ │ │ ├── NodeTest.kt │ │ │ └── ParentNodeTest.kt │ │ ├── plugin │ │ │ ├── DestroyableTest.kt │ │ │ ├── NodeLifecycleAwareTest.kt │ │ │ ├── SavesInstanceStateTest.kt │ │ │ └── StubUpNavigationHandler.kt │ │ └── store │ │ │ └── RetainedInstanceStoreTest.kt │ │ └── navmodel │ │ ├── RoutingElementsHelper.kt │ │ ├── backstack │ │ ├── BackStackTest.kt │ │ └── operation │ │ │ ├── BackStackTestHelper.kt │ │ │ ├── NavTarget.kt │ │ │ ├── NewRootTest.kt │ │ │ ├── PopTest.kt │ │ │ ├── PushTest.kt │ │ │ ├── RemoveTest.kt │ │ │ ├── ReplaceTest.kt │ │ │ └── SingleTopTest.kt │ │ └── spotlight │ │ ├── SpotlightTestHelper.kt │ │ └── operation │ │ ├── NavTarget.kt │ │ ├── NextTest.kt │ │ └── PreviousTest.kt ├── customisations │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── utils │ │ │ └── customisations │ │ │ ├── MutableNodeCustomisationDirectory.kt │ │ │ ├── NodeCustomisation.kt │ │ │ ├── NodeCustomisationDirectory.kt │ │ │ └── NodeCustomisationDirectoryImpl.kt │ │ └── test │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── utils │ │ └── customisations │ │ └── NodeCustomisationDirectoryImplTest.kt ├── interop-ribs │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── interop │ │ │ └── ribs │ │ │ ├── AppyxRibsInteropActivity.kt │ │ │ ├── InteropNodeImplTest.kt │ │ │ └── RibsNode.kt │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── interop │ │ └── ribs │ │ ├── InteropActivity.kt │ │ ├── InteropBackPressHandler.kt │ │ ├── InteropBuilder.kt │ │ ├── InteropNode.kt │ │ ├── InteropView.kt │ │ └── UpHandlingAppyxIntegrationPoint.kt ├── interop-rx2 │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── interop │ │ │ └── rx2 │ │ │ ├── adapter │ │ │ └── Rx2.kt │ │ │ ├── connectable │ │ │ ├── Connectable.kt │ │ │ └── NodeConnector.kt │ │ │ ├── plugin │ │ │ └── DisposeOnDestroy.kt │ │ │ └── store │ │ │ └── RetainedInstanceStoreExt.kt │ │ └── test │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── interop │ │ └── rx2 │ │ ├── connectable │ │ └── Rx2NodeConnectorTest.kt │ │ └── plugin │ │ └── DisposeOnDestroyTest.kt ├── interop-rx3 │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── interop │ │ │ └── rx3 │ │ │ ├── connectable │ │ │ ├── Connectable.kt │ │ │ └── NodeConnector.kt │ │ │ ├── plugin │ │ │ └── DisposeOnDestroy.kt │ │ │ └── store │ │ │ └── RetainedInstanceStoreExt.kt │ │ └── test │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── interop │ │ └── rx3 │ │ ├── connectable │ │ └── Rx3NodeConnectorTest.kt │ │ └── plugin │ │ └── DisposeOnDestroyTest.kt ├── testing-junit4 │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── testing │ │ └── junit4 │ │ └── util │ │ └── MainDispatcherRule.kt ├── testing-junit5 │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── testing │ │ └── junit5 │ │ └── util │ │ ├── CoroutinesTestExtension.kt │ │ └── InstantExecutorExtension.kt ├── testing-ui-activity │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── testing │ │ └── ui │ │ └── rules │ │ └── AppyxTestActivity.kt ├── testing-ui │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── testing │ │ └── ui │ │ ├── rules │ │ ├── AppyxActivityTestRule.kt │ │ ├── AppyxViewTestRule.kt │ │ └── RunRules.kt │ │ └── utils │ │ ├── DummyNavModel.kt │ │ └── DummyParentNode.kt └── testing-unit-common │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── bumble │ └── appyx │ └── testing │ └── unit │ └── common │ ├── helper │ ├── NodeTestHelper.kt │ └── ParentNodeTestHelper.kt │ └── util │ ├── DummyNavModel.kt │ ├── InteropBuilderStub.kt │ ├── InteropSimpleBuilderStub.kt │ ├── NodeStub.kt │ ├── TestIntegrationPoint.kt │ └── TestUpNavigationHandler.kt ├── plugins ├── build.gradle.kts ├── publish-plugin │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── PublishPlugin.kt ├── release-dependencies-diff │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ ├── ReleaseDependenciesCreateFilesTask.kt │ │ ├── ReleaseDependenciesCreatePlugin.kt │ │ ├── ReleaseDependenciesDiffFilesTask.kt │ │ └── ReleaseDependenciesDiffPlugin.kt ├── settings.gradle.kts └── verification-plugin │ ├── build.gradle.kts │ └── src │ └── main │ └── kotlin │ ├── CollectSarifPlugin.kt │ ├── DetektPlugin.kt │ ├── LintPlugin.kt │ └── SarifMergeTask.kt ├── samples ├── app │ ├── build.gradle.kts │ ├── debug.keystore │ ├── detekt-baseline.xml │ ├── detekt.yml │ ├── lint-baseline.xml │ ├── lint.xml │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── app │ │ │ ├── MainActivity.kt │ │ │ ├── composable │ │ │ ├── DashedBorder.kt │ │ │ ├── DotsIndicator.kt │ │ │ ├── Page.kt │ │ │ ├── ScreenCenteredContent.kt │ │ │ └── graph │ │ │ │ ├── GraphNode.kt │ │ │ │ ├── Tree.kt │ │ │ │ └── nodeimpl │ │ │ │ ├── SimpleGraphNode.kt │ │ │ │ └── TestImpl.kt │ │ │ ├── node │ │ │ ├── backstack │ │ │ │ ├── InsideTheBackStack.kt │ │ │ │ └── app │ │ │ │ │ ├── ChildNode.kt │ │ │ │ │ ├── composable │ │ │ │ │ ├── Buttons.kt │ │ │ │ │ └── PeekInsideBackStack.kt │ │ │ │ │ └── indexedbackstack │ │ │ │ │ ├── IndexedBackStack.kt │ │ │ │ │ ├── IndexedBackStackElement.kt │ │ │ │ │ ├── IndexedBackStackOnScreenResolver.kt │ │ │ │ │ ├── operation │ │ │ │ │ ├── IndexedBackStackOperation.kt │ │ │ │ │ ├── Pop.kt │ │ │ │ │ ├── Push.kt │ │ │ │ │ └── UpdateSize.kt │ │ │ │ │ └── transition │ │ │ │ │ └── RecentsTransitionHandler.kt │ │ │ ├── cards │ │ │ │ └── CardsExampleNode.kt │ │ │ ├── child │ │ │ │ └── GenericChildNode.kt │ │ │ ├── helper │ │ │ │ └── Screen.kt │ │ │ ├── samples │ │ │ │ ├── SampleItem.kt │ │ │ │ ├── SamplesContainerNode.kt │ │ │ │ ├── SamplesSelectorNode.kt │ │ │ │ └── ScaledLayout.kt │ │ │ ├── slideshow │ │ │ │ ├── WhatsAppyxSlideShow.kt │ │ │ │ └── slide │ │ │ │ │ ├── app │ │ │ │ │ ├── ApplicationTree.kt │ │ │ │ │ ├── StatefulNode1.kt │ │ │ │ │ └── StatefulNode2.kt │ │ │ │ │ └── modeldriven │ │ │ │ │ ├── ComposableNavigation.kt │ │ │ │ │ ├── Intro.kt │ │ │ │ │ ├── ModelDrivenIntro.kt │ │ │ │ │ └── NavModelTeaserNode.kt │ │ │ └── teaser │ │ │ │ ├── backstack │ │ │ │ ├── BackstackTeaserNode.kt │ │ │ │ └── transitionhandler │ │ │ │ │ └── CustomBackStackTransitionHandler.kt │ │ │ │ └── promoter │ │ │ │ └── PromoterTeaserNode.kt │ │ │ └── ui │ │ │ ├── Color.kt │ │ │ ├── MaterialColors.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ └── res │ │ ├── drawable-xxxhdpi │ │ ├── graph1_dark.png │ │ └── graph1_light.png │ │ ├── drawable │ │ └── appyx.xml │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml ├── common │ ├── .gitignore │ ├── build.gradle.kts │ ├── lint-baseline.xml │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── samples │ │ │ └── common │ │ │ └── profile │ │ │ ├── Profile.kt │ │ │ └── ProfileCardNode.kt │ │ └── res │ │ ├── drawable │ │ ├── halloween10.jpeg │ │ ├── halloween11.jpeg │ │ ├── halloween12.jpeg │ │ ├── halloween13.jpeg │ │ ├── halloween14.jpeg │ │ ├── halloween15.jpeg │ │ ├── halloween3.jpeg │ │ ├── halloween4.jpeg │ │ ├── halloween6.jpeg │ │ ├── halloween7.jpeg │ │ ├── halloween8.jpeg │ │ └── halloween9.jpeg │ │ └── values │ │ └── colors.xml ├── navigation-compose │ ├── README.md │ ├── build.gradle.kts │ ├── lint-baseline.xml │ └── src │ │ ├── androidTest │ │ └── kotlin │ │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── sample │ │ │ └── navigation │ │ │ └── compose │ │ │ └── ComposeNavigationRootTest.kt │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── sample │ │ └── navigation │ │ └── compose │ │ ├── ComposeNavigationContainerNode.kt │ │ └── ComposeNavigationRoot.kt ├── navmodel-samples │ ├── build.gradle.kts │ ├── detekt-baseline.xml │ ├── detekt.yml │ ├── lint-baseline.xml │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── navmodel │ │ ├── cards │ │ ├── Cards.kt │ │ ├── CardsElement.kt │ │ ├── CardsOnScreenResolver.kt │ │ ├── operation │ │ │ ├── CardsOperation.kt │ │ │ ├── IndicateLike.kt │ │ │ ├── IndicatePass.kt │ │ │ ├── PromoteAll.kt │ │ │ ├── TopCardOperation.kt │ │ │ ├── VoteLike.kt │ │ │ └── VotePass.kt │ │ └── transitionhandler │ │ │ └── CardsTransitionHandler.kt │ │ ├── modal │ │ ├── Modal.kt │ │ ├── ModalElement.kt │ │ ├── ModalOnScreenResolver.kt │ │ ├── ModalTransitionHandler.kt │ │ ├── backpresshandler │ │ │ └── RevertBackPressHandler.kt │ │ └── operation │ │ │ ├── Add.kt │ │ │ ├── Destroy.kt │ │ │ ├── Dismiss.kt │ │ │ ├── FullScreen.kt │ │ │ ├── ModalOperation.kt │ │ │ ├── Revert.kt │ │ │ └── Show.kt │ │ ├── promoter │ │ ├── navmodel │ │ │ ├── Promoter.kt │ │ │ ├── PromoterElement.kt │ │ │ ├── PromoterOnScreenResolver.kt │ │ │ └── operation │ │ │ │ ├── AddFirst.kt │ │ │ │ ├── PromoteAll.kt │ │ │ │ └── PromoterOperation.kt │ │ └── transitionhandler │ │ │ └── PromoterTransitionHandler.kt │ │ ├── spotlightadvanced │ │ ├── SpotlightAdvanced.kt │ │ ├── SpotlightAdvancedElement.kt │ │ ├── SpotlightAdvancedElementExt.kt │ │ ├── SpotlightAdvancedExt.kt │ │ ├── SpotlightAdvancedOnScreenResolver.kt │ │ ├── backpresshandler │ │ │ ├── GoToDefault.kt │ │ │ ├── GoToPrevious.kt │ │ │ └── UndoHistory.kt │ │ ├── operation │ │ │ ├── Activate.kt │ │ │ ├── Next.kt │ │ │ ├── Previous.kt │ │ │ ├── SpotlightOperation.kt │ │ │ ├── SwitchToCarousel.kt │ │ │ ├── SwitchToPager.kt │ │ │ └── UpdateElements.kt │ │ └── transitionhandler │ │ │ └── SpotlightAdvancedSlider.kt │ │ └── tiles │ │ ├── Tiles.kt │ │ ├── TilesElement.kt │ │ ├── TilesElements.kt │ │ ├── TilesOnScreenResolver.kt │ │ ├── backPressHandler │ │ └── DeselectAllTiles.kt │ │ ├── operation │ │ ├── Add.kt │ │ ├── Deselect.kt │ │ ├── DeselectAll.kt │ │ ├── Destroy.kt │ │ ├── RemoveSelected.kt │ │ ├── Select.kt │ │ ├── TilesOperation.kt │ │ └── ToggleSelection.kt │ │ └── transitionhandler │ │ └── TilesTransitionHandler.kt └── sandbox │ ├── build.gradle.kts │ ├── detekt-baseline.xml │ ├── detekt.yml │ ├── lint-baseline.xml │ ├── lint.xml │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── kotlin │ │ └── com │ │ └── bumble │ │ └── appyx │ │ └── sandbox │ │ └── client │ │ ├── mvicoreexample │ │ ├── MviCoreExampleViewTest.kt │ │ └── MviCorePageObject.kt │ │ └── test │ │ ├── AppyxMviViewTestRule.kt │ │ ├── AppyxViewRules.kt │ │ └── Utils.kt │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── bumble │ │ │ └── appyx │ │ │ └── sandbox │ │ │ ├── MainActivity.kt │ │ │ ├── SandboxApplication.kt │ │ │ ├── TextButton.kt │ │ │ ├── client │ │ │ ├── backstack │ │ │ │ ├── BackStackExampleNode.kt │ │ │ │ └── BackStackExampleTransitionHandler.kt │ │ │ ├── blocker │ │ │ │ ├── BlockerExampleBackPressInteractor.kt │ │ │ │ └── BlockerExampleNode.kt │ │ │ ├── cardsexample │ │ │ │ └── CardsExampleNode.kt │ │ │ ├── child │ │ │ │ └── ChildNode.kt │ │ │ ├── combined │ │ │ │ └── CombinedNavModelNode.kt │ │ │ ├── container │ │ │ │ ├── ContainerBuilder.kt │ │ │ │ └── ContainerNode.kt │ │ │ ├── customisations │ │ │ │ ├── CustomisationsNode.kt │ │ │ │ ├── ViewCustomisationExampleBuilder.kt │ │ │ │ ├── ViewCustomisationExampleNode.kt │ │ │ │ ├── ViewCustomisationExampleView.kt │ │ │ │ └── ViewCustomisationsActivity.kt │ │ │ ├── explicitnavigation │ │ │ │ ├── ChildNodeOne.kt │ │ │ │ ├── ChildNodeTwo.kt │ │ │ │ ├── ExplicitNavigationExampleActivity.kt │ │ │ │ ├── GrandchildNodeOne.kt │ │ │ │ ├── GrandchildNodeTwo.kt │ │ │ │ ├── RootNode.kt │ │ │ │ └── treenavigator │ │ │ │ │ └── Navigator.kt │ │ │ ├── integrationpoint │ │ │ │ ├── IntegrationPointExampleNode.kt │ │ │ │ └── StartActivityExample.kt │ │ │ ├── interop │ │ │ │ ├── InteropExampleActivity.kt │ │ │ │ ├── child │ │ │ │ │ ├── RibsChildBuilder.kt │ │ │ │ │ ├── RibsChildNode.kt │ │ │ │ │ └── RibsChildView.kt │ │ │ │ └── parent │ │ │ │ │ ├── RibsParentBuilder.kt │ │ │ │ │ ├── RibsParentInteractor.kt │ │ │ │ │ ├── RibsParentRib.kt │ │ │ │ │ ├── RibsParentView.kt │ │ │ │ │ └── routing │ │ │ │ │ ├── RibsParentChildBuilders.kt │ │ │ │ │ └── RibsParentRouter.kt │ │ │ ├── list │ │ │ │ └── LazyListContainerNode.kt │ │ │ ├── modal │ │ │ │ └── ModalExampleNode.kt │ │ │ ├── mvicoreexample │ │ │ │ ├── MviCoreChildNode1.kt │ │ │ │ ├── MviCoreChildNode2.kt │ │ │ │ ├── MviCoreExampleBuilder.kt │ │ │ │ ├── MviCoreExampleInteractor.kt │ │ │ │ ├── MviCoreExampleNode.kt │ │ │ │ ├── MviCoreExampleView.kt │ │ │ │ ├── feature │ │ │ │ │ ├── EventsToWish.kt │ │ │ │ │ ├── MviCoreExampleFeature.kt │ │ │ │ │ ├── OutputChild1ToWish.kt │ │ │ │ │ ├── OutputChild2ToWish.kt │ │ │ │ │ ├── StateToViewModel.kt │ │ │ │ │ └── ViewModel.kt │ │ │ │ └── leaf │ │ │ │ │ ├── MviCoreLeafBuilder.kt │ │ │ │ │ ├── MviCoreLeafInteractor.kt │ │ │ │ │ ├── MviCoreLeafNode.kt │ │ │ │ │ └── MviCoreLeafView.kt │ │ │ ├── navmodels │ │ │ │ └── NavModelExamplesNode.kt │ │ │ ├── sharedelement │ │ │ │ ├── FullScreenNode.kt │ │ │ │ ├── ProfileHorizontalListNode.kt │ │ │ │ ├── ProfileVerticalListNode.kt │ │ │ │ └── SharedElementExampleNode.kt │ │ │ ├── spotlight │ │ │ │ ├── SpotlightExampleNode.kt │ │ │ │ └── SpotlightFaderThrough.kt │ │ │ ├── spotlightadvancedexample │ │ │ │ └── SpotlightAdvancedExampleNode.kt │ │ │ └── tiles │ │ │ │ └── TilesExampleNode.kt │ │ │ └── ui │ │ │ ├── Color.kt │ │ │ ├── MaterialColors.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── rib_child.xml │ │ └── rib_root.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── kotlin │ ├── android │ └── util │ │ └── Log.kt │ └── com │ └── bumble │ └── appyx │ └── sandbox │ ├── client │ ├── interop │ │ └── parent │ │ │ └── RibsParentNodeTest.kt │ └── mvicoreexample │ │ ├── MviCoreExampleNodeJUnit5Test.kt │ │ ├── MviCoreExampleNodeTest.kt │ │ └── leaf │ │ ├── MviCoreLeafNodeJUnit5Test.kt │ │ └── MviCoreLeafNodeTest.kt │ └── stub │ ├── FeatureStub.kt │ └── NodeViewStub.kt └── settings.gradle.kts /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_1.x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/workflows/build_1.x.yml -------------------------------------------------------------------------------- /.github/workflows/build_2.x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/workflows/build_2.x.yml -------------------------------------------------------------------------------- /.github/workflows/check_documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/workflows/check_documentation.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/post_merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/workflows/post_merge.yml -------------------------------------------------------------------------------- /.github/workflows/release-dependencies-diff-generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/workflows/release-dependencies-diff-generator.sh -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/RELEASING.md -------------------------------------------------------------------------------- /detekt-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/detekt-compose.yml -------------------------------------------------------------------------------- /detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/detekt.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libraries/core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/build.gradle.kts -------------------------------------------------------------------------------- /libraries/core/detekt-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/detekt-baseline.xml -------------------------------------------------------------------------------- /libraries/core/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/core/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/AppyxTestScenario.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/AppyxTestScenario.kt -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/InternalAppyxTestActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/InternalAppyxTestActivity.kt -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/BackStackMovableContentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/BackStackMovableContentTest.kt -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/BackStackTargetVisibilityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/BackStackTargetVisibilityTest.kt -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/PermanentChildTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/PermanentChildTest.kt -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/RetainedInstanceStoreTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/RetainedInstanceStoreTest.kt -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/SpotlightTargetVisibilityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/node/SpotlightTargetVisibilityTest.kt -------------------------------------------------------------------------------- /libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/plugin/BackPressHandlerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/androidTest/kotlin/com/bumble/appyx/core/plugin/BackPressHandlerTest.kt -------------------------------------------------------------------------------- /libraries/core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/Appyx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/Appyx.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/FlowExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/FlowExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/builder/Builder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/builder/Builder.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/builder/SimpleBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/builder/SimpleBuilder.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAware.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAwareCallbackInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAwareCallbackInfo.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAwareExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAwareExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAwareImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildAwareImpl.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildCallback.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildEntry.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildEntryExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildEntryExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildEntryMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildEntryMap.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildNodeCreationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/children/ChildNodeCreationManager.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/clienthelper/interactor/Interactor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/clienthelper/interactor/Interactor.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/collections/ImmutableList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/collections/ImmutableList.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/Child.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/Child.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/ChildRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/ChildRenderer.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/Children.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/Children.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/PermanentChild.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/composable/PermanentChild.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integration/NodeFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integration/NodeFactory.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integration/NodeHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integration/NodeHost.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/ActivityIntegrationPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/ActivityIntegrationPoint.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/IntegrationPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/IntegrationPoint.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/IntegrationPointProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/IntegrationPointProvider.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/IntegrationPointStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/IntegrationPointStub.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/LocalIntegrationPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/LocalIntegrationPoint.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/NodeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/NodeActivity.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/NodeComponentActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/NodeComponentActivity.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityBoundary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityBoundary.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityResultHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityResultHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityStarter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityStarter.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityStarterHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/ActivityStarterHost.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/CanProvideActivityStarter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/activitystarter/CanProvideActivityStarter.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequestBoundary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequestBoundary.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequestResultHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequestResultHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequester.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequester.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequesterHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/permissionrequester/PermissionRequesterHost.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeBasedEventStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeBasedEventStream.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeBasedEventStreamImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeBasedEventStreamImpl.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeClient.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeDoesntFitInMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeDoesntFitInMask.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/integrationpoint/requestcode/RequestCodeRegistry.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/ChildNodeLifecycleManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/ChildNodeLifecycleManager.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/LifecycleExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/LifecycleExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/LifecycleLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/LifecycleLogger.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/MinimumCombinedLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/MinimumCombinedLifecycle.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/NodeLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/NodeLifecycle.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/NodeLifecycleImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/lifecycle/NodeLifecycleImpl.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/modality/AncestryInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/modality/AncestryInfo.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/modality/BuildContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/modality/BuildContext.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/BaseNavModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/BaseNavModel.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/EmptyNavModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/EmptyNavModel.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavElement.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavElementExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavElementExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavElements.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavKey.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavModel.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavModelAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavModelAdapter.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavModelExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/NavModelExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/Operation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/Operation.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/Resolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/Resolver.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/backpresshandlerstrategies/BackPressHandlerStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/backpresshandlerstrategies/BackPressHandlerStrategy.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/backpresshandlerstrategies/BaseBackPressHandlerStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/backpresshandlerstrategies/BaseBackPressHandlerStrategy.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/backpresshandlerstrategies/DontHandleBackPress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/backpresshandlerstrategies/DontHandleBackPress.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/combined/CombinedNavModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/combined/CombinedNavModel.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/combined/NavModelExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/combined/NavModelExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/PermanentElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/PermanentElement.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/PermanentElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/PermanentElements.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/PermanentNavModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/PermanentNavModel.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/operation/Add.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/operation/Add.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/operation/AddUnique.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/operation/AddUnique.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/operation/PermanentOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/model/permanent/operation/PermanentOperation.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/onscreen/AlwaysOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/onscreen/AlwaysOnScreenResolver.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/onscreen/OnScreenStateResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/onscreen/OnScreenStateResolver.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/onscreen/OnScreenStateResolverExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/onscreen/OnScreenStateResolverExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/BaseOperationStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/BaseOperationStrategy.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/ExecuteImmediately.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/ExecuteImmediately.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/FinishTransitionsOnNewOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/FinishTransitionsOnNewOperation.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/IgnoreIfThereAreUnfinishedTransitions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/IgnoreIfThereAreUnfinishedTransitions.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/OperationStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/OperationStrategy.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/QueueOperations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/operationstrategies/QueueOperations.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/CombinedHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/CombinedHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/JumpToEndTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/JumpToEndTransitionHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/ModifierTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/ModifierTransitionHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/MovableContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/MovableContent.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/SharedElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/SharedElement.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionBounds.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionDescriptor.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionParams.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/transition/TransitionSpec.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/upnavigation/UpNavigationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/navigation/upnavigation/UpNavigationHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ComposableNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ComposableNode.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/EmptyNodeViews.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/EmptyNodeViews.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/LocalNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/LocalNode.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/Node.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/Node.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/NodeExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/NodeExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/NodeView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/NodeView.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ParentNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ParentNode.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ParentNodeExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ParentNodeExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ParentNodeView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ParentNodeView.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ViewFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/node/ViewFactory.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/plugin/NodeAwareImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/plugin/NodeAwareImpl.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/plugin/Plugins.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/plugin/Plugins.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/state/MutableSavedStateMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/state/MutableSavedStateMap.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/state/MutableSavedStateMapImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/state/MutableSavedStateMapImpl.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/state/SavedStateMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/state/SavedStateMap.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/store/RetainedInstanceStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/store/RetainedInstanceStore.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/store/RetainedInstanceStoreExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/store/RetainedInstanceStoreExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/core/store/RetainedInstanceStoreImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/core/store/RetainedInstanceStoreImpl.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/debug/Appyx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/debug/Appyx.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/OffsetExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/OffsetExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStack.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackElement.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackElements.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/BackStackOnScreenResolver.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/backpresshandler/PopBackPressHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/backpresshandler/PopBackPressHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/BackStackOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/BackStackOperation.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/NewRoot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/NewRoot.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Pop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Pop.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Push.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Push.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Remove.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Remove.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Replace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/Replace.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/SingleTop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/operation/SingleTop.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/transitionhandler/BackStackFader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/transitionhandler/BackStackFader.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/transitionhandler/BackStackSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/backstack/transitionhandler/BackStackSlider.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/Spotlight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/Spotlight.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightElement.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightElementExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightElementExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightExt.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightOnScreenResolver.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/backpresshandler/GoToDefault.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/backpresshandler/GoToDefault.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/backpresshandler/GoToPrevious.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/backpresshandler/GoToPrevious.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/backpresshandler/UndoHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/backpresshandler/UndoHistory.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/Activate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/Activate.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/Next.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/Next.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/Previous.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/Previous.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/SpotlightOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/SpotlightOperation.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/UpdateElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/operation/UpdateElements.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/transitionhandler/SpotlightFader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/transitionhandler/SpotlightFader.kt -------------------------------------------------------------------------------- /libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/transitionhandler/SpotlightSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/main/kotlin/com/bumble/appyx/navmodel/spotlight/transitionhandler/SpotlightSlider.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/android/util/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/android/util/Log.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareCommonTestSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareCommonTestSpec.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareImplAfterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareImplAfterTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareImplBeforeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareImplBeforeTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareImplTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareTestBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildAwareTestBase.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildCreationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/children/ChildCreationTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/ChildLifecycleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/ChildLifecycleTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/LifecycleExtKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/LifecycleExtKtTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/MinimumCombinedLifecycleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/MinimumCombinedLifecycleTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/ParentLifecycleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/ParentLifecycleTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/TestLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/lifecycle/TestLifecycle.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/navigation/upnavigation/UpNavigationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/navigation/upnavigation/UpNavigationTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/node/NodeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/node/NodeTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/node/ParentNodeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/node/ParentNodeTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/DestroyableTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/DestroyableTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/NodeLifecycleAwareTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/NodeLifecycleAwareTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/SavesInstanceStateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/SavesInstanceStateTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/StubUpNavigationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/plugin/StubUpNavigationHandler.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/core/store/RetainedInstanceStoreTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/core/store/RetainedInstanceStoreTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/RoutingElementsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/RoutingElementsHelper.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/BackStackTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/BackStackTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/BackStackTestHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/BackStackTestHelper.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/NavTarget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/NavTarget.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/NewRootTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/NewRootTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/PopTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/PopTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/PushTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/PushTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/RemoveTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/RemoveTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/ReplaceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/ReplaceTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/SingleTopTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/backstack/operation/SingleTopTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightTestHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/SpotlightTestHelper.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/operation/NavTarget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/operation/NavTarget.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/operation/NextTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/operation/NextTest.kt -------------------------------------------------------------------------------- /libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/operation/PreviousTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/core/src/test/kotlin/com/bumble/appyx/navmodel/spotlight/operation/PreviousTest.kt -------------------------------------------------------------------------------- /libraries/customisations/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/customisations/build.gradle.kts -------------------------------------------------------------------------------- /libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/MutableNodeCustomisationDirectory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/MutableNodeCustomisationDirectory.kt -------------------------------------------------------------------------------- /libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisation.kt -------------------------------------------------------------------------------- /libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisationDirectory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisationDirectory.kt -------------------------------------------------------------------------------- /libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisationDirectoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/customisations/src/main/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisationDirectoryImpl.kt -------------------------------------------------------------------------------- /libraries/customisations/src/test/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisationDirectoryImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/customisations/src/test/kotlin/com/bumble/appyx/utils/customisations/NodeCustomisationDirectoryImplTest.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/build.gradle.kts -------------------------------------------------------------------------------- /libraries/interop-ribs/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/interop-ribs/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /libraries/interop-ribs/src/androidTest/kotlin/com/bumble/appyx/interop/ribs/AppyxRibsInteropActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/androidTest/kotlin/com/bumble/appyx/interop/ribs/AppyxRibsInteropActivity.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/androidTest/kotlin/com/bumble/appyx/interop/ribs/InteropNodeImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/androidTest/kotlin/com/bumble/appyx/interop/ribs/InteropNodeImplTest.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/androidTest/kotlin/com/bumble/appyx/interop/ribs/RibsNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/androidTest/kotlin/com/bumble/appyx/interop/ribs/RibsNode.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropActivity.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropBackPressHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropBackPressHandler.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropBuilder.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropNode.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/InteropView.kt -------------------------------------------------------------------------------- /libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/UpHandlingAppyxIntegrationPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-ribs/src/main/kotlin/com/bumble/appyx/interop/ribs/UpHandlingAppyxIntegrationPoint.kt -------------------------------------------------------------------------------- /libraries/interop-rx2/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/build.gradle.kts -------------------------------------------------------------------------------- /libraries/interop-rx2/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/adapter/Rx2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/adapter/Rx2.kt -------------------------------------------------------------------------------- /libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/connectable/Connectable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/connectable/Connectable.kt -------------------------------------------------------------------------------- /libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/connectable/NodeConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/connectable/NodeConnector.kt -------------------------------------------------------------------------------- /libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/plugin/DisposeOnDestroy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/plugin/DisposeOnDestroy.kt -------------------------------------------------------------------------------- /libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/store/RetainedInstanceStoreExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/src/main/kotlin/com/bumble/appyx/interop/rx2/store/RetainedInstanceStoreExt.kt -------------------------------------------------------------------------------- /libraries/interop-rx2/src/test/kotlin/com/bumble/appyx/interop/rx2/connectable/Rx2NodeConnectorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/src/test/kotlin/com/bumble/appyx/interop/rx2/connectable/Rx2NodeConnectorTest.kt -------------------------------------------------------------------------------- /libraries/interop-rx2/src/test/kotlin/com/bumble/appyx/interop/rx2/plugin/DisposeOnDestroyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx2/src/test/kotlin/com/bumble/appyx/interop/rx2/plugin/DisposeOnDestroyTest.kt -------------------------------------------------------------------------------- /libraries/interop-rx3/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/build.gradle.kts -------------------------------------------------------------------------------- /libraries/interop-rx3/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/connectable/Connectable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/connectable/Connectable.kt -------------------------------------------------------------------------------- /libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/connectable/NodeConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/connectable/NodeConnector.kt -------------------------------------------------------------------------------- /libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/plugin/DisposeOnDestroy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/plugin/DisposeOnDestroy.kt -------------------------------------------------------------------------------- /libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/store/RetainedInstanceStoreExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/src/main/kotlin/com/bumble/appyx/interop/rx3/store/RetainedInstanceStoreExt.kt -------------------------------------------------------------------------------- /libraries/interop-rx3/src/test/kotlin/com/bumble/appyx/interop/rx3/connectable/Rx3NodeConnectorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/src/test/kotlin/com/bumble/appyx/interop/rx3/connectable/Rx3NodeConnectorTest.kt -------------------------------------------------------------------------------- /libraries/interop-rx3/src/test/kotlin/com/bumble/appyx/interop/rx3/plugin/DisposeOnDestroyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/interop-rx3/src/test/kotlin/com/bumble/appyx/interop/rx3/plugin/DisposeOnDestroyTest.kt -------------------------------------------------------------------------------- /libraries/testing-junit4/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-junit4/build.gradle.kts -------------------------------------------------------------------------------- /libraries/testing-junit4/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-junit4/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/testing-junit4/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libraries/testing-junit4/src/main/kotlin/com/bumble/appyx/testing/junit4/util/MainDispatcherRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-junit4/src/main/kotlin/com/bumble/appyx/testing/junit4/util/MainDispatcherRule.kt -------------------------------------------------------------------------------- /libraries/testing-junit5/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-junit5/build.gradle.kts -------------------------------------------------------------------------------- /libraries/testing-junit5/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-junit5/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/testing-junit5/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libraries/testing-junit5/src/main/kotlin/com/bumble/appyx/testing/junit5/util/CoroutinesTestExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-junit5/src/main/kotlin/com/bumble/appyx/testing/junit5/util/CoroutinesTestExtension.kt -------------------------------------------------------------------------------- /libraries/testing-junit5/src/main/kotlin/com/bumble/appyx/testing/junit5/util/InstantExecutorExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-junit5/src/main/kotlin/com/bumble/appyx/testing/junit5/util/InstantExecutorExtension.kt -------------------------------------------------------------------------------- /libraries/testing-ui-activity/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui-activity/build.gradle.kts -------------------------------------------------------------------------------- /libraries/testing-ui-activity/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui-activity/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/testing-ui-activity/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui-activity/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /libraries/testing-ui-activity/src/main/kotlin/com/bumble/appyx/testing/ui/rules/AppyxTestActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui-activity/src/main/kotlin/com/bumble/appyx/testing/ui/rules/AppyxTestActivity.kt -------------------------------------------------------------------------------- /libraries/testing-ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui/build.gradle.kts -------------------------------------------------------------------------------- /libraries/testing-ui/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/rules/AppyxActivityTestRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/rules/AppyxActivityTestRule.kt -------------------------------------------------------------------------------- /libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/rules/AppyxViewTestRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/rules/AppyxViewTestRule.kt -------------------------------------------------------------------------------- /libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/rules/RunRules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/rules/RunRules.kt -------------------------------------------------------------------------------- /libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/utils/DummyNavModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/utils/DummyNavModel.kt -------------------------------------------------------------------------------- /libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/utils/DummyParentNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-ui/src/main/kotlin/com/bumble/appyx/testing/ui/utils/DummyParentNode.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/build.gradle.kts -------------------------------------------------------------------------------- /libraries/testing-unit-common/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/lint-baseline.xml -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/helper/NodeTestHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/helper/NodeTestHelper.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/helper/ParentNodeTestHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/helper/ParentNodeTestHelper.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/DummyNavModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/DummyNavModel.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/InteropBuilderStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/InteropBuilderStub.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/InteropSimpleBuilderStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/InteropSimpleBuilderStub.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/NodeStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/NodeStub.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/TestIntegrationPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/TestIntegrationPoint.kt -------------------------------------------------------------------------------- /libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/TestUpNavigationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/libraries/testing-unit-common/src/main/kotlin/com/bumble/appyx/testing/unit/common/util/TestUpNavigationHandler.kt -------------------------------------------------------------------------------- /plugins/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/build.gradle.kts -------------------------------------------------------------------------------- /plugins/publish-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/publish-plugin/build.gradle.kts -------------------------------------------------------------------------------- /plugins/publish-plugin/src/main/kotlin/PublishPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/publish-plugin/src/main/kotlin/PublishPlugin.kt -------------------------------------------------------------------------------- /plugins/release-dependencies-diff/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/release-dependencies-diff/build.gradle.kts -------------------------------------------------------------------------------- /plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesCreateFilesTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesCreateFilesTask.kt -------------------------------------------------------------------------------- /plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesCreatePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesCreatePlugin.kt -------------------------------------------------------------------------------- /plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesDiffFilesTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesDiffFilesTask.kt -------------------------------------------------------------------------------- /plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesDiffPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/release-dependencies-diff/src/main/kotlin/ReleaseDependenciesDiffPlugin.kt -------------------------------------------------------------------------------- /plugins/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/settings.gradle.kts -------------------------------------------------------------------------------- /plugins/verification-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/verification-plugin/build.gradle.kts -------------------------------------------------------------------------------- /plugins/verification-plugin/src/main/kotlin/CollectSarifPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/verification-plugin/src/main/kotlin/CollectSarifPlugin.kt -------------------------------------------------------------------------------- /plugins/verification-plugin/src/main/kotlin/DetektPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/verification-plugin/src/main/kotlin/DetektPlugin.kt -------------------------------------------------------------------------------- /plugins/verification-plugin/src/main/kotlin/LintPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/verification-plugin/src/main/kotlin/LintPlugin.kt -------------------------------------------------------------------------------- /plugins/verification-plugin/src/main/kotlin/SarifMergeTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/plugins/verification-plugin/src/main/kotlin/SarifMergeTask.kt -------------------------------------------------------------------------------- /samples/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/build.gradle.kts -------------------------------------------------------------------------------- /samples/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/debug.keystore -------------------------------------------------------------------------------- /samples/app/detekt-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/detekt-baseline.xml -------------------------------------------------------------------------------- /samples/app/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/detekt.yml -------------------------------------------------------------------------------- /samples/app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/lint-baseline.xml -------------------------------------------------------------------------------- /samples/app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/lint.xml -------------------------------------------------------------------------------- /samples/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/proguard-rules.pro -------------------------------------------------------------------------------- /samples/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/MainActivity.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/DashedBorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/DashedBorder.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/DotsIndicator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/DotsIndicator.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/Page.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/Page.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/ScreenCenteredContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/ScreenCenteredContent.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/GraphNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/GraphNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/Tree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/Tree.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/nodeimpl/SimpleGraphNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/nodeimpl/SimpleGraphNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/nodeimpl/TestImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/composable/graph/nodeimpl/TestImpl.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/InsideTheBackStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/InsideTheBackStack.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/ChildNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/ChildNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/composable/Buttons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/composable/Buttons.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/composable/PeekInsideBackStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/composable/PeekInsideBackStack.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/IndexedBackStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/IndexedBackStack.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/IndexedBackStackElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/IndexedBackStackElement.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/IndexedBackStackOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/IndexedBackStackOnScreenResolver.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/IndexedBackStackOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/IndexedBackStackOperation.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/Pop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/Pop.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/Push.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/Push.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/UpdateSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/operation/UpdateSize.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/transition/RecentsTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/backstack/app/indexedbackstack/transition/RecentsTransitionHandler.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/cards/CardsExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/cards/CardsExampleNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/child/GenericChildNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/child/GenericChildNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/helper/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/helper/Screen.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/SampleItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/SampleItem.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/SamplesContainerNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/SamplesContainerNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/SamplesSelectorNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/SamplesSelectorNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/ScaledLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/samples/ScaledLayout.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/WhatsAppyxSlideShow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/WhatsAppyxSlideShow.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/app/ApplicationTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/app/ApplicationTree.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/app/StatefulNode1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/app/StatefulNode1.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/app/StatefulNode2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/app/StatefulNode2.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/ComposableNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/ComposableNavigation.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/Intro.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/Intro.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/ModelDrivenIntro.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/ModelDrivenIntro.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/NavModelTeaserNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/slideshow/slide/modeldriven/NavModelTeaserNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/teaser/backstack/BackstackTeaserNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/teaser/backstack/BackstackTeaserNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/teaser/backstack/transitionhandler/CustomBackStackTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/teaser/backstack/transitionhandler/CustomBackStackTransitionHandler.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/node/teaser/promoter/PromoterTeaserNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/node/teaser/promoter/PromoterTeaserNode.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Color.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/ui/MaterialColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/ui/MaterialColors.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Shape.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Theme.kt -------------------------------------------------------------------------------- /samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/kotlin/com/bumble/appyx/app/ui/Type.kt -------------------------------------------------------------------------------- /samples/app/src/main/res/drawable-xxxhdpi/graph1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/res/drawable-xxxhdpi/graph1_dark.png -------------------------------------------------------------------------------- /samples/app/src/main/res/drawable-xxxhdpi/graph1_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/res/drawable-xxxhdpi/graph1_light.png -------------------------------------------------------------------------------- /samples/app/src/main/res/drawable/appyx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/res/drawable/appyx.xml -------------------------------------------------------------------------------- /samples/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /samples/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /samples/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /samples/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /samples/common/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /samples/common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/build.gradle.kts -------------------------------------------------------------------------------- /samples/common/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/lint-baseline.xml -------------------------------------------------------------------------------- /samples/common/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/proguard-rules.pro -------------------------------------------------------------------------------- /samples/common/src/main/java/com/bumble/appyx/samples/common/profile/Profile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/java/com/bumble/appyx/samples/common/profile/Profile.kt -------------------------------------------------------------------------------- /samples/common/src/main/java/com/bumble/appyx/samples/common/profile/ProfileCardNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/java/com/bumble/appyx/samples/common/profile/ProfileCardNode.kt -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween10.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween11.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween12.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween13.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween14.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween15.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween3.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween4.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween6.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween7.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween8.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/drawable/halloween9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/drawable/halloween9.jpeg -------------------------------------------------------------------------------- /samples/common/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/common/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /samples/navigation-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navigation-compose/README.md -------------------------------------------------------------------------------- /samples/navigation-compose/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navigation-compose/build.gradle.kts -------------------------------------------------------------------------------- /samples/navigation-compose/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navigation-compose/lint-baseline.xml -------------------------------------------------------------------------------- /samples/navigation-compose/src/androidTest/kotlin/com/bumble/appyx/sample/navigation/compose/ComposeNavigationRootTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navigation-compose/src/androidTest/kotlin/com/bumble/appyx/sample/navigation/compose/ComposeNavigationRootTest.kt -------------------------------------------------------------------------------- /samples/navigation-compose/src/main/kotlin/com/bumble/appyx/sample/navigation/compose/ComposeNavigationContainerNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navigation-compose/src/main/kotlin/com/bumble/appyx/sample/navigation/compose/ComposeNavigationContainerNode.kt -------------------------------------------------------------------------------- /samples/navigation-compose/src/main/kotlin/com/bumble/appyx/sample/navigation/compose/ComposeNavigationRoot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navigation-compose/src/main/kotlin/com/bumble/appyx/sample/navigation/compose/ComposeNavigationRoot.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/build.gradle.kts -------------------------------------------------------------------------------- /samples/navmodel-samples/detekt-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/detekt-baseline.xml -------------------------------------------------------------------------------- /samples/navmodel-samples/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/detekt.yml -------------------------------------------------------------------------------- /samples/navmodel-samples/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/lint-baseline.xml -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/Cards.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/Cards.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/CardsElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/CardsElement.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/CardsOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/CardsOnScreenResolver.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/CardsOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/CardsOperation.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/IndicateLike.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/IndicateLike.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/IndicatePass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/IndicatePass.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/PromoteAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/PromoteAll.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/TopCardOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/TopCardOperation.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/VoteLike.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/VoteLike.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/VotePass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/operation/VotePass.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/transitionhandler/CardsTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/cards/transitionhandler/CardsTransitionHandler.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/Modal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/Modal.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/ModalElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/ModalElement.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/ModalOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/ModalOnScreenResolver.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/ModalTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/ModalTransitionHandler.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/backpresshandler/RevertBackPressHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/backpresshandler/RevertBackPressHandler.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Add.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Add.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Destroy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Destroy.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Dismiss.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Dismiss.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/FullScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/FullScreen.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/ModalOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/ModalOperation.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Revert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Revert.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Show.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/modal/operation/Show.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/Promoter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/Promoter.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/PromoterElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/PromoterElement.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/PromoterOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/PromoterOnScreenResolver.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/operation/AddFirst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/operation/AddFirst.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/operation/PromoteAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/operation/PromoteAll.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/operation/PromoterOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/navmodel/operation/PromoterOperation.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/transitionhandler/PromoterTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/promoter/transitionhandler/PromoterTransitionHandler.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvanced.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvanced.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedElement.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedElementExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedElementExt.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedExt.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/SpotlightAdvancedOnScreenResolver.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/backpresshandler/GoToDefault.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/backpresshandler/GoToDefault.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/backpresshandler/GoToPrevious.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/backpresshandler/GoToPrevious.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/backpresshandler/UndoHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/backpresshandler/UndoHistory.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/Activate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/Activate.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/Next.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/Next.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/Previous.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/Previous.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/SpotlightOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/SpotlightOperation.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/SwitchToCarousel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/SwitchToCarousel.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/SwitchToPager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/SwitchToPager.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/UpdateElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/operation/UpdateElements.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/transitionhandler/SpotlightAdvancedSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/spotlightadvanced/transitionhandler/SpotlightAdvancedSlider.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/Tiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/Tiles.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/TilesElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/TilesElement.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/TilesElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/TilesElements.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/TilesOnScreenResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/TilesOnScreenResolver.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/backPressHandler/DeselectAllTiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/backPressHandler/DeselectAllTiles.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Add.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Add.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Deselect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Deselect.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/DeselectAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/DeselectAll.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Destroy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Destroy.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/RemoveSelected.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/RemoveSelected.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Select.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/Select.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/TilesOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/TilesOperation.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/ToggleSelection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/operation/ToggleSelection.kt -------------------------------------------------------------------------------- /samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/transitionhandler/TilesTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/navmodel-samples/src/main/kotlin/com/bumble/appyx/navmodel/tiles/transitionhandler/TilesTransitionHandler.kt -------------------------------------------------------------------------------- /samples/sandbox/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/build.gradle.kts -------------------------------------------------------------------------------- /samples/sandbox/detekt-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/detekt-baseline.xml -------------------------------------------------------------------------------- /samples/sandbox/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/detekt.yml -------------------------------------------------------------------------------- /samples/sandbox/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/lint-baseline.xml -------------------------------------------------------------------------------- /samples/sandbox/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/lint.xml -------------------------------------------------------------------------------- /samples/sandbox/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/proguard-rules.pro -------------------------------------------------------------------------------- /samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleViewTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleViewTest.kt -------------------------------------------------------------------------------- /samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCorePageObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCorePageObject.kt -------------------------------------------------------------------------------- /samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/test/AppyxMviViewTestRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/test/AppyxMviViewTestRule.kt -------------------------------------------------------------------------------- /samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/test/AppyxViewRules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/test/AppyxViewRules.kt -------------------------------------------------------------------------------- /samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/test/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/androidTest/kotlin/com/bumble/appyx/sandbox/client/test/Utils.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/MainActivity.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/SandboxApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/SandboxApplication.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/TextButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/TextButton.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/backstack/BackStackExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/backstack/BackStackExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/backstack/BackStackExampleTransitionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/backstack/BackStackExampleTransitionHandler.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/blocker/BlockerExampleBackPressInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/blocker/BlockerExampleBackPressInteractor.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/blocker/BlockerExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/blocker/BlockerExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/cardsexample/CardsExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/cardsexample/CardsExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/child/ChildNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/child/ChildNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/combined/CombinedNavModelNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/combined/CombinedNavModelNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/container/ContainerBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/container/ContainerBuilder.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/container/ContainerNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/container/ContainerNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/CustomisationsNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/CustomisationsNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationExampleBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationExampleBuilder.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationExampleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationExampleView.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/customisations/ViewCustomisationsActivity.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/ChildNodeOne.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/ChildNodeOne.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/ChildNodeTwo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/ChildNodeTwo.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/ExplicitNavigationExampleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/ExplicitNavigationExampleActivity.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/GrandchildNodeOne.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/GrandchildNodeOne.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/GrandchildNodeTwo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/GrandchildNodeTwo.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/RootNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/RootNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/treenavigator/Navigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/explicitnavigation/treenavigator/Navigator.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/integrationpoint/IntegrationPointExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/integrationpoint/IntegrationPointExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/integrationpoint/StartActivityExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/integrationpoint/StartActivityExample.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/InteropExampleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/InteropExampleActivity.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/child/RibsChildBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/child/RibsChildBuilder.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/child/RibsChildNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/child/RibsChildNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/child/RibsChildView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/child/RibsChildView.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentBuilder.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentInteractor.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentRib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentRib.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentView.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/routing/RibsParentChildBuilders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/routing/RibsParentChildBuilders.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/routing/RibsParentRouter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/interop/parent/routing/RibsParentRouter.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/list/LazyListContainerNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/list/LazyListContainerNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/modal/ModalExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/modal/ModalExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreChildNode1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreChildNode1.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreChildNode2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreChildNode2.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleBuilder.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleInteractor.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleView.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/EventsToWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/EventsToWish.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/MviCoreExampleFeature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/MviCoreExampleFeature.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/OutputChild1ToWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/OutputChild1ToWish.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/OutputChild2ToWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/OutputChild2ToWish.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/StateToViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/StateToViewModel.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/ViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/feature/ViewModel.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafBuilder.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafInteractor.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafView.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/navmodels/NavModelExamplesNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/navmodels/NavModelExamplesNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/FullScreenNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/FullScreenNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/ProfileHorizontalListNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/ProfileHorizontalListNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/ProfileVerticalListNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/ProfileVerticalListNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/SharedElementExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/sharedelement/SharedElementExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/spotlight/SpotlightExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/spotlight/SpotlightExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/spotlight/SpotlightFaderThrough.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/spotlight/SpotlightFaderThrough.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/spotlightadvancedexample/SpotlightAdvancedExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/spotlightadvancedexample/SpotlightAdvancedExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/tiles/TilesExampleNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/client/tiles/TilesExampleNode.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Color.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/MaterialColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/MaterialColors.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Shape.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Theme.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/kotlin/com/bumble/appyx/sandbox/ui/Type.kt -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/layout/rib_child.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/layout/rib_child.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/layout/rib_root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/layout/rib_root.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /samples/sandbox/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/android/util/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/android/util/Log.kt -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentNodeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/interop/parent/RibsParentNodeTest.kt -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleNodeJUnit5Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleNodeJUnit5Test.kt -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleNodeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/MviCoreExampleNodeTest.kt -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafNodeJUnit5Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafNodeJUnit5Test.kt -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafNodeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/client/mvicoreexample/leaf/MviCoreLeafNodeTest.kt -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/stub/FeatureStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/stub/FeatureStub.kt -------------------------------------------------------------------------------- /samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/stub/NodeViewStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/samples/sandbox/src/test/kotlin/com/bumble/appyx/sandbox/stub/NodeViewStub.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumble-tech/appyx/HEAD/settings.gradle.kts --------------------------------------------------------------------------------