A small, yet full-featured framework that allows building View-based Android applications. Conductor provides a light-weight wrapper around standard Android Views that does just about everything you'd want.
Questions tagged [conductor]
47 questions
19
votes
1 answer
How to set lateinit Kotlin property to null
The below class has a very unique lifecycle, which requires me to temporarily null out lateinit properties
class SalesController : BaseController, SalesView {
@Inject lateinit var viewBinder: SalesController.ViewBinder
@Inject lateinit var…

ZakTaccardi
- 12,212
- 15
- 59
- 107
7
votes
0 answers
Shared Element Transition with Android DataBinding
I am using Conductor API together with Android DataBinding and have been trying to make a simple shared element transition from a controller view to another controller view but it is not working.
Tapping on "Android Databinding" demo from the list…

beerBear
- 969
- 2
- 17
- 41
5
votes
1 answer
Start specific conductor controller in (Espresso) Android instrumentation test
I'm writing Espresso tests for an app written using Conductor. I'd like to specify which controller to start for each test, so that I don't need to get Espresso to click through the app from the beginning Activity for each. Since there is only one…

Kai
- 1,709
- 1
- 23
- 36
4
votes
0 answers
Android Conductor - fitsSystemWindows does not work on first controller
With my most recent app, I've decided to use Conductor for the whole of the navigation. It's a single activity app, and everything works fine, except for the splash screen - for some reason, the initial controller refuses to stretch under the status…

fonix232
- 2,132
- 6
- 39
- 69
4
votes
1 answer
Android Conductor - how to insert one controller to another as view?
I have some controller classes with own implementations. Is it possible to insert one to another as view in viewgroup?

user3352926
- 1,017
- 1
- 10
- 15
3
votes
1 answer
How to set retention time in Netflix Conductor?
We use MySQL as database for working with Netflix Conductor.
Is it possible to set time to keep workflow execution history (in MySQL and in Elasticsearch)?

den123
- 793
- 1
- 12
- 27
3
votes
1 answer
Back stack handling in Conductor
I try to use Conductor library but have a problem with backstack.
I have an activity with 4 buttons in bottom navigation panel.
Each of the buttons in ACTIVITY opens 1 of the 4 controllers:
- today news (root controller)
- trending news
- market…

Alex
- 85
- 1
- 8
3
votes
1 answer
How to organize Dagger2 modules & components when using single-activity-application
I have an application with let's say 15 screens.
There are 3 main, completely separate Activities:
LoginActivity - quite obvious one, some login things
MainActivity - THE big one, most importat
TheOtherOneNotRelevantAtTheMoment
I decided to use…

Michał
- 616
- 1
- 7
- 22
2
votes
0 answers
When onActivityResult called, coroutine context is not yet created
I am using Conductor (https://github.com/bluelinelabs/Conductor) for Android to replace Fragments.
I was implementing image picking in my app and realized that onActivityResult is called before Controller's onAttach, in case of Fragments, equivalent…

Sermilion
- 1,920
- 3
- 35
- 54
1
vote
0 answers
Conductor build error Execution failed for task ':conductor-annotations:spotlessJavaCheck'
i try to build conductor from netflix to use it in my micro services application, but when i do it, i get an error while building conductor, i don't know what im doing wrong, i use docker-compose build, how it is described in documentation but it…

Karol Wolny
- 59
- 5
1
vote
2 answers
Could Run netflix conductor with postgress -
I am trying to follow the simple tutorial of Netflix conductor but could not run the postgress or any other persistence option
I have got APPLICATION FAILED TO START and can not use the persistence option
conductor 3.9.10 using docker-compose
os:…

yuksi
- 97
- 9
1
vote
3 answers
Microservices orchestration choices
I am exploring the possible solutions for orchestrating my flows across multiple services via some infrastructure. Searching shows me a few options such as Conductor, Camunda, Airflow etc.
I am wondering what would fit my use case better
One of my…

Jason Chen
- 13
- 3
1
vote
1 answer
Android - RecyclerView items aren't visible after orientation change
I'm using in my app the Conductor framework.
The app in general is fixed in portrait state, but I have 2 Controllers that use ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR and respond to device orientation changes
Controller A - shows a summary of…

Noa Drach
- 2,381
- 3
- 26
- 44
1
vote
1 answer
Conductor: Popping to controller without showing in view
I have an app that uses Conductor to handle it's Bottom Nav bar navigation. For sake of brevity, I will try to describe it as concisely as possible.
The app has a good amount of logic in place which I want to touch as minimally as possible
The issue…

Kyle
- 695
- 6
- 24
1
vote
0 answers
Update Database if Workflow Completes/Fails
I have a spring micro-service that on any CRUD endpoint updates an entity then registers a workflow to a orchestration system (Netflix conductor). This workflow is responsible for converting the entities to a specific config format & applying the…

Riley
- 19
- 4