Skip to content

Commit b9cfb37

Browse files
author
Matthew Wheatley
committed
version 1.2.8
1 parent 749ec9b commit b9cfb37

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Version 1.2.8
2+
### What's New
3+
* Updates to README
4+
* Merge pull request #66 from videmort/master: Update Spanish literal
5+
* Merge pull request #65 from nataze/backup-PIN: PIN fallback when fingerprint isn't supported
6+
* **Bug fix** for issue #54
7+
* Allow state loss of dialog fragment
8+
* Changed manifest permission check
9+
* Now using cordova.hasPermission()
10+
* Removed dependency on android.support.v4 library
11+
* Removed build-extras.gradle
12+
113
# Version 1.2.7
214
### What's New
315
* Improved German translations - pull request #58

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-android-fingerprint-auth",
3-
"version": "1.2.7",
3+
"version": "1.2.8",
44
"description": "Cordova plugin to use Android fingerprint authentication API",
55
"cordova": {
66
"id": "cordova-plugin-android-fingerprint-auth",

plugin.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="cordova-plugin-android-fingerprint-auth"
5-
version="1.2.7">
5+
version="1.2.8">
66
<name>FingerprintAuth</name>
77
<description>Cordova plugin to use Android fingerprint authentication API</description>
88
<license>Apache 2.0</license>
@@ -23,10 +23,8 @@
2323
</config-file>
2424
<config-file target="AndroidManifest.xml" parent="/*">
2525
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
26-
<!--<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23" />-->
2726
</config-file>
2827

29-
<source-file src="build-extras.gradle" target-dir="." />
3028
<source-file src="src/android/FingerprintAuth.java" target-dir="src/com/cordova/plugin/android/fingerprintauth" />
3129
<source-file src="src/android/FingerprintAuthenticationDialogFragment.java" target-dir="src/com/cordova/plugin/android/fingerprintauth" />
3230
<source-file src="src/android/FingerprintUiHelper.java" target-dir="src/com/cordova/plugin/android/fingerprintauth" />

0 commit comments

Comments
 (0)