Skip to main content

Getting started with Android Development in Kotlin

Kotlin is the language using which we can use to create the app for mobile application. Kotlin is well supported for Android development and supported with Android Studio.



It has several benefits over java. However, some drawback is also because it is just beginning of Android  App development java so we have very less tutorial also.Table of Content

  1.  Setting up the environment

  2. Setup Project in Kotlin

  3. Create Hello World App and test


Step1: Setting up the environment for Kotlin in Android Studio


First of all, we have to setup the development environment for kotlin. So follow the as below given steps to setup the same.

  • Open Android Studio

  • Click on File

  • Click on Setting and type 'plugin' in search box

  • Click Browse Repository

  • Type Kotlin as given in below in search box

  • Select kotlin and click on Install, it will take some time and install the plugin


Kotlin





  • Click ok and apply

  • Restart Android Studio



Well done you have done with environment setting.

Step2: Setup the Project


Click on File and then click on New Project but not create any activity, select add no activity.


Given a name to your Project like here I given HelloKotlin.

3. Create your first Kotlin Activity as main activity


Right click on your root folder of your project as given in below screen shots.


Click on New-> Kotlin Activity and select the Activity Type from option here I am using Blank Activity. Your Activity will get Created but you saw an error saying that it is not configured.



Click on Configure and select the options Android with Gradle, then select the appropriate option and press ok.




Finally, Click on Sync Project.
When you try to run your app then you might get the error saying the default app/activity not set so for that you can click on setting and setup the default app and modify your activity in AndroidManifest.xml file as given below.

<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>


Now Test your App you and check the working of the app. It will look like as given below.


Comments

  1. […] time of wiring this tutorial we have Kotlin Pulgin version 1.2.10.  You can check out the “Getting started with Android Development in Kotlin” if you have not setup the plugin […]

    ReplyDelete

Post a Comment

Popular posts from this blog

Flutter How to Start Android Activity from Flutter View

Flutter and Dart is an excellent combination for creating the UI, but for accessing the platform-specific service we need to open platform-specific activity. So lets in this article we will explore how to start an android activity and access the service from Flutter View. Create a Project for this Android Activity Flutter View Demo Create a Project From File menu select the New Flutter Project Enter the project name Select the AndroidX support and click on next After the above, we step click on Finish We will have the following project structure created. Create the Second Activity in Android Just go to the android folder and open it in separate windows. We will have the following project structure. Create the Activity Just right-click on the Kotlin folder and create a blank activity from the menu. If you create the activity then you may be required to upgrade the Gradle and do some import. So Just click on update and wait for the project s

Kotlin Parcelable Array Objects Send To Activity

We know that IPC (Inter Process Communication) between the activity is an extremely important part of any application development. We often required that we need to send some data to other activity. For example, we may be required to send an array of data, data could be an Integer, String, Long, Double, Float or any other custom data objects. So, In this example, we are going to learn how to implement the Kotlin Parcelable Array object to send the data from one activity to second activity. What is Parcel? The parcel class is designed as a high-performance IPC transport. A Parcel can contain both flattened data that will be unflattened on the other side of the IPC, and references to live IBinde r objects that will result in the other side receiving a proxy IBinder connected with the original IBinder in the Parcel. Create Kotlin Parcelable Array Objects Parcelable is API for placing the arbitrary objects into the Parcel. In Actual in android app development, Parcelable is an interface

Scan and List All Available WiFi Network In Android

In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. You May Like Below Topic: How to Read and Write JSON data using GSON WP Android App using REST and volley WP Android App using REST and volley part2 Implementation of SwipeRefreshLayout in RecyclerView Create Amazing Bottom Navigation Bar Without Any External Library Introduction In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. We will add this functionality to our existing Demo app " Video Gallery ". If you would like to check out t