Expected contents: classes.jar , AndroidManifest.xml , R.txt , proguard.txt , jni/ (if native). 4.1 Add Permissions AndroidManifest.xml :
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> <uses-feature android:name="android.hardware.fingerprint" android:required="false" /> // Typical for v1.3.0 proprietary SDK val fingerprintModule = FingerprintUnlockModule.getInstance(context) fingerprintModule.initialize(FingerprintConfig.Builder() .setSensorType(FingerprintSensorType.OPTICAL) .setSecurityLevel(SecurityLevel.GRADE_3) .build() ) fingerprintModule.setCallback(object : FingerprintCallback override fun onAuthenticated(result: AuthenticationResult) // Unlock successful fingerprint unlock module version 1.3.0 download
dependencies implementation fileTree(dir: 'libs', include: ['*.aar']) Expected contents: classes