Hey Guys, I have problem with kotlin android and r...
# android
d
Hey Guys, I have problem with kotlin android and retrofit 2, rxjava That is "Caused by: kotlin.UninitializedPropertyAccessException: lateinit property compositeDisposable has not been initialized"
t
The error message is clear : at some point in your code, you are accessing a class variable named "compositeDisposable" that has not been initialized. Maks sure that you assign a value to this variable before reading it, like this :
Copy code
compositeDisposable = CompositeDisposable()
5
r
I plus one that lol
d
Yeah, I just fix