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.
-
android-youtube-player
YouTube Player library for Android and Chromecast, stable and customizable. -
CalendarView
A highly customizable calendar library for Android, powered by RecyclerView. -
Balloon
:balloon: Modernized and sophisticated tooltips, fully customizable with an arrow and animations for Android. -
Kotterknife
Android view injection writen in Kotlin based on ButterKnife -
kotlin-android-template
Android + Kotlin + Github Actions + ktlint + Detekt + Gradle Kotlin DSL + buildSrc = β€οΈ -
Material Chip View
Material Chip view. Can be used as tags for categories, contacts or creating text clouds -
NotyKT ποΈ
π NotyKT is a complete πKotlin-stack (Backend + Android) π± application built to demonstrate the use of Modern development tools with best practices implementationπ¦Έ. -
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 -
MaterialTimelineView
With MaterialTimelineView you can easily create a material looking timeline. -
MaterialDrawerKt
A Kotlin DSL wrapper around the mikepenz/MaterialDrawer library. -
Android Kotlin Samples
Some basic samples of Kotlin for Android -
sliding-panel
Android sliding panel that is part of the view hierarchy, not above it. -
CrunchyCalendar β awesome calendar widget for android apps
A beautiful material calendar with endless scroll, range selection and a lot more! -
Carousel Recyclerview
Carousel Recyclerview let's you create carousel layout with the power of recyclerview by creating custom layout manager. -
Pluto Debug Framework
Pluto is a on-device debugging framework for Android applications, which helps in inspection of HTTP requests/responses, capture Crashes and ANRs and manipulating application data on-the-go. -
Transition X
{ } Declarative Kotlin DSL for choreographing Android transitions -
Only
:bouquet: An easy way to persist and run code block only as many times as necessary on Android. -
Swagger Gradle Codegen
π« A Gradle Plugin to generate your networking code from Swagger -
Pdf Viewer For Android
A Lightweight PDF Viewer Android library which only occupies around 125kb while most of the Pdf viewer occupies up to 16MB space. -
Capturable
πJetpack Compose utility library for capturing Composable content and transforming it into Bitmap ImageπΌοΈ -
SSCustomBottomNavigation
Animated TabBar with native control and Jetpack Navigation support..β¨ππ -
EasyPermissions-ktx
π Kotlin version of the popular google/easypermissions wrapper library to simplify basic system permissions logic on Android M or higher. -
Awesome Jetpack compose
A collaborative list of awesome jetpack compose resources. -
DeviceInfo-Sample
[Android Library] Get easy access to device information super fast, real quick -
SSComposeCookBook
A Collection of major Jetpack compose UI components which are commonly used.πππ -
Aimybox voice assistant
Embeddable custom voice assistant for Android applications -
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! -
ZoomHelper
ZoomHelper will make any view to be zoomable just like Instagram pinch-to-zoom -
Maildroid
Maildroid is a small robust android library for sending emails using SMTP server -
Permission Flow for Android
Know about real-time state of a Android app Permissions with Kotlin Flow APIs. -
SSCustomEditTextOutLineBorder
Same as the Outlined text fields presented on the Material Design page but with some dynamic changes. π π -
Vanilla Place Picker
Simple(vanilla) yet 'Do it all' place picker for your place picking needs in Android -
Intro Showcase View
Highlight different features of the app using Jetpack Compose -
Nextflix-Composable
Includes jetpack compose, navigation, paging, hilt, retrofit, coil, coroutines, flow.. -
TimelineView
A customizable and easy-to-use Timeline View library for Android. Works as a RecyclerView decorator (ItemDecoration) -
Crowdin Android SDK
Crowdin Android SDK delivers all new translations from Crowdin project to the application immediately -
Turtle π’
Run shell commands from a Kotlin script or application with ease -
RecyclerView Presenter
RecyclerView Adapter Library with different models and different layouts as convenient as possible.
Appwrite - The Open Source Firebase alternative introduces iOS support
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([email protected])
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([email protected])
this.setOnCheckedChangeListener { _, isChecked ->
when (isChecked) {
true -> PasscodeSetupActivity.launch([email protected])
else -> Loki.disable([email protected])
}
}
}
}
}
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.