Skip to content
View AndroidKiran's full-sized avatar
💭
Cooking Tv app
💭
Cooking Tv app

Block or report AndroidKiran

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
AndroidKiran/README.md

Hi 👋, I'm Ravikiran Surpur

A passionate mobile developer

Coder GIF

Connect with me:

ravikiran-surpur

Languages and Tools:

android dart figma firebase flutter git java jenkins kotlin nodejs spring sqlite typescript

Pinned Loading

  1. Rooster Rooster Public

    Rooster is the ultimate solution for developers seeking complete control over their crash monitoring and response infrastructure. Built on the power of Firebase Crashlytics, Firebase Cloud Function…

    Dart

  2. PetPot PetPot Public template

    PetPot is an Android App for Pet Lovers

    Kotlin 2 1

  3. Location Livedata. Location Livedata.
    1
    
                  
    2
    import android.annotation.SuppressLint
    3
    import android.arch.lifecycle.LiveData
    4
    import android.content.Context
    5
    import android.location.Location
  4. NetworkLiveData NetworkLiveData
    1
    class NetworkLiveData constructor(private val context: Context?) : LiveData<Boolean>() {
    2
    
                  
    3
        private lateinit var networkConnectionBroadcastReceiver: NetworkConnectionBroadcastReceiver
    4
    
                  
    5
        override fun onActive() {
  5. Kotlin implementation of a RequestFl... Kotlin implementation of a RequestFlowManager using Flows and Coroutines. Includes functions for refresh, retry, and reset, along with extension functions to convert request events into Flows and StateFlows.
    1
    import com.applogics.scrabble.core.common.utils.RequestFlowManager.RequestState
    2
    import kotlinx.coroutines.CoroutineDispatcher
    3
    import kotlinx.coroutines.CoroutineScope
    4
    import kotlinx.coroutines.Dispatchers
    5
    import kotlinx.coroutines.FlowPreview