Description
π Add a passcode lock feature to your android applications hassle-free.
LoKi alternatives and similar packages
Based on the "Kotlin" category.
Alternatively, view LoKi alternatives based on common mentions on social networks and blogs.
-
CalendarView
A highly customizable calendar view and compose library for Android and Kotlin Multiplatform. -
Balloon
:balloon: Modernized and sophisticated tooltips, fully customizable with an arrow and animations for Android. -
kotlin-android-template
Android + Kotlin + Github Actions + ktlint + Detekt + Gradle Kotlin DSL + buildSrc = β€οΈ -
NotyKT ποΈ
π NotyKT is a complete πKotlin-stack (Backend + Android) π± application built to demonstrate the use of Modern development tools with best practices implementationπ¦Έ. -
Material Chip View
Material Chip view. Can be used as tags for categories, contacts or creating text clouds -
DrawableToolbox
π οΈ The missing drawable toolbox for Android. Create drawables programmatically and get rid of the boring and always repeated drawable.xml files. -
Navigation Toolbar for Android
:octocat: Navigation toolbar is a slide-modeled UI navigation controller made by @Ramotion -
Capturable
πJetpack Compose utility library for capturing Composable content and transforming it into Bitmap ImageπΌοΈ -
Pdf Viewer For Android
A Lightweight PDF Viewer Android library which only occupies around 80kb while most of the Pdf viewer occupies up to 16MB space. -
Carousel Recyclerview
Carousel Recyclerview let's you create carousel layout with the power of recyclerview by creating custom layout manager. -
SSComposeCookBook
A Collection of major Jetpack compose UI components which are commonly used.πππ -
Pluto Debug Framework
Android Pluto is a on-device debugging framework for Android applications, which helps intercept Network calls, capture Crashes & ANRs, manipulate application data on-the-go, and much more. -
CrunchyCalendar β awesome calendar widget for android apps
A beautiful material calendar with endless scroll, range selection and a lot more! -
SSCustomBottomNavigation
Animated TabBar with native control and Jetpack Navigation support..β¨ππ -
Permission Flow for Android
Know about real-time state of a Android app Permissions with Kotlin Flow APIs. -
Only
:bouquet: An easy way to persist and run code block only as many times as necessary on Android. -
Nextflix-Composable
Includes jetpack compose, navigation, paging, hilt, retrofit, coil, coroutines, flow.. -
EasyPermissions-ktx
π Kotlin version of the popular google/easypermissions wrapper library to simplify basic system permissions logic on Android M or higher. -
Compose Compiler Reports to HTML Generator
A utility (Gradle Plugin + CLI) to convert Jetpack Compose compiler metrics and reports to beautified HTML page. -
MidJourney Images Compose Multiplatform Mobile Application
This application is developed to display the images created by MidJourney. The application is developed with Compose Multiplatform and works on many platforms including Android and iOS platforms. -
Events Calendar
Events Calendar is a user-friendly library that helps you achieve a cool Calendar UI with events mapping. You can customise every pixel of the calendar as per your wish and still achieve in implementing all the functionalities of the native android calendar in addition with adding dots to the calendar which represents the presence of an event on the respective dates. It can be done easily, you are just a few steps away from implementing your own badass looking Calendar for your very own project! -
FlowMVI
A Kotlin Multiplatform MVI library based on coroutines with a rich DSL and a powerful plugin system. -
SSCustomEditTextOutLineBorder
Same as the Outlined text fields presented on the Material Design page but with some dynamic changes. π π -
TimelineView
A customizable and easy-to-use Timeline View library for Android. Works as a RecyclerView decorator (ItemDecoration)
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of LoKi or a related project?
README
LoKi π Add a passcode lock feature to your android applications hassle-free.
Download
Go to the Releases to download the demo APK.
Screenshots
Including in your project
Gradle
Add below codes to your root build.gradle
file (not your module build.gradle file).
allprojects {
repositories {
mavenCentral()
}
}
And add a dependency code to your module's build.gradle
file.
dependencies {
implementation "io.github.joelromanpr:loki:1.0.0"
}
Usage
LoKi
Here is a basic example of implementing a LoKi
workflow.
Any activity that you wish to protect with a passcode must inherit a LokiActivity
class MainActivity : LokiActivity() {}
To prompt the user to setup their passcode for the first time call the launch
function within PasscodeSetupActivity
PasscodeSetupActivity.launch(this@MainActivity)
It is common to show the "enable passcode" state with a view such as a Switch
from your app Settings screen. Here is one way to approach it:
class MainActivity : LokiActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
findViewById<SwitchCompat>(R.id.enable_pin).apply {
this.isChecked = Loki.isEnabled(this@MainActivity)
this.setOnCheckedChangeListener { _, isChecked ->
when (isChecked) {
true -> PasscodeSetupActivity.launch(this@MainActivity)
else -> Loki.disable(this@MainActivity)
}
}
}
}
}
Loki Customization
You can customize certain aspects of LoKi by calling overwriteConfig
on the Loki
singleton object. You want to most likely do this from your Application class since it serves as the first entrypoint to it.
class DemoApp : Application() {
override fun onCreate() {
super.onCreate()
Loki.overwriteConfig(
LokiConfig(
appName = "LoKi Demo",
maxAttempts = 1,
passcodePinActiveCircleColor = android.R.color.holo_blue_dark
)
)
}
}
Internals
- Loki will place your app in a "disable" state if the user fails the passcode unlock workflow. Currently users must wait 1 minute before trying again
- LoKi's
PasscodeManager
is in charge of encoding (using a salt) the user's passcode - Behavior might change on newer versions. Make sure to reference docs.
Additional π
LoKi is a fast-track way of adding a passcode lock to your applications, you can also use it in production apps, however it was designed for quick experimentation and allow teams to satisfy a passcode lock need as quick as possible. Feel free to contribute and submit ideas on how it can be improved!
Find this library useful? :heart:
Support it by joining stargazers for this repository. :star: And follow me for my next creations! π€©
License
Copyright 2021 joelromanpr (Joel R. Sosa)
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.
*Note that all licence references and agreements mentioned in the LoKi README section above
are relevant to that project's source code only.