Replies: 1 comment
-
|
Try ; OR In the library manager, long press the library you want too remove then press delete |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to use kotlinx libraries and I don't know how to add kotlinx to the library dependencies.
This is what I have so far:
`package ca.t3kh9h.playground.viewmodels
import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Job
import kotlin.coroutines.CoroutineContext
abstract class BaseViewModel(protectd val uiContext: CoroutineContext) : ViewModel(), CoroutineScope {
abstract fun handleEvent(event: T)
}`
The last line in Library Dependencies is wrong, don't know how to remove it.
Beta Was this translation helpful? Give feedback.
All reactions