mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
version bump. deprecate KeyStoreStorageService
This commit is contained in:
@@ -38,7 +38,7 @@ namespace Bit.Android
|
|||||||
public MainApplication(IntPtr handle, JniHandleOwnership transer)
|
public MainApplication(IntPtr handle, JniHandleOwnership transer)
|
||||||
: base(handle, transer)
|
: base(handle, transer)
|
||||||
{
|
{
|
||||||
AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
|
// AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
|
||||||
|
|
||||||
if(!Resolver.IsSet)
|
if(!Resolver.IsSet)
|
||||||
{
|
{
|
||||||
@@ -215,7 +215,7 @@ namespace Bit.Android
|
|||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
// Some isolated devices are having a hard time generating RSA keys for key store.
|
// Some isolated devices are having a hard time generating RSA keys for the key store.
|
||||||
// Continue using the "old" keystore implementation for now.
|
// Continue using the "old" keystore implementation for now.
|
||||||
secureStorage = new KeyStoreStorageService(new char[] { });
|
secureStorage = new KeyStoreStorageService(new char[] { });
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.x8bit.bitwarden" android:versionName="1.6.4" android:installLocation="auto" android:versionCode="502">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.x8bit.bitwarden" android:versionName="1.6.5" android:installLocation="auto" android:versionCode="502">
|
||||||
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23" />
|
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23" />
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ using Bit.App.Abstractions;
|
|||||||
|
|
||||||
namespace Bit.Android.Services
|
namespace Bit.Android.Services
|
||||||
{
|
{
|
||||||
|
[System.Obsolete]
|
||||||
public class KeyStoreStorageService : ISecureStorageService
|
public class KeyStoreStorageService : ISecureStorageService
|
||||||
{
|
{
|
||||||
private const string StorageFile = "Bit.Android.KeyStoreStorageService";
|
private const string StorageFile = "Bit.Android.KeyStoreStorageService";
|
||||||
|
|||||||
Reference in New Issue
Block a user