We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be1cd15 commit 88735edCopy full SHA for 88735ed
2 files changed
base/build.gradle.kts
@@ -61,6 +61,7 @@ dependencies {
61
// DI Nav for BVM factory
62
implementation("androidx.hilt:hilt-navigation-compose:1.1.0-alpha01")
63
implementation("io.insert-koin:koin-androidx-compose-navigation:3.5.3")
64
+ implementation(project(":compose-android"))
65
66
testImplementation("junit:junit:4.13.2")
67
androidTestImplementation("androidx.test.ext:junit:1.1.5")
base/src/main/java/com/streamliners/base/BaseViewModel.kt
@@ -26,7 +26,7 @@ open class BaseViewModel : ViewModel() {
26
27
open fun init() { }
28
29
- private fun handleException(throwable: Throwable) {
+ fun handleException(throwable: Throwable) {
30
viewModelScope.launch {
31
throwable.printStackTrace()
32
0 commit comments