A simple color picker library of material colors

Simple Color Picker A simple color picker library of material colors Gradle Add below lines to your root build.gradle file allprojects { repositories { maven { url ‘https://jitpack.io’ } } } And add the below dependency to your module build.gradle file. implementation ‘com.github.zaferertas:simplecolorpicker:1.1’ Usage // Kotlin SimpleColorPicker.Builder(this) .setTitle(“Select Color”) // Optional .setListener(object : ColorPickerListener { override fun onColorSelected(color: String) { // … Read more

An app to track your workout quality

FitQuest About- This app helps you track your workout. The ‘Start’ button will start tracking your workout for the day. When you click on ‘Stop’ button, a screen will appear where you can select the quality of your workout and the end time is recorded. All your workout data is saved in database so that … Read more

Android WebSocket Client With Kotlin

Android WebSocket Client With Kotlin. Web Socket Clinet Side For Android With Kotlin you can use this app with Ktor Server Side, Find Ktor Project Here: Ktor WebSocket Server Side App Preview Usage add this line into your build.gradle app. dependencies { implementation ‘org.java-websocket:Java-WebSocket:1.4.0’ } Add This Code In MainActivity import android.os.Bundle import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import … Read more

An Android application that allows users to read and navigate the Holy Quran on their mobile devices

QuranApp QuranApp is an Android application that allows users to read and navigate the Holy Quran on their mobile devices. The app features two main functions: Index and Goto. Features Index feature The Index feature allows users to quickly jump from one surah to another. The surahs are listed in the order they appear in … Read more

KSP Compiler plugin for protobuf generation from POJO

ProtobufGenerator KSP Compiler plugin for protobuf generation from POJO. To implement protobuf, we use Wire to serialize/deserialize, which takes .proto files and generate its data class and builders. To follow this approach for the existing data classes, we have to manually generate the proto files. Which is a very teadious job. This plugin aims to … Read more

An android aplication for ordering pizza only

PizzaWallahShop PizzaWallah is an android aplication for ordering pizza only.It is client side application only , if admin wants to make any changes in the price or in anything than he/she must change from its database.It is written using Kotlin Programming language. The main focus for making this application is effective UI i.e. jetpack compose … Read more

A customizable web server for mocking HTTP JSON API responses for REST webservices

A customizable web server for mocking HTTP JSON API responses for REST webservices. json-mockr is written in Kotlin using Springboot as the underlying server. Motivation The motivation behind this software is to provide an easy way to mock external APIs during development phase without much configuration but also flexible enough. Features Limitations ⌨️ Usage Check the Documentation Contributing To … Read more

Gym Assistant App using Room, MVVM, Coroutines

# Gym Assistant App Overview This app is designed to help gym assistants keep track of user subscriptions and other information. The app is build with Room (one-to-many relationship),Kotlin Coroutines, Navigation View, View Binding and Data Binding to provide a secure and efficient method for handling memberships including start dates, end dates and pricing.It also … Read more