From 56dbded6db4a730360d600a01dfa41d5cabddf01 Mon Sep 17 00:00:00 2001 From: Marcos Rodriguez Date: Fri, 27 Sep 2019 20:13:49 -0400 Subject: [PATCH] REL: Version bump OPS: Version bump --- android/app/.classpath | 6 +++++ android/app/.project | 23 +++++++++++++++++++ .../org.eclipse.buildship.core.prefs | 2 ++ android/app/build.gradle | 2 +- class/biometrics.js | 5 ++-- ios/BlueWallet/Info.plist | 2 +- ios/BlueWalletWatch Extension/Info.plist | 2 +- ios/BlueWalletWatch/Info.plist | 2 +- package-lock.json | 2 +- package.json | 2 +- 10 files changed, 40 insertions(+), 8 deletions(-) create mode 100644 android/app/.classpath create mode 100644 android/app/.project create mode 100644 android/app/.settings/org.eclipse.buildship.core.prefs diff --git a/android/app/.classpath b/android/app/.classpath new file mode 100644 index 000000000..eb19361b5 --- /dev/null +++ b/android/app/.classpath @@ -0,0 +1,6 @@ + + + + + + diff --git a/android/app/.project b/android/app/.project new file mode 100644 index 000000000..ac485d7c3 --- /dev/null +++ b/android/app/.project @@ -0,0 +1,23 @@ + + + app + Project app created by Buildship. + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.buildship.core.gradleprojectbuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.buildship.core.gradleprojectnature + + diff --git a/android/app/.settings/org.eclipse.buildship.core.prefs b/android/app/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 000000000..b1886adb4 --- /dev/null +++ b/android/app/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,2 @@ +connection.project.dir=.. +eclipse.preferences.version=1 diff --git a/android/app/build.gradle b/android/app/build.gradle index 838e7a1a8..b2dbb729a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -118,7 +118,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 - versionName "4.5.1" + versionName "4.5.3" multiDexEnabled true missingDimensionStrategy 'react-native-camera', 'general' } diff --git a/class/biometrics.js b/class/biometrics.js index ac6fe7386..46da15c4a 100644 --- a/class/biometrics.js +++ b/class/biometrics.js @@ -5,8 +5,9 @@ export default class Biometric { static STORAGEKEY = 'Biometrics'; static async isDeviceBiometricCapable() { - if ((await Biometrics.isSensorAvailable()) !== null) { - return true; + const isDeviceBiometricCapable = await Biometric.biometricType(); + if (typeof isDeviceBiometricCapable === 'string') { + return isDeviceBiometricCapable; } Biometric.setBiometricUseEnabled(false); return false; diff --git a/ios/BlueWallet/Info.plist b/ios/BlueWallet/Info.plist index 7cf7248b5..db2542dde 100644 --- a/ios/BlueWallet/Info.plist +++ b/ios/BlueWallet/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 4.5.1 + 4.5.3 CFBundleSignature ???? CFBundleURLTypes diff --git a/ios/BlueWalletWatch Extension/Info.plist b/ios/BlueWalletWatch Extension/Info.plist index bc9449c26..00aa5dae2 100644 --- a/ios/BlueWalletWatch Extension/Info.plist +++ b/ios/BlueWalletWatch Extension/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 4.5.1 + 4.5.3 CFBundleVersion 239 CLKComplicationPrincipalClass diff --git a/ios/BlueWalletWatch/Info.plist b/ios/BlueWalletWatch/Info.plist index 3789d518f..1afb974fd 100644 --- a/ios/BlueWalletWatch/Info.plist +++ b/ios/BlueWalletWatch/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 4.5.1 + 4.5.3 CFBundleVersion 239 UISupportedInterfaceOrientations diff --git a/package-lock.json b/package-lock.json index 12ea12023..cbf2285ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "BlueWallet", - "version": "4.5.1", + "version": "4.5.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 42eaabdce..5317fe034 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "BlueWallet", - "version": "4.5.1", + "version": "4.5.3", "devDependencies": { "@babel/core": "^7.5.0", "@babel/runtime": "^7.5.1",