Kotlin

Android getting started with DS Photo Editor SDK

This post is about how to integrate DS Photo Editor SDK into your android apps with the help of a simple ImageEditor App.   Creating new project 1 . Create a new project by going to File ⇒ New Android Project, select Empty Activity, provide app name, select language to kotlin and then finally click on finish. 2 . Download the SDK from […]

Android getting started with DS Photo Editor SDK Read More »

Pass data between destinations using Navigation in Android

This post is about how to pass data between destinations using Android Jetpack Navigation.   Use Safe Args to pass data The Navigation component has a Gradle plugin called Safe Args that generates simple object and builder classes that enable type-safe navigation and argument passing between destinations. Safe Args is strongly recommended for navigating and

Pass data between destinations using Navigation in Android Read More »

Android Jetpack Navigation Example

This post is about Android Jetpack Navigation and how to set up and work with the Navigation component.   Jetpack Navigation Navigation refers to the interactions that allow users to navigate across, into, and back out from the different pieces of content within your app. Android Jetpack’s Navigation component helps you implement navigation, from simple

Android Jetpack Navigation Example Read More »

Android App using RxJava, Rerofit with MVVM Architecture

This post is about how to build an Android app using RxJava, RxAndroid, Retrofit with MVVM pattern in Kotlin.   RxJava RxJava is a Java implementation of Reactive Extension or ReactiveX. Basically, it’s a library that composes asynchronous events by following Observer Pattern. The library offers a wide range of amazing operators like map, combine,

Android App using RxJava, Rerofit with MVVM Architecture Read More »