<@U0KBF8D7V> Yo have an error in your syntax there...
# android
r
@Paul Woitaschek Yo have an error in your syntax there with the
notWorking
val - you have to lose the innermost braces in the lambda. You're basically creating a lambda returning a lambda there, where you actually want a lambda returning a string. This is what you want:
Copy code
val nowItsWorking: Observable<String> = Observable.combineLatest(os, oi) { s, i -> s }