GameTracker Privacy PolicyPrivacy Policy Last updated: October 15, 2024 This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protect...Oct 15, 2024·9 min read·28
Flow Exception HandlingIn this series of articles , we are discussing about Kotlin flows and in this article we will discuss about Flows Exception handling try/catch operator We can simply enclose the collect block with try/catch as follows suspend fun main(): Unit = cor...May 9, 2024·2 min read·87
Flow Terminal OperatorsIn this series of articles , we are discussing about Kotlin flows and in this article we will discuss about Flows Terminal operators Code gist can be found in https://gist.github.com/vprabhu/20bf26e73451ae9ea0876e3780537d4a Whats is Terminal Operator...May 7, 2024·2 min read·82
Handle Android Lifecycle methods inside composable functionAndroid Lifecycle LifeCycle is a class from androidx.lifecycle package which helps us to get the information and observe on the lifecycle state of components like Activities and fragments Two things to consider 1.State : Created,Started,Resumed,Destr...May 6, 2024·4 min read·420
Kotlin Flow and Flow BuildersIn this series of articles , we will discuss about Kotlin flows and in this article we will discuss about Flows and Flow Builders Code gist can be found in https://gist.github.com/vprabhu/cf5f6407516f0bc97d764c7a9961e3cd Whats is Flow ? Already we kn...May 5, 2024·2 min read·78
Compose - Bill of Materials(BOM)In this article , lets discuss about Bill of Materials Lets understand why we need BOM , then we will discuss what is BOM Why BOM? Compose libraries are version independently that is version number are maintained different for each library . For de...Mar 7, 2024·2 min read·139
Collections Part 5 : Retrieve Single Item from CollectionIn this article , lets discuss about Kotlin Collections operation - retrieve single item from Collection using functions like elementAt() , first() , last() , random() , firstNotNullOf() and contains() Foundation List is an ordered collection which...Sep 11, 2021·3 min read·38