Site icon Android Tutorial Online

A clone of Trello app built using Compose Multiplatform for Android

šŸ“‹ JetTaskBoardKMP ā€“ Multiplatform Trello Clone

A clone of Trello app built using Compose Multiplatform for Android, iOS and Desktop.

This app was previously written in Jetpack Compose for Android inĀ JetTaskBoard. It is now re-written using multiplatform.

Ā Ā Ā Ā Ā 

Application demo

JetTaskBoardKMP.mp4

https://user-images.githubusercontent.com/19844292/236077021-fa5c8b68-a9e2-4c82-942c-dc3500b5b7b7.mp4

āš’ļø Architecture

JetTaskBoardKMP follows the principles of Clean Architecture.

šŸ‘Øā€šŸ’» Tech stack

ToolsLink
šŸ¤– LanguageKotlin
šŸ’š FrameworkCompose Multiplatform
šŸ› LifecycleEssenty
šŸ’‰ State ManagementDecompose
šŸŒ NetworkingKTor
šŸŒŠ Multi-threadingKotlin Coroutines
šŸŖŸ PersistenceMultiplatform Settings

Special thanks toĀ xxfast/KRouterĀ library.

šŸ–„ļø Screenshots

HomeBoard

How to run the project? āœ…

To run this project, you need the following:

Check your environment

Before you start, use theĀ KDoctorĀ tool to ensure that your development environment is configured correctly:

  1. Install KDoctor withĀ Homebrew:Ā brew install kdoctor
  2. Run KDoctor in your terminal:Ā kdoctorIf everything is set up correctly, youā€™ll see valid output:Environment diagnose (to see all details, use -v option): [āœ“] Operation System [āœ“] Java [āœ“] Android Studio [āœ“] Xcode [āœ“] Cocoapods Conclusion: āœ“ Your system is ready for Kotlin Multiplatform Mobile development!

Otherwise, KDoctor will highlight which parts of your setup still need to be configured and will suggest a way to fix them.

Understanding the project structure

Open the project in Android Studio and switch the view fromĀ AndroidĀ toĀ ProjectĀ to see all the files and targets belonging to the project:

Your Compose Multiplatform project includes 3 modules:

shared

This is a Kotlin module that contains the logic common for both Android and iOS applications, that is, the code you share between platforms.

ThisĀ sharedĀ module is also where youā€™ll write your Compose Multiplatform code. InĀ shared/src/commonMain/kotlin/App.kt, you can find the shared rootĀ @ComposableĀ function for your app.

It uses Gradle as the build system. You can add dependencies and change settings inĀ shared/build.gradle.kts. TheĀ sharedĀ module builds into an Android library and an iOS framework.

androidApp

This is a Kotlin module that builds into an Android application. It uses Gradle as the build system. TheĀ androidAppĀ module depends on and uses theĀ sharedĀ module as a regular Android library.

iosApp

This is an Xcode project that builds into an iOS application. It depends on and uses theĀ sharedĀ module as a CocoaPods dependency.

Run your application

On Android

To run your application on an Android emulator:

  1. Ensure you have an Android virtual device available. Otherwise,Ā create one.
  2. In the list of run configurations, selectĀ androidApp.
  3. Choose your virtual device and clickĀ Run:

Alternatively, use Gradle

On iOS

Running on a simulator

To run your application on an iOS simulator in Android Studio, modify theĀ iosAppĀ run configuration:

  1. In the list of run configurations, selectĀ Edit Configurations:
  2. Navigate toĀ iOS ApplicationĀ |Ā iosApp.
  3. In theĀ Execution targetĀ list, select your target device. ClickĀ OK.
  4. TheĀ iosAppĀ run configuration is now available. ClickĀ RunĀ next to your virtual device.

Running on a real device

You can run your Compose Multiplatform application on a real iOS device for free. To do so, youā€™ll need the following:

NoteĀ Before you continue, we suggest creating a simple ā€œHello, world!ā€ project in Xcode to ensure you can successfully run apps on your device. You can follow the instructions below or watch thisĀ Stanford CS193P lecture recording.

How to create and run a simple project in Xcode

On Desktop

To run the application on desktop:

  1. Execute the command from terminal:Ā ./gradlew :shared:run

Find this project useful ? ā¤ļø

License

MIT License

Copyright (c) 2022 Pushpal Roy

Permission is hereby granted, free of charge, to any person obtaining a 
copy of this software and associated documentation files (the "Software"), 
to deal in the Software without restriction, including without limitation 
the rights to use, copy, modify, merge, publish, distribute, sublicense, 
and/or sell copies of the Software, and to permit persons to whom the 
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included 
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

GitHub

View Github

Exit mobile version