mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 18:38:27 +03:00
version bump. deprecate KeyStoreStorageService
This commit is contained in:
parent
aff1cc1cc3
commit
3e0d34d148
3 changed files with 4 additions and 3 deletions
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue