• Stars
    star
    1,277
  • Rank 35,488 (Top 0.8 %)
  • Language
  • License
    Apache License 2.0
  • Created over 5 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

[GUIDE] This tutorial assumes all you know is Java, but you want to learn Kotlin.

Guide to Kotlin

This tutorial assumes that all you know is Java, but you want to learn Kotlin.

Please note that the resources are in the wiki page.

Additional resources

A few things that are worth watching to know more about Kotlin.

More resources to read

More resources to watch

Style-guide and reference for common mistakes to avoid

https://www.reddit.com/r/androiddev/comments/77sl1c/devs_who_review_kotlin_regularly_what_are_things/dorsk3i/

Table of Content

Major Syntax Differences

Basic Kotlin Features

The Cool Stuff

The Tricky Stuff

Android-Specific Stuff

Stuff that is currently not covered, and should eventually be added in this tutorial

  • Coroutines, coroutines on Android, suspend fun

  • Channels: LinkedListChannel, BroadcastChannel

  • @DslMarker

  • multi-platform things: expect and actual

  • contracts

License

Copyright 2018-2020 Gabor Varadi

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

More Repositories

1

simple-stack

[ACTIVE] Simple Stack, a backstack library / navigation framework for simpler navigation and state management (for fragments, views, or whatevers).
Java
1,319
star
2

jetpack-navigation-ftue-sample

[DEMO] Sample code to display "First-Time User Experience" in a Single-Activity app using Jetpack-Navigation, NavGraphs, Dagger, SavedStateHandle, Hilt, and EventEmitter - based on the FTUE example code in simple-stack-tutorials, but originally described by Google.
Kotlin
236
star
3

fragmentviewbindingdelegate-kt

[ACTIVE] A delegate for making managing the ViewBinding variable in a Fragment simpler.
Kotlin
151
star
4

flowless

[DEPRECATED] Based on Flow 1.0-alpha. To keep your life simple, use zhuinden/simple-stack instead.
Java
141
star
5

espresso-helper

[STAGNANT?] Collection of Kotlin helpers for Espresso.
Kotlin
131
star
6

simple-stack-compose-integration

[ACTIVE/BETA] Compose integration for Simple-Stack.
Kotlin
98
star
7

realm-monarchy

[ACTIVE-ISH] A wrapper over Realm which exposes it as LiveData, managing Realm lifecycle internally.
Java
86
star
8

livedata-combinetuple-kt

[ACTIVE] Helper function to combine LiveData into tuples.
Kotlin
85
star
9

realm-book-example

This is an example rewrite of AndroidHive's messy tutorial, accompanying the following article on Realm.
Java
80
star
10

event-emitter

[ACTIVE] The event emitter allows you to register multiple observers, but enqueue events while there are no observers.
Java
76
star
11

live-event

[ACTIVE] Lifecycle-aware wrapper over EventEmitter, for modelling one-off events.
Kotlin
62
star
12

mvvm-aac-rxjava-retrofit-room

[DEMO] MVVM, AAC (ViewModel), RxJava2, Retrofit, Room
Kotlin
54
star
13

BottomNavChildFragmentExample

An example showing how to use bottom navigation with child fragments.
Kotlin
44
star
14

Jetpack-Navigation-Hilt-MultiModule-Example

A simple example showing multi-module navigation with safeargs and jetpack navigation.
Kotlin
42
star
15

ViewBindingExample

An example of using ViewBinding in Activity/Fragment.
Kotlin
37
star
16

Jetpack-Navigation-Multistack-Example

[DEMO] An example using Jetpack Navigation and bottom nav multi-stack using child fragments.
Kotlin
36
star
17

service-tree

[ABANDONED] A tree that stores services in its node for a given key, and allows traversing them.
Java
33
star
18

flow-combinetuple-kt

[ACTIVE] Helper function to combine Flow into tuples.
Kotlin
32
star
19

simple-stack-tutorials

[MOVED] Guide was merged into `simple-stack` repository.
Kotlin
30
star
20

xkcd-example

[SIMPLE DEMO] A super-simple no-architecture app with Retrofit, Realm, and Glide.
Java
29
star
21

state-bundle

[ACTIVE] A non-Android Parcelable replacement for Bundle.
Java
28
star
22

simple-stack-ftue-sample

[DEMO] Sample code to display "First-Time User Experience" in a Single-Activity app using Simple-Stack, based on the "Conditional Navigation" section by Google.
Kotlin
27
star
23

realm-helpers

[ABANDONED] A collection of helpers that are still all in an early stage, but some people could consider them helpful.
Java
23
star
24

MortarFlowSetup

OBSOLETE: USE `simple-stack` instead!
Java
22
star
25

sync-timer-app

[APP] Sync Timer allows multiple people to join, and see a shared countdown. It stops if someone stops it.
Java
20
star
26

DaggerViewModelExperiment

[DEPRECATED, EXPERIMENT] This is a PoC example for app->activity->fragment subscoping with Subcomponents + ViewModel by SavedStateHandle (using AutoFactory). You shouldn't use this setup, because it breaks scoping. Refer to https://github.com/Zhuinden/jetpack-navigation-ftue-sample for a proper setup.
Kotlin
19
star
27

jetpack-navigation-ftue-compose-sample

[DEMO] FTUE sample using Jetpack Navigation's Navigation-Compose, ViewModel, SavedStateHandle, Hilt
Kotlin
18
star
28

command-queue

[ACTIVE] A queue with a single receiver and if there is no receiver, the commands are enqueued.
Java
17
star
29

android-dev-challenge-compose-design

Kotlin
17
star
30

room-live-paged-list-provider-experiment

An experiment with using Room and LivePagedListProvider.
Java
16
star
31

navigator

[RELOCATED] The contents of this repository were merged into simple-stack 1.5.0.
Java
15
star
32

tuples-kt

[ACTIVE] Tuples from 4 to 16 arity in Kotlin.
Kotlin
15
star
33

realm-auto-migration

[ABANDONED] Automatic migration from the currently existing schema to the currently existing model classes.
Java
15
star
34

flow-ziptuple-kt

[ACTIVE] Helper functions to zip Flows into 3 to 11 arity tuples, and to array.
Kotlin
12
star
35

single-activity-instant-app-example

This is an experiment to set up a "single-activity" app in an instant-app setup.
Kotlin
10
star
36

compose-adopt-a-dog

Submission for #AndroidDevChallenge Week 1.
Kotlin
10
star
37

livedata-combineutil-java

[ACTIVE] Helper function to combine LiveDatas.
Java
9
star
38

singleton-realm-manager

[MOVED] Moved to Realm-Helpers. The RealmManager class allows opening/closing the Realm instance, but also obtaining it without incrementing the cache's reference count.
Java
9
star
39

rx-combinetuple-kt

[ACTIVE] Helper function to combine RxJava observables into tuples.
Kotlin
8
star
40

realm-databind-experiment

Making Realm work with Databinding.
Java
8
star
41

android-dev-challenge-compose-clock

Kotlin
7
star
42

rx-realm-recyclerview-experiment

Checking out RX with RecyclerView and Realm.
Java
6
star
43

MortarFlowInitialDemo

OBSOLETE: USE `Flowless` instead!
Java
6
star
44

compose-simple-stack-experiment

Initial experiment with Compose + Simple-Stack.
Kotlin
6
star
45

livedata-validateby-kt

[ACTIVE] Helper functions to combine multiple boolean streams into a single boolean.
Kotlin
6
star
46

flow-validateby-kt

[ACTIVE] Helper function for Flow, to combine multiple boolean values into a single boolean.
Kotlin
5
star
47

simple-stack-extensions

Extensions for the simple-stack library.
Kotlin
4
star
48

ExampleGithubClient

[DEPRECATED] This is an MVP example for Flowless, using Dagger2 subscoping and RxJava Single.
Java
4
star
49

simple-stack-ftue-compose-sample

[DEMO] Simple-stack FTUE sample using Compose integration (and Rx)
Kotlin
3
star
50

rx-validateby-kt

[ACTIVE] Helper to combine multiple boolean streams for simple validation.
Kotlin
3
star
51

navigation-example

Navigation example using simple-stack.
Java
3
star
52

simple-stack-multi-module-experiment

[EXPERIMENT] Experiment with simple-stack + Views in a multi-module setting using Dagger.
Kotlin
3
star
53

AndroidDiceGame

Just a very simple sample project based on a Verilog homework I had a while ago, for experimentations.
Kotlin
2
star
54

scope-manager

[OBSOLETE] This will never happen.
Java
2
star
55

AndroidReactor

AndroidReactor is a framework for a reactive and unidirectional Android application architecture.
Kotlin
2
star
56

FirstTestingApp

This is a repository in which I'm trying to get testing to work. Not much here yet.
Java
2
star
57

realm-samples

[TODO] Realm sample codes for tutorials (currently in production). Check back later!
Kotlin
1
star
58

ButtonShadowGravityProblem

This is so that Reddit can look at it and see how changing the gravity breaks the line at the bottom of the button. SPOILERS: The answer was `scrollX=594742`.
Kotlin
1
star
59

angular-first-app

First app with Angular4, following a tutorial and stuff.
TypeScript
1
star
60

vanilla-cat-example

An example without Dagger2, but with Retrofit and raw android SQLite. Not a good example, though. Too much hackery.
Java
1
star
61

validationk

[NONSENSE] ValidationK: A library that I'm not sure is needed by anyone (from the future: no), but it lets you chain predicates.
Kotlin
1
star
62

flow-sample

Flow-Sample by Square
Java
1
star
63

CasterIO-Simple-Stack

Sample code for Caster.io's Simple-Stack samples.
Kotlin
1
star