You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid force unwrap (!!) at all costs. That can create a NullPointerException, if the variable value is null.
Use something null safe, like foo?.let{} ?: instead.
Avoid force unwrap (!!) at all costs. That can create a NullPointerException, if the variable value is null.
Use something null safe, like foo?.let{} ?: instead.
TaskRuler/app/src/main/java/com/taskruler/service/ActivityService.kt
Line 35 in 910e2b3