Kotlin Build Your Own App
Kotlin Build Your Own App
On 7 May 2019, Google announced that the Kotlin programming language had become its preferred
language for Android app developers.[6] Since the release of Android Studio 3.0 in October 2017,
Kotlin has been included as an alternative to the standard Java compiler. The Android Kotlin compiler
emits Java 8 bytecode by default (which runs in any later JVM), but allows targeting Java 9 up to 20,
for optimizing,[7] or allows for more features; has bidirectional record class interoperability support
for JVM, introduced in Java 16, considered stable as of Kotlin 1.5.
Kotlin has support for the web with Kotlin/JS, through an intermediate representation-based backend
which has been declared stable since version 1.8, released December 2022. Kotlin/Native (for e.g.
Apple silicon support) has been declared stable since version 1.9.20, released November 2023.[8][9]
History
A 2D picture of the
Kotlin mascot
A 3D picture of the
Kotlin mascot
Name Kotlin
Designed by JetBrains
Development
Developer JetBrains
The first commit to the Kotlin Git repository was
First appeared July 22, 2011
on November 8, 2010.[11]
stack demo has been made with the new Filename extensions .kt, .kts, .kexe, .klib
[20][21]
Kotlin/JS Gradle Plugin.
Website [Link] (http
Kotlin 1.3 was released on 29 October 2018, s://[Link]/)
V (Vlang)
Kotlin 1.4 was released in August 2020, with e.g.
some slight changes to the support for Apple's
platforms, i.e. to the Objective-C/Swift interop.[23]
Kotlin 1.7 was released in June 2022, including the alpha version of the new Kotlin K2 compiler.[24]
Kotlin 1.8 was released in December 2022, 1.8.0 was released on January 11, 2023.[25]
Kotlin 1.9 was released in July 2023, 1.9.0 was released on July 6, 2023.[26]
Kotlin 2.0 was released in May 2024, 2.0.0 was released on May 21, 2024.[27]
Kotlin 2.1 was released in November 2024, 2.1.0 was released on November 27, 2024.[28]
Design
Development lead Andrey Breslav has said that Kotlin is designed to be an industrial-strength object-
oriented language, and a "better language" than Java, but still be fully interoperable with Java code,
allowing companies to make a gradual migration from Java to Kotlin.[29]
Semicolons are optional as a statement terminator; in most cases a newline is sufficient for the
compiler to deduce that the statement has ended.[30]
Kotlin variable declarations and parameter lists have the data type come after the variable name (and
with a colon separator), similar to Ada, BASIC, Pascal, TypeScript and Rust. This, according to an
article from Roman Elizarov, current project lead, results in alignment of variable names and is more
pleasing to eyes, especially when there are a few variable declarations in succession, and one or
more of the types is too complex for type inference, or needs to be declared explicitly for human
readers to understand.[31][32]
The influence of Scala in Kotlin can be seen in the extensive support for both object-oriented and
functional programming[33] and in a number of specific features:
there is a distinction between mutable and immutable variables (var vs val keyword)
functions and methods support default arguments, variable-length argument lists and named
arguments
Kotlin 1.3 added support for contracts,[34] which are stable for the standard library declarations, but
still experimental for user-defined declarations. Contracts are inspired by Eiffel's design by
contract[35] programming paradigm.
Syntax
Kotlin relaxes Java's restriction of allowing static methods and variables to exist only within a class
body. Static objects and functions can be defined at the top level of the package without needing a
redundant class level. For compatibility with Java, Kotlin provides a JvmName annotation which
specifies a class name used when the package is viewed from a Java project. For example,
@file:JvmName("JavaClassName") .
Main entry point
As in C, C++, C#, Java, and Go, the entry point to a Kotlin program is a function named "main", which
may be passed an array containing any command-line arguments. This is optional since Kotlin 1.3.[37]
Perl, PHP, and Unix shell–style string interpolation is supported. Type inference is also supported.
Extension functions
Similar to C#, Kotlin allows adding an extension function to any class without the formalities of
creating a derived class with new functions. An extension function has access to all the public
interface of a class, which it can use to create a new function interface to a target class. An extension
function will appear exactly like a function of the class and will be shown in code completion
inspection of class functions. For example:
1 package [Link]
2
3 fun [Link](): Char = get(length - 1)
4
5 >>> println("Kotlin".lastChar())
By placing the preceding code in the top-level of a package, the String class is extended to include a
lastChar function that was not included in the original definition of the String class.
Scope functions
Kotlin has five scope functions, which allow the changing of scope within the context of an object.
The scope functions are let , run , with , apply , and also .[38]
Similar to Python, the spread operator asterisk (*) unpacks an array's contents as individual
arguments to a function, e.g.:
Destructuring declarations
Destructuring declarations decompose an object into multiple variables at once, e.g. a 2D coordinate
object might be destructured into two integers, x and y .
For example, the [Link] object supports destructuring to simplify access to its key and value
fields:
Nested functions
In Kotlin, to derive a new class from a base class type, the base class needs to be explicitly marked
as "open". This is in contrast to most object-oriented languages such as Java where classes are open
by default.
Example of a base class that is open to deriving a new subclass from it:
1 // open on the class means this class will allow derived classes
2 open class MegaButton {
3
4 // no-open on a function means that
5 // polymorphic behavior disabled if function overridden in
derived class
6 fun disable() { ... }
7
8 // open on a function means that
9 // polymorphic behavior allowed if function is overridden
in derived class
10 open fun animate() { ... }
11 }
12
13 class GigaButton: MegaButton() {
14
15 // Explicit use of override keyword required to override a
function in derived class
16 override fun animate() { println("Giga Click!") }
17 }
Abstract classes are open by default
Abstract classes define abstract or "pure virtual" placeholder functions that will be defined in a
derived class. Abstract classes are open by default.
Kotlin provides the following keywords to restrict visibility for top-level declaration, such as classes,
and for class members: public , internal , protected , and private .
Keyword Visibility
Keyword Visibility
Example:
1 // Class is visible only to current module
2 internal open class TalkativeButton {
3 // method is only visible to current class
4 private fun yell() = println("Hey!")
5 // method is visible to current class and derived classes
6 protected fun whisper() = println("Let's talk!")
7 }
8 internal class MyTalkativeButton: TalkativeButton() {
9 fun utter() = [Link]()
10 }
11 MyTalkativeButton().utter()
Kotlin supports the specification of a "primary constructor" as part of the class definition itself,
consisting of an argument list following the class name. This argument list supports an expanded
syntax on Kotlin's standard function argument lists that enables declaration of class properties in the
primary constructor, including visibility, extensibility, and mutability attributes. Additionally, when
defining a subclass, properties in super-interfaces and super-classes can be overridden in the
primary constructor.
However, in cases where more than one constructor is needed for a class, a more general
constructor can be defined using secondary constructor syntax, which closely resembles the
constructor syntax used in most object-oriented languages like C++, C#, and Java.
Sealed classes
Sealed classes and interfaces restrict subclass hierarchies, meaning more control over the
inheritance hierarchy.
All the subclasses of the sealed class are defined at compile time. No new subclasses can be added
to it after the compilation of the module having the sealed class. For example, a sealed class in a
compiled jar file cannot be subclassed.
Data classes
Kotlin's data class construct defines classes whose primary purpose is storing data, similar to
Java's record types. Like Java's record types, the construct is similar to normal classes except
that the key methods equals , hashCode and toString are automatically generated from the
class properties. Unlike Java's records, data classes are open for inheritance.
Kotlin interactive shell
$ kotlinc-jvm
type :help for help; :quit for quit
>>> 2 + 2
4
>>> println("Hello, World!")
Hello, World!
Kotlin can also be used as a scripting language. A script is a Kotlin source file using the .kts
filename extension, with executable source code at the top-level scope:
1 // list_folders.kts
2 import [Link]
3 val folders = File(args[0]).listFiles { file ->
[Link]() }
4 folders?.forEach(::println)
Scripts can be run by passing the -script option and the corresponding script file to the compiler.
Null safety
Kotlin makes a distinction between nullable and non-nullable data types. All nullable objects must be
declared with a "?" postfix after the type name. Operations on nullable objects need special care from
developers: a null-check must be performed before using the value, either explicitly, or with the aid of
Kotlin's null-safe operators:
?. (the safe navigation operator) can be used to safely access a method or property of a possibly
null object. If the object is null, the method will not be called and the expression evaluates to null.
Example:
?: (the null coalescing operator) is a binary operator that returns the first operand, if non-null, else
the second operand. It is often referred to as the Elvis operator, due to its resemblance to an
emoticon representation of Elvis Presley.
Lambdas
Kotlin provides support for higher-order functions and anonymous functions, or lambdas.[39]
Lambdas are declared using braces, { }. If a lambda takes parameters, they are declared within the
braces and followed by the -> operator.
1 fun main() {
2 println("Hello, world!")
3 // Hello, world!
4 }
Tools
Android Studio (based on IntelliJ IDEA) has official support for Kotlin, starting from Android Studio
3.[40]
Integration with common Java build tools is supported, including Apache Maven,[41] Apache Ant,[42]
and Gradle.[43]
IntelliJ IDEA has plug-in support for Kotlin.[46] IntelliJ IDEA 15 was the first version to bundle the
Kotlin plugin in the IntelliJ Installer, and to provide Kotlin support out of the box.[47]
Gradle: Kotlin has seamless integration with Gradle, which is a popular build automation tool.
Gradle allows you to build, automate, and manage the lifecycle of your Kotlin projects efficiently[48]
Applications
When Kotlin was announced as an official Android development language at Google I/O in May 2017,
it became the third language fully supported for Android, after Java and C++.[49] As of 2020, Kotlin
was the most widely used language on Android, with Google estimating that 70% of the top 1,000
apps on the Play Store were written in Kotlin. Google itself had 60 apps written in Kotlin, including
Maps and Drive. Many Android apps, such as Google Home, were in the process of being migrated to
Kotlin, and therefore use both Kotlin and Java. Kotlin on Android is seen as beneficial for its null-
pointer safety, as well as for its features that make for shorter, more readable code.[50]
In addition to its prominent use on Android, Kotlin was gaining traction in server-side development.
The Spring Framework officially added Kotlin support with version 5, on 4 January 2017.[51] To further
support Kotlin, Spring has translated all its documentation to Kotlin, and added built-in support for
many Kotlin-specific features such as coroutines.[52] In addition to Spring, JetBrains has produced a
Kotlin-first framework called Ktor for building web applications.[53]
In 2020, JetBrains found in a survey of developers who use Kotlin that 56% were using Kotlin for
mobile apps, while 47% were using it for a web back-end. Just over a third of all Kotlin developers
said that they were migrating to Kotlin from another language. Most Kotlin users were targeting
Android (or otherwise on the JVM), with only 6% using Kotlin Native.[54]
Adoption
In 2018, Kotlin was the fastest growing language on GitHub, with 2.6 times more developers
compared to 2017.[55] It is the fourth most loved programming language according to the 2020 Stack
Overflow Developer Survey.[56]
Kotlin was also awarded the O'Reilly Open Source Software Conference Breakout Award for 2019.[57]
Allegro[58]
Amazon[59]
Atlassian[60]
Cash App[61][62]
Flux[63]
Google[64]
Gradle[65]
JetBrains[66]
Meshcloud[67]
OLX[69]
Pivotal[70]
Rocket Travel[71]
Shazam[72]
Zalando[73]
Some companies/organizations have used Kotlin for web development:
Barclay's Bank[74]
Data2viz[75]
Fritz2[76]
JetBrains[77]
Basecamp[78]
Coursera[79]
DripStat[80]
Duolingo[81]
Meta[82]
Netflix[83]
Pinterest[84]
Trello[85]
Uber[86]
See also
This article contains quotations from Kotlin tutorials which are released under an Apache 2.0
license.
6. Lardinois, Frederic (7 May 2019). "Kotlin is now Google's preferred language for Android app
development" ([Link]
or-android-app-development/) . TechCrunch. Archived ([Link]
203145/[Link]
oid-app-development/) from the original on 7 May 2019. Retrieved 8 May 2019.
10. Mobius (8 January 2015), Андрей Бреслав – Kotlin для Android: коротко и ясно ([Link]
[Link]/watch?v=VU_L2_XGQ9s) , archived ([Link]
57/[Link] from the original on 12 April 2023,
retrieved 28 May 2017
12. Krill, Paul (22 July 2011). "JetBrains readies JVM language Kotlin" ([Link]
d/application-development/jetbrains-readies-jvm-based-language-167875) . InfoWorld.
Archived ([Link]
22405/[Link]) from the original on 7 September 2019.
Retrieved 2 February 2014.
13. Waters, John (22 February 2012). "Kotlin Goes Open Source" ([Link]
2/02/22/[Link]) . [Link]. 1105 Enterprise Computing Group.
Archived ([Link]
2/22/[Link]) from the original on 18 February 2014. Retrieved
2 February 2014.
15. "Kotlin 1.0 Released: Pragmatic Language for JVM and Android | Kotlin Blog" ([Link]
[Link]/kotlin/2016/02/kotlin-1-0-released-pragmatic-language-for-jvm-and-android/) .
[Link]. 15 February 2016. Archived ([Link]
3/[Link]
d-android/) from the original on 24 January 2018. Retrieved 11 April 2017.
16. Shafirov, Maxim (17 May 2017). "Kotlin on Android. Now official" ([Link]
n/2017/05/kotlin-on-android-now-official/) . Archived ([Link]
80054/[Link] from the
original on 29 May 2023. Retrieved 18 May 2017. "Today, at the Google I/O keynote, the Android
team announced first-class support for Kotlin."
17. "Kotlin 1.1 Released With JavaScript Support, Coroutines, and More | Kotlin Blog" ([Link]
[Link]/kotlin/2017/03/kotlin-1-1/) . [Link]. 1 March 2017. Archived (https://
[Link]/web/20250321000855/[Link]
from the original on 21 March 2025. Retrieved 9 April 2025.
18. "Kotlin 1.2 Released: Sharing Code between Platforms | Kotlin Blog" ([Link]
kotlin/2017/11/kotlin-1-2-released/) . [Link]. 28 November 2017. Archived (http
s://[Link]/web/20230524172920/[Link]
-released/) from the original on 24 May 2023. Retrieved 29 November 2017.
21. "Kotlin full stack app demo: update all involving versions to work with 1.3.70 release" ([Link]
[Link]/issue/KT-37029) . [Link]. Archived ([Link]
rg/web/20200802221433/[Link] from the original
on 2 August 2020. Retrieved 4 April 2020.
22. "Kotlin 1.1 Released with JavaScript Support, Coroutines and more" ([Link]
kotlin/2017/03/kotlin-1-1/) . Archived ([Link]
[Link]/kotlin/2017/03/kotlin-1-1/) from the original on 4 June 2023. Retrieved
1 May 2017.
23. "What's New in Kotlin 1.4 - Kotlin Programming Language" ([Link]
e/[Link]) . Kotlin. Archived ([Link]
[Link]/docs/reference/[Link]) from the original on 8 June 2023. Retrieved
20 August 2020. "In 1.4.0, we slightly change the Swift API generated from Kotlin with respect to
the way exceptions are translated."
25. Krill, Paul (12 January 2023). "Kotlin 1.8.0 adds recursive copy, delete for directories" ([Link]
[Link]/article/3682130/[Link]) .
Archived ([Link]
82130/[Link]) from the original on 8 July
2023. Retrieved 8 March 2022.
29. "JVM Languages Report extended interview with Kotlin creator Andrey Breslav" ([Link]
[Link]/rebellabs/jvm-languages-report-extended-interview-with-kotlin-creator-andrey-bresl
av/) . [Link]. 22 April 2013. Archived ([Link]
2139/[Link]
n-creator-andrey-breslav/) from the original on 15 January 2019. Retrieved 2 February 2014.
32. "Roman Elizarov is the new Project Lead for Kotlin" ([Link]
oman-elizarov-is-the-new-project-lead-for-kotlin/) . The Kotlin Blog. JetBrains. 19 November
2020. Archived ([Link]
n/2020/11/roman-elizarov-is-the-new-project-lead-for-kotlin/) from the original on 20 January
2022. Retrieved 7 November 2021.
44. "Getting Started with Eclipse Neon – Kotlin Programming Language" ([Link]
s/tutorials/[Link]) . [Link]. 10 November 2016. Archived (https://
[Link]/web/20230518022923/[Link]
[Link]) from the original on 18 May 2023. Retrieved 11 April 2017.
49. Lardinois, Frederic (17 May 2017). "Google makes Kotlin a first-class language for writing
Android apps" ([Link]
for-writing-android-apps/) . [Link]. Archived ([Link]
065631/[Link]
ting-android-apps/) from the original on 22 May 2017. Retrieved 28 June 2018.
50. "Kotlin programming language: How Google is using it to squash the code bugs that cause most
crashes" ([Link]
uash-the-bugs-that-cause-most-crashes/) . ZDNet. Archived ([Link]
30406045458/[Link]
to-squash-the-bugs-that-cause-most-crashes/) from the original on 6 April 2023. Retrieved
6 December 2020.
57. "Kotlin wins Breakout Project of the Year award at OSCON '19" ([Link]
n/2019/07/kotlin-wins-breakout-project-of-the-year-award-at-oscon-19/) . 18 July 2019.
Archived ([Link]
9/07/kotlin-wins-breakout-project-of-the-year-award-at-oscon-19/) from the original on 17
May 2022. Retrieved 24 July 2019.
59. "QLDB at Amazon" ([Link] . Talking Kotlin. 30 June 2020. Archived (ht
tps://[Link]/web/20230601121344/[Link] from the
original on 1 June 2023. Retrieved 29 September 2020.
68. "KotlinConf 2019: Kotlin Runs Taxes in Norway by Jarle Hansen & Anders Mikkelsen" ([Link]
[Link]/watch?v=K8XxaAba65g&list=PLQ176FUIyIUY6SKGl3Cj9yeYibBuRr3Hl&index=2
2) . YouTube. 16 December 2019. Archived ([Link]
ps://[Link]/watch?v=K8XxaAba65g&list=PLQ176FUIyIUY6SKGl3Cj9yeYibBuRr3Hl&i
ndex=22) from the original on 10 April 2023. Retrieved 29 September 2020.
75. "KotlinConf 2017 - Frontend Kotlin from the Trenches by Gaetan Zoritchak" ([Link]
[Link]/watch?v=1Pu0TYJJ2Tw&list=PLQ176FUIyIUY6UK1cgVsbdPYA3X5WLam5&index=14) .
YouTube. 30 November 2017. Archived ([Link]
[Link]/watch?v=1Pu0TYJJ2Tw&list=PLQ176FUIyIUY6UK1cgVsbdPYA3X5WLam5&
index=14) from the original on 10 April 2023. Retrieved 29 September 2020.
78. "How we made Basecamp 3's Android app 100% Kotlin – Signal v. Noise" ([Link]
[Link]/all/20180801160548/[Link]
-app-100-kotlin-35e4e1c0ef12?gi=e9a4b3c9bf9f) . Signal v. Noise. 29 April 2017. Archived
from the original ([Link]
in-35e4e1c0ef12) on 1 August 2018. Retrieved 1 May 2017.
81. Chaidarun, Art (6 April 2020). "Migrating Duolingo's Android app to 100% Kotlin" ([Link]
[Link]/migrating-duolingos-android-app-to-100-kotlin/) . Duolingo Blog.
82. "Porting Million Lines of Code from Java to Kotlin at Meta" ([Link]
11/meta-port-java-kotlin/) .
83. "Rob Spieldenner on twitter" ([Link]
6) . Archived ([Link]
er/status/708355228832178176) from the original on 25 December 2022. Retrieved 24 July
2019.
External links