Kien Nguyen

Results 13 comments of Kien Nguyen

@LabanL can you more specific? What I mean here is subscribe to state, so if I init Reactor with a `Product`, then `getLocation(_)` must also be called, not only when...

Can someone merge this and release a new version please?

I don't think there is a way, because the builder version creates a `Text` internally and doesn't expose any reference outside. If you want it to be the same as...

I managed to fix this by add below lines into project root's `build.gradle` that force subprojects to build using the same sdk: ``` subprojects { afterEvaluate {project -> if (project.hasProperty("android"))...

This is an old issue, but I'm facing the same problem for class name. My app also has some classes named `BaseView`, `MessageView`, `Animator`... I can directly use my app...

My app is having the same problem. If user installed the app, and open the SHORT dynamic link (domain.page.link/abcZYZ), then app will be opened but `dynamicLink.url` is just nil. I...

> > > Thanks for the tip! What versions did you use of GoogleSignIn (and Firebase if applicable)? It doesn't work for me hence the question. Thanks! > > >...

A promise must always produce a value or an error. So `catch` is not working like exception catch in Java. In Promise the error will go down to all `catch`es...

Best way I can think of is an extension like this: ```swift extension Promise { func catchIgnoreCancelled(_ handler: @escaping Catch) -> Promise { self.catch({ error in if error is PromiseCancelledError...