` val obsView: Observable<out CharSequence&g...
# announcements
o
val obsView: Observable<out CharSequence> = obs;
but then you can’t call subscribe on it, because it is an out-projection of the type, i.e. you can call only functions where T is in out position (e.g. return value).
subscribe
has T in the
in
position, so you can’t call it.