Skip to content

Commit

Permalink
version bump. deprecate KeyStoreStorageService
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Jun 9, 2017
1 parent aff1cc1 commit 3e0d34d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Android/MainApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MainApplication : Application, Application.IActivityLifecycleCallba
public MainApplication(IntPtr handle, JniHandleOwnership transer)
: base(handle, transer)
{
AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;
// AndroidEnvironment.UnhandledExceptionRaiser += AndroidEnvironment_UnhandledExceptionRaiser;

if(!Resolver.IsSet)
{
Expand Down Expand Up @@ -215,7 +215,7 @@ public static void SetIoc(Application application)
}
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.
secureStorage = new KeyStoreStorageService(new char[] { });
}
Expand Down
2 changes: 1 addition & 1 deletion src/Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?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-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
Expand Down
1 change: 1 addition & 0 deletions src/Android/Services/KeyStoreStorageService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

namespace Bit.Android.Services
{
[System.Obsolete]
public class KeyStoreStorageService : ISecureStorageService
{
private const string StorageFile = "Bit.Android.KeyStoreStorageService";
Expand Down

0 comments on commit 3e0d34d

Please sign in to comment.