Fingerprint Controls Application icon

Fingerprint Controls 2018.08.13

77.8 KB / 10+ Downloads / Rating 2.8 - 14 reviews


See previous versions

Fingerprint Controls, developed and published by 4A, has released its latest version, 2018.08.13, on 2022-12-08. This app falls under the Tools category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 2.8, based on 14 reviews.

Fingerprint Controls APK available on this page is compatible with all Android devices that meet the required specifications (Android 8.0+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: by4a.fingerin

Updated: 2 years ago

Developer Name: 4A

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Fingerprint Controls on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

2.8
Total 14 reviews

Reviews

5 β˜…, on 2024-06-24
Good

1 β˜…, on 2023-02-09
Fake app fake

1 β˜…, on 2023-01-12
This app is very uselessπŸ˜‘πŸ˜΅πŸ˜‘πŸ˜‘πŸ“΅

1 β˜…, on 2022-11-19
This app is fake nowonder it's 68kb file size...it has nothing in itπŸ€’πŸ˜ πŸ˜‘πŸ‘ŽπŸΏπŸ‘ŽπŸΎ

5 β˜…, on 2022-08-08
fingerprints se scrolling ho aisa koi application hai guru to batana

5 β˜…, on 2022-04-30
Excellent

Previous Versions

Fingerprint Controls 2018.08.13
2022-12-08 / 77.8 KB / Android 8.0+

About this app

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.

New features

v2018.08.13:
* Updated for Android Pie

App Permissions

Allows an app to use fingerprint hardware.