RubyLichtenstein / Kotlin-Multiplatform-Firebase

Kotlin Multiplatform - Android/iOS/Web/Node.Js(FIrebase)
Apache License 2.0
129 stars 16 forks source link
kotlin-multiplatform

Kotlin Multiplatform Firebase.

Build Status Kotlin

Kotlin is everywhere!

This project demonstrates the benfits of kotlin multiplatform by implementating a multiplatform mobile application (Android/iOS) with firebase as a backend (Node.js) all in kotlin.

The application is using Firestore to store a list of posts and firebase functions to send notifications for new posts.

Modules.

modules_diagrams

Project Architecture

modules_diagrams

common-all

Clients/Server shared code.

common-client

Clients shared code.

Platform specific code.

Testing

Testing libraris

Common module testing. https://github.com/mockk/mockk

JVM

JS

Jest https://jestjs.io/

Native

//TODO

Build run and test.

Setup

  1. Clone this project.
  2. enable kotlin 1.3 (https://proandroiddev.com/setup-kotlin-eap-in-your-android-app-73f2c06308e5)

Running the Android app.

./gradlew android:app:installDebug

Running the iOS app.

//TODO

Running the Node.js App (deploy to Firebase)

  1. cd firebase/functions
  2. npm install
  3. ./gradlew common-all:firebaseDeploy

Testing the Node.js App.

Libraries used in this project

common