Hello everyone
Today I am presenting my Auth extension
Features
This extension can be used to check if a user has enabled passcode lock on his/her device
Use
If you want to integrate authentication using device lock in your app you can easily do it by using this intent as discovered by @ShanmugaNathan2023
But it has a great limitation well detected by @TIMAI2 that
The extension aims to resolve this issue by checking if the user has a passcode lock set up on his/her device
Then you can use the intent to ask for password lock. Issue Resolved
Blocks Function
This procedure is to be called to get the status of Passcode lock in your device
Events
This event is called when Passcode lock is setup on the device
This event is called when Passcode lock is not setup on the device
Note: Passcode lock refers to any type of lock- Pin/Pattern/Fingerprint/Face etc.
Tested on emulator running android 10.
Download the latest aix io.auth.aix (3.4 KB) 20/09/24
Past Releases
Version 1.0 : io.auth.aix (3.4 KB) 18/09/24
Support the project
If you liked the extension then do make a small funding starting from 0.5$ so I can continue to make such extensions for free.
Usage Policy- Important
I Sarthak Gupta authorize that you can use this extension in any of your projects and even publish them on the Play Store as long as you give me credit like this
Extension by Sarthak Gupta and a link to this post
If you don't want to give credit then contribute 4$ on buymeacoffee
This block returns true or false instantly then you can use your blocks... nice suggestion will surely update in version 2... hope the community can test and give feedback on this extension
Ps please comment your device name and if its working in your device
It tests if a lock code is in place. Works in companion on Android 12 and 14.
What I was suggesting is a success return event, so that if the code entered is correct, the user can then proceed into the app, because the user can back out of the authentication dialog.
Yes user can back out, but you can use below steps to overcome,
when user skip the authentication we will receive empty ActivityStarter event,
In such cases we can use IF_ELSE block and start the ActivityStarter again and again which will be loop until correct password is entered.
Yes thats what I thought activity starter can call an event but I don't think that this can be used to detect if password was entered or not
PS I am working to implement it in the extension
Changelog Version 1.1
Hello Everyone,
This update offers ease in implementing the blocks inside your project
As suggested by @TIMAI2 the update adds three blocks instead of just one
Function
This procedure is to be called to get the status of Passcode lock in your device
Events
This event is called when Passcode lock is setup on the device
This event is called when Passcode lock is not setup on the device
Note: Passcode lock refers to any type of lock- Pin/Pattern/Fingerprint/Face etc.
Spent a while creating this code snippet.
So what it does
When button is clicked it checks if the device has a passcode lock
If passcode is enabled
The app asks for the device credentials. Now the most important question, what happens if the user clicks the back button or the recent apps button. The activity fails and the activity is called again. kind of like a loop. So the user won't be able to login until the password is entered.
When the password is entered correctly the block in the after activity is executed and the label is changed to success. You can change it and execute any other block obviously
If passcode is disabled
If passcode is disabled then the notifier will show an alert that Lock Disabled
@TIMAI2 I didn't implement that in the extension as it was possible to do it via blocks instead
Please post your feedback on this
I am not finding this. If there is no lock screen set on the device, this also returns a "blank", for me, so it appears that an isKeyguardSecure() test (if not using the BiometricManager) is required.