What is Android Jetpack Compose: An Introduction to Google’s UI Toolkit

Android Jetpack Compose is a modern UI toolkit introduced by Google for creating native Android apps. It is built with the goal of simplifying the process of building user interfaces while also promoting a more efficient, reactive, and declarative approach. Introduction Android Jetpack Compose is… Read More »What is Android Jetpack Compose: An Introduction to Google’s UI Toolkit

How Cool is Kotlin?

Before you dive deeper into Kotlin’s features, go back to DetailActivityKotlin.kt and replace the contents of the file with the following: package com.tejsumeru.android.omgandroid import android.content.Intent import android.os.Bundle import android.support.v4.view.MenuItemCompat import android.support.v7.app.AppCompatActivity import android.view.Menu import android.widget.ImageView import android.support.v7.widget.ShareActionProvider import com.squareup.picasso.Picasso class DetailActivityKotlin : AppCompatActivity() { private val imageUrlBase… Read More »How Cool is Kotlin?

Difference between Java and Kotlin in Android with Examples

Kotlin KOTLIN is a cross platform, statically types, general purpose programming language with type inference. KOTLIN is designed to interoperate fully with java but type inference allows its syntax to be more concise.KOTLIN is sponsored by JetBrains and Google through the Kotlin Foundation. Java JAVA is an Object Oriented… Read More »Difference between Java and Kotlin in Android with Examples