JetBrains / kotlinconf-app

KotlinConf Schedule Application
Apache License 2.0
2.94k stars 305 forks source link

JetBrains incubator project

KotlinConf App

This is the official KotlinConf App! We hope you enjoy(ed) the conference and sessions. This repository contains the source code of the application.

All pieces of the application are implemented in Kotlin. Backend, frontend and mobile apps are Kotlin applications. Yes, Kotlin is powering all parts of the story. Did I already say that? Okay, let's get to the details:

Server

KotlinConf App is connecting to the server running in the cloud to get information about sessions, speakers, favorites and votes. It is developed using Ktor, an asynchronous Kotlin web framework.

The server polls Sessionize service, which is used for planning the conference. Once in a while, it connects to APIs to get the latest information about sessions, speakers, and timeline. It then augments and republishes this information for clients to consume. It also provides a couple of extra APIs to save your favorites and accumulate votes.

iOS, Android, Browser and Desktop Applications

All applications are developed within a single codebase using Kotlin Multiplatform technology. The UI is implemented using Compose Multiplatform UI framework.

How to build and run

Prerequisites

Running the Android app

  1. Open the project in Android Studio or JetBrains Fleet and wait until the project finishes loading.
  2. In Android Studio, select the androidApp run configuration from the drop-down list within the toolbar.
  3. Click on the run icon to start the simulator.

Running the iOS

  1. Open the project in Android Studio or JetBrains Fleet and wait until the project finishes loading.
  2. In Android Studio, select the KotlinConf run configuration from the drop-down list within the toolbar.
  3. Click on the run icon to start the simulator.

Running the desktop app

Running the browser app