ApkDownload

Fingerprint Controls APK

Latest Version 2018.08.13 for Windows
Updated 2022-12-08

App information

Version 2018.08.13 (#2)

Updated 2022-12-08

APK Size 77.8 KB

Requires Android Android 8.0+ (Oreo)

Offered by 4A

Category Free Tools App

App id by4a.fingerin

Developer's notes Allows compatible games to be controlled using swipes on the fingerprint reader

Screenshot

Click on the image to see full size

Latest updates

What's new in Fingerprint Controls 2018.08.13

v2018.08.13:
* Updated for Android Pie

Editor's review

Download the latest Fingerprint Controls application, version 2018.08.13, compatible with Windows 10/11 (using emulators such as Bluestacks), Android devices. This free Tools app is developed by 4A and is easy to download and install.

Previous versions, including 2018.08.13, are also available. If you need help or have any problems, please let us know.

Description

USERS: You will need to enable the bundled accessibility service. Contrary to the language of the standard warning message that appears, the accessibility service does not "observe your actions" or "retrieve window content". You can confirm that this app does not have permission to access the Internet, so no information is collected.

DEVELOPERS: Your game should contain one (and only one) view that is focusable, focusableInTouchMode, and focused, and has an attached accessibility delegate in order to receive the fingerprint input. That accessibility delegate should use code like this:

myView.setAccessibilityDelegate(new AccessibilityDelegate()
{
public boolean performAccessibilityAction(View _v, int _action, Bundle _args)
{
if((_action == ACTION_FOCUS) && (_args != null))
{
String method = _args.getString("by4a.method");
if("FingerprintGestureCallback.onGestureDetected".equals(method))
{
int gesture = _args.getInt("by4a.arg");
switch(gesture)
{
case FINGERPRINT_GESTURE_SWIPE_LEFT:
case FINGERPRINT_GESTURE_SWIPE_DOWN:
case FINGERPRINT_GESTURE_SWIPE_RIGHT:
case FINGERPRINT_GESTURE_SWIPE_UP:
}
}
}
return super.performAccessibilityAction(_v, _action, _args);
}
});

In addition, if your game can handle orientation changes or multiwindow mode, you will probably need some code like this. We're 99% certain this is a bug in Android.

@Override public void onWindowFocusChanged(boolean _focused)
{
myView.clearFocus();
myView.requestFocus();
}

If the user enters multiwindow mode, you will need BOTH the code above, AND for the user to tap inside your pane in order to continue receiving fingerprint gesture input. This is easily accomplished by simply pausing the game when multiwindow mode is activated, requiring the user to tap on the unpause button to continue.

The usefulness of fingerprint gesture input may vary based on the placement and reliability of the fingerprint sensor and the nature of the game being played. You should provide an option to ignore fingerprint gesture input to avoid accidental and undesired input.

App permissions

Fingerprint Controls 2018.08.13 APK requires following permissions:

Allows an app to use fingerprint hardware.

Ratings and Reviews

Rating: 2.8/5 based on Less than 100 reviews

(*) is required

Previous versions

Fingerprint Controls 2018.08.13 APK for Windows (#2, 77.8 KB)