Aleksey Dolgiy

Results 14 comments of Aleksey Dolgiy

@judemanutd i've got about 8k lines. should I search for something specific?

@judemanutd this line looks suitable: `ActivityRecord{7bf58df u0 com.huawei.systemmanager/.power.ui.PowerWholeCheckActivity t869}`

meh, something is really missing 😞

sorry for delay, but my temporary access to that Honor was suspended if it is acceptable, let the issue be open, may be I'll get access later again

Thanks, really I was trying to build my own steps but then found this repo and now I'm happy

Okay, on my current project (yes, I use Dagger2 :( ) we have two use cases, one of them - analytics. Next gist contains pseudo code, that potentially can handle...

- Also, Dagger2 has no way to handle order of bindings, but sometimes can be very useful,I think. - Also, I personally had issue, when I need a way, which...

Maybe you can help me help you to understand with some questions?

Yep, I think something like this, but more agile than in Dagger2

module constructor bindings: ``` // Sample 1 - Will provide Interceptor1, Interceptor2 and Interceptor9 in Set // Maybe it can receive instances from parent scopes bindAsSetOf(Interceptor::class).with(Interceptor1::class, Interceptor2::class, Interceptor9::class) // Sample...