Category: Kotlin

  • Beginning Android Development with Kotlin

    Beginning Android Development with Kotlin

    Contents What is Kotlin? Why kotlin in Android? Kotlin internals Java vs Kotlin Features available in Kotlin What is Kotlin? Kotlin is a general purpose, open source, statically typed programming language for the JVM, Browser, Native, and Android that combines object-oriented and functional programming features. In July 2011, JetBrains unveiled Project Kotlin, a new language […]

  • Easy guide to kotlin Koin – The Dependency Injection Framework

    Easy guide to kotlin Koin – The Dependency Injection Framework

    Working with dependency injection is one complex concept in android dependency injection. Because Dagger-2 had complicated the concept for me when I came into android. In this tutorial, I have explained another dependency injection framework that I recently adopted and how it has really simplified the process for me. That is Koin. A pragmatic lightweight dependency injection framework […]

  • Make REST API request with Kotlin ktor client in android

    Make REST API request with Kotlin ktor client in android

    Ktor is a framework to easily build connected applications, web applications, HTTP services, and mobile and browser applications. Modern connected applications need to be asynchronous to provide the best experience to users, and Kotlin coroutines provide awesome facilities to do it in an easy and straightforward way. Ktor is a new framework for building asynchronous […]