Android Clean

From bibbleWiki
Revision as of 12:47, 30 January 2021 by Iwiseman (talk | contribs) (Created page with "=Notes to sort out= ==@SUPPRESS== This suppresses the depreciation at compile time <syntaxhighlight "kotlin"> @Suppress("DEPRECATION") val isConnected: Boolean...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Notes to sort out

@SUPPRESS

This suppresses the depreciation at compile time

    @Suppress("DEPRECATION")
    val isConnected: Boolean
        get() = (context.getSystemService(Context.CONNECTIVITY_SERVICE) as? ConnectivityManager)?.run {