diff --git a/app/android/app/build.gradle b/app/android/app/build.gradle
index 5ccd0a476b..2b7c287aed 100644
--- a/app/android/app/build.gradle
+++ b/app/android/app/build.gradle
@@ -134,8 +134,8 @@ android {
applicationId "com.proofofpassportapp"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 121
- versionName "2.9.11"
+ versionCode 136
+ versionName "2.9.12"
manifestPlaceholders = [appAuthRedirectScheme: 'com.proofofpassportapp']
externalNativeBuild {
cmake {
diff --git a/app/android/app/src/main/AndroidManifest.xml b/app/android/app/src/main/AndroidManifest.xml
index 313a1c1b24..ff997caca5 100644
--- a/app/android/app/src/main/AndroidManifest.xml
+++ b/app/android/app/src/main/AndroidManifest.xml
@@ -25,7 +25,8 @@
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher"
android:extractNativeLibs="false"
- tools:replace="android:icon, android:roundIcon, android:name, android:extractNativeLibs"
+ android:allowBackup="false"
+ tools:replace="android:icon, android:roundIcon, android:name, android:extractNativeLibs, android:allowBackup"
android:theme="@style/AppTheme"
android:supportsRtl="true"
android:usesCleartextTraffic="false"
diff --git a/app/ios/OpenPassport/Info.plist b/app/ios/OpenPassport/Info.plist
index cb975feeaf..9102c5481d 100644
--- a/app/ios/OpenPassport/Info.plist
+++ b/app/ios/OpenPassport/Info.plist
@@ -21,7 +21,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 2.9.11
+ 2.9.12
CFBundleSignature
????
CFBundleURLTypes
diff --git a/app/ios/Self.xcodeproj/project.pbxproj b/app/ios/Self.xcodeproj/project.pbxproj
index 1917c7aac3..36bdb9b7ae 100644
--- a/app/ios/Self.xcodeproj/project.pbxproj
+++ b/app/ios/Self.xcodeproj/project.pbxproj
@@ -546,7 +546,7 @@
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/MoproKit/Libs",
);
- MARKETING_VERSION = 2.9.11;
+ MARKETING_VERSION = 2.9.12;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -686,7 +686,7 @@
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/MoproKit/Libs",
);
- MARKETING_VERSION = 2.9.11;
+ MARKETING_VERSION = 2.9.12;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
diff --git a/app/package.json b/app/package.json
index e1f3bdc3e3..cbc0b54b10 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,6 +1,6 @@
{
"name": "@selfxyz/mobile-app",
- "version": "2.9.11",
+ "version": "2.9.12",
"private": true,
"type": "module",
"scripts": {
diff --git a/app/src/integrations/keychain/index.ts b/app/src/integrations/keychain/index.ts
index a261ec4246..4779bb37fe 100644
--- a/app/src/integrations/keychain/index.ts
+++ b/app/src/integrations/keychain/index.ts
@@ -7,10 +7,12 @@ import type {
ACCESSIBLE,
GetOptions,
SECURITY_LEVEL,
- SetOptions,
} from 'react-native-keychain';
import Keychain from 'react-native-keychain';
+import { useSettingStore } from '@/stores/settingStore';
+import type { ExtendedSetOptions } from '@/types/react-native-keychain';
+
/**
* Security configuration for keychain operations
*/
@@ -23,6 +25,8 @@ export interface AdaptiveSecurityConfig {
export interface GetSecureOptions {
requireAuth?: boolean;
promptMessage?: string;
+ /** Whether to use StrongBox-backed key generation on Android. Default: true */
+ useStrongBox?: boolean;
}
/**
@@ -61,7 +65,8 @@ export async function checkPasscodeAvailable(): Promise {
await Keychain.setGenericPassword('test', 'test', {
service: testService,
accessible: Keychain.ACCESSIBLE.WHEN_PASSCODE_SET_THIS_DEVICE_ONLY,
- });
+ useStrongBox: false,
+ } as ExtendedSetOptions);
// Clean up test entry
await Keychain.resetGenericPassword({ service: testService });
return true;
@@ -78,7 +83,7 @@ export async function createKeychainOptions(
options: GetSecureOptions,
capabilities?: SecurityCapabilities,
): Promise<{
- setOptions: SetOptions;
+ setOptions: ExtendedSetOptions;
getOptions: GetOptions;
}> {
const config = await getAdaptiveSecurityConfig(
@@ -86,10 +91,14 @@ export async function createKeychainOptions(
capabilities,
);
- const setOptions: SetOptions = {
+ const useStrongBox =
+ options.useStrongBox ?? useSettingStore.getState().useStrongBox;
+
+ const setOptions: ExtendedSetOptions = {
accessible: config.accessible,
...(config.securityLevel && { securityLevel: config.securityLevel }),
...(config.accessControl && { accessControl: config.accessControl }),
+ useStrongBox,
};
const getOptions: GetOptions = {
diff --git a/app/src/screens/dev/DevSettingsScreen.tsx b/app/src/screens/dev/DevSettingsScreen.tsx
index 8eba89e13b..e4bc857f43 100644
--- a/app/src/screens/dev/DevSettingsScreen.tsx
+++ b/app/src/screens/dev/DevSettingsScreen.tsx
@@ -11,7 +11,7 @@ import React, {
useState,
} from 'react';
import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
-import { Alert, ScrollView, TouchableOpacity } from 'react-native';
+import { Alert, Platform, ScrollView, TouchableOpacity } from 'react-native';
import { Button, Sheet, Text, XStack, YStack } from 'tamagui';
import { useNavigation } from '@react-navigation/native';
import type { NativeStackScreenProps } from '@react-navigation/native-stack';
@@ -399,6 +399,8 @@ const DevSettingsScreen: React.FC = ({}) => {
const subscribedTopics = useSettingStore(state => state.subscribedTopics);
const loggingSeverity = useSettingStore(state => state.loggingSeverity);
const setLoggingSeverity = useSettingStore(state => state.setLoggingSeverity);
+ const useStrongBox = useSettingStore(state => state.useStrongBox);
+ const setUseStrongBox = useSettingStore(state => state.setUseStrongBox);
const [hasNotificationPermission, setHasNotificationPermission] =
useState(false);
const paddingBottom = useSafeBottomPadding(20);
@@ -754,6 +756,34 @@ const DevSettingsScreen: React.FC = ({}) => {
/>
+ {Platform.OS === 'android' && (
+ }
+ title="Android Keystore"
+ description="Configure keystore security options"
+ >
+ {
+ Alert.alert(
+ useStrongBox ? 'Disable StrongBox' : 'Enable StrongBox',
+ useStrongBox
+ ? 'New keys will be generated without StrongBox hardware backing. Existing keys will continue to work.'
+ : 'New keys will attempt to use StrongBox hardware backing for enhanced security.',
+ [
+ { text: 'Cancel', style: 'cancel' },
+ {
+ text: useStrongBox ? 'Disable' : 'Enable',
+ onPress: () => setUseStrongBox(!useStrongBox),
+ },
+ ],
+ );
+ }}
+ />
+
+ )}
+
}
title="Danger Zone"
diff --git a/app/src/stores/settingStore.ts b/app/src/stores/settingStore.ts
index 4992344007..c4d80985e4 100644
--- a/app/src/stores/settingStore.ts
+++ b/app/src/stores/settingStore.ts
@@ -38,11 +38,13 @@ interface PersistedSettingsState {
setSkipDocumentSelectorIfSingle: (value: boolean) => void;
setSubscribedTopics: (topics: string[]) => void;
setTurnkeyBackupEnabled: (turnkeyBackupEnabled: boolean) => void;
+ setUseStrongBox: (useStrongBox: boolean) => void;
skipDocumentSelector: boolean;
skipDocumentSelectorIfSingle: boolean;
subscribedTopics: string[];
toggleCloudBackupEnabled: () => void;
turnkeyBackupEnabled: boolean;
+ useStrongBox: boolean;
}
interface NonPersistedSettingsState {
@@ -147,6 +149,10 @@ export const useSettingStore = create()(
setSkipDocumentSelectorIfSingle: (value: boolean) =>
set({ skipDocumentSelectorIfSingle: value }),
+ // StrongBox setting for Android keystore (default: false)
+ useStrongBox: false,
+ setUseStrongBox: (useStrongBox: boolean) => set({ useStrongBox }),
+
// Non-persisted state (will not be saved to storage)
hideNetworkModal: false,
setHideNetworkModal: (hideNetworkModal: boolean) => {
diff --git a/app/src/types/react-native-keychain.d.ts b/app/src/types/react-native-keychain.d.ts
new file mode 100644
index 0000000000..e047237ada
--- /dev/null
+++ b/app/src/types/react-native-keychain.d.ts
@@ -0,0 +1,21 @@
+// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-License-Identifier: BUSL-1.1
+// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
+
+import type { SetOptions } from 'react-native-keychain';
+
+/**
+ * Extended SetOptions with useStrongBox property added by our patch.
+ * Use this type when you need the useStrongBox option for Android keystore.
+ */
+export type ExtendedSetOptions = SetOptions & {
+ /**
+ * Whether to attempt StrongBox-backed key generation on Android.
+ * When true (default), the library will try to use StrongBox hardware
+ * security module if available, falling back to regular secure hardware.
+ * When false, StrongBox is skipped and regular secure hardware is used directly.
+ * @platform Android
+ * @default true
+ */
+ useStrongBox?: boolean;
+};
diff --git a/app/src/utils/keychainErrors.ts b/app/src/utils/keychainErrors.ts
index b3be2a1135..b13cf98fbe 100644
--- a/app/src/utils/keychainErrors.ts
+++ b/app/src/utils/keychainErrors.ts
@@ -29,6 +29,8 @@ export function isKeychainCryptoError(error: unknown): boolean {
err?.name === 'com.oblador.keychain.exceptions.CryptoFailedException' ||
err?.message?.includes('CryptoFailedException') ||
err?.message?.includes('Decryption failed') ||
+ err?.message?.includes('Could not encrypt data') ||
+ err?.message?.includes('Keystore operation failed') ||
err?.message?.includes('Authentication tag verification failed')) &&
!isUserCancellation(error),
);
@@ -41,6 +43,13 @@ export function isUserCancellation(error: unknown): boolean {
err?.code === 'USER_CANCELED' ||
err?.message?.includes('User canceled') ||
err?.message?.includes('Authentication canceled') ||
- err?.message?.includes('cancelled by user'),
+ err?.message?.includes('cancelled by user') ||
+ err?.message?.includes('Fingerprint operation cancelled') ||
+ err?.message?.includes('operation cancelled') ||
+ err?.message?.includes("Can't verify face") ||
+ err?.message?.includes('code: 5') || // ERROR_CANCELED
+ err?.message?.includes('code: 2') || // ERROR_UNABLE_TO_PROCESS (biometric verification failed)
+ err?.message?.includes('code: 10') || // ERROR_USER_CANCELED
+ err?.message?.includes('code: 13'), // ERROR_NEGATIVE_BUTTON - for ref (https://developer.android.com/reference/androidx/biometric/BiometricPrompt#ERROR_NEGATIVE_BUTTON())
);
}
diff --git a/app/version.json b/app/version.json
index a86d3997e8..e535ae26bd 100644
--- a/app/version.json
+++ b/app/version.json
@@ -4,7 +4,7 @@
"lastDeployed": "2026-01-12T23:27:08.229Z"
},
"android": {
- "build": 135,
- "lastDeployed": "2026-01-14T02:32:57.506Z"
+ "build": 136,
+ "lastDeployed": "2026-01-15T16:44:42Z"
}
}
diff --git a/patches/react-native-keychain+10.0.0.patch b/patches/react-native-keychain+10.0.0.patch
new file mode 100644
index 0000000000..03284a4693
--- /dev/null
+++ b/patches/react-native-keychain+10.0.0.patch
@@ -0,0 +1,9048 @@
+diff --git a/node_modules/react-native-keychain/android/.project b/node_modules/react-native-keychain/android/.project
+new file mode 100644
+index 0000000..7103bef
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/.project
+@@ -0,0 +1,28 @@
++
++
++ react-native-keychain
++ Project OpenPassport-android-react-native-keychain created by Buildship.
++
++
++
++
++ org.eclipse.buildship.core.gradleprojectbuilder
++
++
++
++
++
++ org.eclipse.buildship.core.gradleprojectnature
++
++
++
++ 1759738232586
++
++ 30
++
++ org.eclipse.core.resources.regexFilterMatcher
++ node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/results.bin b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/results.bin
+new file mode 100644
+index 0000000..7ed749e
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/results.bin
+@@ -0,0 +1 @@
++o/bundleLibRuntimeToDirDebug
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/BuildConfig.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/BuildConfig.dex
+new file mode 100644
+index 0000000..8a8119f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/BuildConfig.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.dex
+new file mode 100644
+index 0000000..35312a2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$prefs$2.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$prefs$2.dex
+new file mode 100644
+index 0000000..f8a55fc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$prefs$2.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.dex
+new file mode 100644
+index 0000000..db0a17d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.dex
+new file mode 100644
+index 0000000..b8f418a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.dex
+new file mode 100644
+index 0000000..a8cc5e3
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.dex
+new file mode 100644
+index 0000000..0f579fb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.dex
+new file mode 100644
+index 0000000..528b4db
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage.dex
+new file mode 100644
+index 0000000..0f6530b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DataStorePrefsStorage.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DeviceAvailability.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DeviceAvailability.dex
+new file mode 100644
+index 0000000..1a1adc2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/DeviceAvailability.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AccessControl$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AccessControl$Companion.dex
+new file mode 100644
+index 0000000..e194a4d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AccessControl$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AccessControl.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AccessControl.dex
+new file mode 100644
+index 0000000..4350981
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AccessControl.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.dex
+new file mode 100644
+index 0000000..29e9ede
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions.dex
+new file mode 100644
+index 0000000..93bdffc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Companion.dex
+new file mode 100644
+index 0000000..33f076c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Errors$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Errors$Companion.dex
+new file mode 100644
+index 0000000..234f75a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Errors$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Errors.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Errors.dex
+new file mode 100644
+index 0000000..4b3bc7b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Errors.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.dex
+new file mode 100644
+index 0000000..acc2ec6
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$KnownCiphers.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$KnownCiphers.dex
+new file mode 100644
+index 0000000..483ab45
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$KnownCiphers.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Maps$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Maps$Companion.dex
+new file mode 100644
+index 0000000..0e56338
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Maps$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Maps.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Maps.dex
+new file mode 100644
+index 0000000..724e789
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$Maps.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$decryptCredentials$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$decryptCredentials$1.dex
+new file mode 100644
+index 0000000..492409f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$decryptCredentials$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$getGenericPassword$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$getGenericPassword$1.dex
+new file mode 100644
+index 0000000..e4cf46a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$getGenericPassword$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.dex
+new file mode 100644
+index 0000000..6841f6b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$setGenericPassword$1.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$setGenericPassword$1.dex
+new file mode 100644
+index 0000000..ad66071
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule$setGenericPassword$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule.dex
+new file mode 100644
+index 0000000..05479f8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainModule.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainPackage.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainPackage.dex
+new file mode 100644
+index 0000000..65e111d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/KeychainPackage.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase$Companion.dex
+new file mode 100644
+index 0000000..557e1f5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase$ResultSet.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase$ResultSet.dex
+new file mode 100644
+index 0000000..ee0423a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase$ResultSet.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase.dex
+new file mode 100644
+index 0000000..d12f58a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/PrefsStorageBase.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/SecurityLevel.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/SecurityLevel.dex
+new file mode 100644
+index 0000000..d17a9e6
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/SecurityLevel.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherCache.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherCache.dex
+new file mode 100644
+index 0000000..c145133
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherCache.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.dex
+new file mode 100644
+index 0000000..4ba01e4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.dex
+new file mode 100644
+index 0000000..41acf9d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.dex
+new file mode 100644
+index 0000000..d92ce95
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage.dex
+new file mode 100644
+index 0000000..3a40863
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorage.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.dex
+new file mode 100644
+index 0000000..892238d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.dex
+new file mode 100644
+index 0000000..9333b8e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.dex
+new file mode 100644
+index 0000000..1db76f7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.dex
+new file mode 100644
+index 0000000..8715673
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase.dex
+new file mode 100644
+index 0000000..1224311
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageBase.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.dex
+new file mode 100644
+index 0000000..f126e90
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.dex
+new file mode 100644
+index 0000000..6f1f67c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.dex
+new file mode 100644
+index 0000000..145b21b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.dex
+new file mode 100644
+index 0000000..e934f2a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.dex
+new file mode 100644
+index 0000000..1fddd28
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.dex
+new file mode 100644
+index 0000000..61506d9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.dex
+new file mode 100644
+index 0000000..1bfdd11
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.dex
+new file mode 100644
+index 0000000..658608d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/CryptoFailedException$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/CryptoFailedException$Companion.dex
+new file mode 100644
+index 0000000..b2db145
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/CryptoFailedException$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/CryptoFailedException.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/CryptoFailedException.dex
+new file mode 100644
+index 0000000..d019701
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/CryptoFailedException.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/EmptyParameterException.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/EmptyParameterException.dex
+new file mode 100644
+index 0000000..dd47d98
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/EmptyParameterException.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/KeyStoreAccessException.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/KeyStoreAccessException.dex
+new file mode 100644
+index 0000000..04b37ba
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/exceptions/KeyStoreAccessException.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/CryptoContext.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/CryptoContext.dex
+new file mode 100644
+index 0000000..c1daeff
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/CryptoContext.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/CryptoOperation.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/CryptoOperation.dex
+new file mode 100644
+index 0000000..3a16bdc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/CryptoOperation.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandler.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandler.dex
+new file mode 100644
+index 0000000..34800b9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandler.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.dex
+new file mode 100644
+index 0000000..d88ed0d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.dex
+new file mode 100644
+index 0000000..9ca3f6c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.dex
+new file mode 100644
+index 0000000..ef34b77
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.dex
+new file mode 100644
+index 0000000..9609aba
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerProvider.dex b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerProvider.dex
+new file mode 100644
+index 0000000..ecdd8a5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/oblador/keychain/resultHandler/ResultHandlerProvider.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin
+new file mode 100644
+index 0000000..601f245
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/989e312aea95746814dfb980d0c277f3/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/results.bin b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/results.bin
+new file mode 100644
+index 0000000..e1640c9
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/results.bin
+@@ -0,0 +1 @@
++o/bundleLibRuntimeToDirRelease
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/BuildConfig.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/BuildConfig.dex
+new file mode 100644
+index 0000000..aa50a44
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/BuildConfig.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.dex
+new file mode 100644
+index 0000000..96891aa
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$prefs$2.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$prefs$2.dex
+new file mode 100644
+index 0000000..b2d2206
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$prefs$2.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.dex
+new file mode 100644
+index 0000000..bcb5e55
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.dex
+new file mode 100644
+index 0000000..ead8811
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.dex
+new file mode 100644
+index 0000000..f24b3be
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.dex
+new file mode 100644
+index 0000000..c9f1fcf
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.dex
+new file mode 100644
+index 0000000..f623498
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage.dex
+new file mode 100644
+index 0000000..74e3920
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DataStorePrefsStorage.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DeviceAvailability.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DeviceAvailability.dex
+new file mode 100644
+index 0000000..ea64d8a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/DeviceAvailability.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AccessControl$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AccessControl$Companion.dex
+new file mode 100644
+index 0000000..94ac4b2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AccessControl$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AccessControl.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AccessControl.dex
+new file mode 100644
+index 0000000..ac6e4f1
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AccessControl.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.dex
+new file mode 100644
+index 0000000..a02e491
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions.dex
+new file mode 100644
+index 0000000..00e98b1
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$AuthPromptOptions.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Companion.dex
+new file mode 100644
+index 0000000..e6a6b06
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Errors$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Errors$Companion.dex
+new file mode 100644
+index 0000000..0f4dacd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Errors$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Errors.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Errors.dex
+new file mode 100644
+index 0000000..ec03e40
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Errors.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.dex
+new file mode 100644
+index 0000000..8df972f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$KnownCiphers.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$KnownCiphers.dex
+new file mode 100644
+index 0000000..1a3e042
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$KnownCiphers.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Maps$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Maps$Companion.dex
+new file mode 100644
+index 0000000..09d081f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Maps$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Maps.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Maps.dex
+new file mode 100644
+index 0000000..f1acf37
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$Maps.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$decryptCredentials$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$decryptCredentials$1.dex
+new file mode 100644
+index 0000000..cce11eb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$decryptCredentials$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$getGenericPassword$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$getGenericPassword$1.dex
+new file mode 100644
+index 0000000..c21a72c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$getGenericPassword$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.dex
+new file mode 100644
+index 0000000..ba75acb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$setGenericPassword$1.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$setGenericPassword$1.dex
+new file mode 100644
+index 0000000..887c300
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule$setGenericPassword$1.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule.dex
+new file mode 100644
+index 0000000..fed08d7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainModule.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainPackage.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainPackage.dex
+new file mode 100644
+index 0000000..e556fea
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/KeychainPackage.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase$Companion.dex
+new file mode 100644
+index 0000000..95e0ac6
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase$ResultSet.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase$ResultSet.dex
+new file mode 100644
+index 0000000..6fcb036
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase$ResultSet.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase.dex
+new file mode 100644
+index 0000000..3f44bc9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/PrefsStorageBase.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/SecurityLevel.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/SecurityLevel.dex
+new file mode 100644
+index 0000000..56e71c7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/SecurityLevel.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherCache.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherCache.dex
+new file mode 100644
+index 0000000..a444013
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherCache.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.dex
+new file mode 100644
+index 0000000..9289785
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.dex
+new file mode 100644
+index 0000000..ede5ed5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.dex
+new file mode 100644
+index 0000000..1620980
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage.dex
+new file mode 100644
+index 0000000..28b4f59
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorage.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.dex
+new file mode 100644
+index 0000000..78f2582
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.dex
+new file mode 100644
+index 0000000..9fd6ae5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.dex
+new file mode 100644
+index 0000000..f05d3dc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.dex
+new file mode 100644
+index 0000000..29e9202
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase.dex
+new file mode 100644
+index 0000000..a360e70
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageBase.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.dex
+new file mode 100644
+index 0000000..1db1dca
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.dex
+new file mode 100644
+index 0000000..83d7fba
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.dex
+new file mode 100644
+index 0000000..54a1847
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.dex
+new file mode 100644
+index 0000000..013b4f4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.dex
+new file mode 100644
+index 0000000..7367d03
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.dex
+new file mode 100644
+index 0000000..587b433
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.dex
+new file mode 100644
+index 0000000..54b8c23
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.dex
+new file mode 100644
+index 0000000..725b7db
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/CryptoFailedException$Companion.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/CryptoFailedException$Companion.dex
+new file mode 100644
+index 0000000..a909a2e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/CryptoFailedException$Companion.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/CryptoFailedException.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/CryptoFailedException.dex
+new file mode 100644
+index 0000000..dd47f76
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/CryptoFailedException.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/EmptyParameterException.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/EmptyParameterException.dex
+new file mode 100644
+index 0000000..dd6cd7e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/EmptyParameterException.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/KeyStoreAccessException.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/KeyStoreAccessException.dex
+new file mode 100644
+index 0000000..13e5a48
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/exceptions/KeyStoreAccessException.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/CryptoContext.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/CryptoContext.dex
+new file mode 100644
+index 0000000..3c6274b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/CryptoContext.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/CryptoOperation.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/CryptoOperation.dex
+new file mode 100644
+index 0000000..edf6e84
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/CryptoOperation.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandler.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandler.dex
+new file mode 100644
+index 0000000..6b6edc8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandler.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.dex
+new file mode 100644
+index 0000000..8772d24
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.dex
+new file mode 100644
+index 0000000..c2dd3aa
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.dex
+new file mode 100644
+index 0000000..ada7f3c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.dex
+new file mode 100644
+index 0000000..1faa90d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerProvider.dex b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerProvider.dex
+new file mode 100644
+index 0000000..6aa3cf2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/oblador/keychain/resultHandler/ResultHandlerProvider.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/desugar_graph.bin b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/desugar_graph.bin
+new file mode 100644
+index 0000000..601f245
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/c77d34bf57d33c052e1c4a34af69a085/transformed/bundleLibRuntimeToDirRelease/desugar_graph.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/f77183f0f60055f35791fc9f6d2a7ac7/results.bin b/node_modules/react-native-keychain/android/build/.transforms/f77183f0f60055f35791fc9f6d2a7ac7/results.bin
+new file mode 100644
+index 0000000..0d259dd
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/.transforms/f77183f0f60055f35791fc9f6d2a7ac7/results.bin
+@@ -0,0 +1 @@
++o/classes
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/f77183f0f60055f35791fc9f6d2a7ac7/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-keychain/android/build/.transforms/f77183f0f60055f35791fc9f6d2a7ac7/transformed/classes/classes_dex/classes.dex
+new file mode 100644
+index 0000000..ef45923
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/f77183f0f60055f35791fc9f6d2a7ac7/transformed/classes/classes_dex/classes.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/fa5c3329a9293f9fde68e6138ed80242/results.bin b/node_modules/react-native-keychain/android/build/.transforms/fa5c3329a9293f9fde68e6138ed80242/results.bin
+new file mode 100644
+index 0000000..0d259dd
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/.transforms/fa5c3329a9293f9fde68e6138ed80242/results.bin
+@@ -0,0 +1 @@
++o/classes
+diff --git a/node_modules/react-native-keychain/android/build/.transforms/fa5c3329a9293f9fde68e6138ed80242/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-keychain/android/build/.transforms/fa5c3329a9293f9fde68e6138ed80242/transformed/classes/classes_dex/classes.dex
+new file mode 100644
+index 0000000..2f6a54a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/.transforms/fa5c3329a9293f9fde68e6138ed80242/transformed/classes/classes_dex/classes.dex differ
+diff --git a/node_modules/react-native-keychain/android/build/generated/source/buildConfig/debug/com/oblador/keychain/BuildConfig.java b/node_modules/react-native-keychain/android/build/generated/source/buildConfig/debug/com/oblador/keychain/BuildConfig.java
+new file mode 100644
+index 0000000..e6588e4
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/generated/source/buildConfig/debug/com/oblador/keychain/BuildConfig.java
+@@ -0,0 +1,12 @@
++/**
++ * Automatically generated file. DO NOT MODIFY
++ */
++package com.oblador.keychain;
++
++public final class BuildConfig {
++ public static final boolean DEBUG = Boolean.parseBoolean("true");
++ public static final String LIBRARY_PACKAGE_NAME = "com.oblador.keychain";
++ public static final String BUILD_TYPE = "debug";
++ // Field from default config.
++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = false;
++}
+diff --git a/node_modules/react-native-keychain/android/build/generated/source/buildConfig/release/com/oblador/keychain/BuildConfig.java b/node_modules/react-native-keychain/android/build/generated/source/buildConfig/release/com/oblador/keychain/BuildConfig.java
+new file mode 100644
+index 0000000..6b46a0b
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/generated/source/buildConfig/release/com/oblador/keychain/BuildConfig.java
+@@ -0,0 +1,12 @@
++/**
++ * Automatically generated file. DO NOT MODIFY
++ */
++package com.oblador.keychain;
++
++public final class BuildConfig {
++ public static final boolean DEBUG = false;
++ public static final String LIBRARY_PACKAGE_NAME = "com.oblador.keychain";
++ public static final String BUILD_TYPE = "release";
++ // Field from default config.
++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = false;
++}
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
+new file mode 100644
+index 0000000..65ea1d3
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
+@@ -0,0 +1,13 @@
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
+new file mode 100644
+index 0000000..7c1e011
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
+@@ -0,0 +1,18 @@
++{
++ "version": 3,
++ "artifactType": {
++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
++ "kind": "Directory"
++ },
++ "applicationId": "com.oblador.keychain",
++ "variantName": "debug",
++ "elements": [
++ {
++ "type": "SINGLE",
++ "filters": [],
++ "attributes": [],
++ "outputFile": "AndroidManifest.xml"
++ }
++ ],
++ "elementType": "File"
++}
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml
+new file mode 100644
+index 0000000..65ea1d3
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml
+@@ -0,0 +1,13 @@
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json
+new file mode 100644
+index 0000000..ecc1959
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json
+@@ -0,0 +1,18 @@
++{
++ "version": 3,
++ "artifactType": {
++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
++ "kind": "Directory"
++ },
++ "applicationId": "com.oblador.keychain",
++ "variantName": "release",
++ "elements": [
++ {
++ "type": "SINGLE",
++ "filters": [],
++ "attributes": [],
++ "outputFile": "AndroidManifest.xml"
++ }
++ ],
++ "elementType": "File"
++}
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar b/node_modules/react-native-keychain/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar
+new file mode 100644
+index 0000000..9fcef51
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar b/node_modules/react-native-keychain/android/build/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar
+new file mode 100644
+index 0000000..5d34c59
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-keychain/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
+new file mode 100644
+index 0000000..1211b1e
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
+@@ -0,0 +1,6 @@
++aarFormatVersion=1.0
++aarMetadataVersion=1.0
++minCompileSdk=1
++minCompileSdkExtension=0
++minAndroidGradlePluginVersion=1.0.0
++coreLibraryDesugaringEnabled=false
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties b/node_modules/react-native-keychain/android/build/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties
+new file mode 100644
+index 0000000..1211b1e
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties
+@@ -0,0 +1,6 @@
++aarFormatVersion=1.0
++aarMetadataVersion=1.0
++minCompileSdk=1
++minCompileSdkExtension=0
++minAndroidGradlePluginVersion=1.0.0
++coreLibraryDesugaringEnabled=false
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-keychain/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
+new file mode 100644
+index 0000000..9e26dfe
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
+@@ -0,0 +1 @@
++{}
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json b/node_modules/react-native-keychain/android/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json
+new file mode 100644
+index 0000000..9e26dfe
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json
+@@ -0,0 +1 @@
++{}
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/node_modules/react-native-keychain/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt b/node_modules/react-native-keychain/android/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-keychain/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar
+new file mode 100644
+index 0000000..6bb7f5b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar b/node_modules/react-native-keychain/android/build/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar
+new file mode 100644
+index 0000000..87c09a7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-keychain/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar
+new file mode 100644
+index 0000000..5a360dd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar b/node_modules/react-native-keychain/android/build/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar
+new file mode 100644
+index 0000000..5a360dd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-keychain/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt b/node_modules/react-native-keychain/android/build/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.2 b/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.2
+new file mode 100644
+index 0000000..5a3e3a5
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.2
+@@ -0,0 +1,89 @@
++# This is a configuration file for ProGuard.
++# http://proguard.sourceforge.net/index.html#manual/usage.html
++#
++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
++# will be ignored by new version of the Android plugin for Gradle.
++
++# Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file
++# instead of this one, which turns off the optimization flags.
++-allowaccessmodification
++
++# Preserve some attributes that may be required for reflection.
++-keepattributes AnnotationDefault,
++ EnclosingMethod,
++ InnerClasses,
++ RuntimeVisibleAnnotations,
++ RuntimeVisibleParameterAnnotations,
++ RuntimeVisibleTypeAnnotations,
++ Signature
++
++-keep public class com.google.vending.licensing.ILicensingService
++-keep public class com.android.vending.licensing.ILicensingService
++-keep public class com.google.android.vending.licensing.ILicensingService
++-dontnote com.android.vending.licensing.ILicensingService
++-dontnote com.google.vending.licensing.ILicensingService
++-dontnote com.google.android.vending.licensing.ILicensingService
++
++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native
++-keepclasseswithmembernames,includedescriptorclasses class * {
++ native ;
++}
++
++# Keep setters in Views so that animations can still work.
++-keepclassmembers public class * extends android.view.View {
++ void set*(***);
++ *** get*();
++}
++
++# We want to keep methods in Activity that could be used in the XML attribute onClick.
++-keepclassmembers class * extends android.app.Activity {
++ public void *(android.view.View);
++}
++
++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations
++-keepclassmembers enum * {
++ public static **[] values();
++ public static ** valueOf(java.lang.String);
++}
++
++-keepclassmembers class * implements android.os.Parcelable {
++ public static final ** CREATOR;
++}
++
++# Preserve annotated Javascript interface methods.
++-keepclassmembers class * {
++ @android.webkit.JavascriptInterface ;
++}
++
++# The support libraries contains references to newer platform versions.
++# Don't warn about those in case this app is linking against an older
++# platform version. We know about them, and they are safe.
++-dontnote android.support.**
++-dontnote androidx.**
++-dontwarn android.support.**
++-dontwarn androidx.**
++
++# Understand the @Keep support annotation.
++-keep class android.support.annotation.Keep
++
++-keep @android.support.annotation.Keep class * {*;}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep ;
++}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep ;
++}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep (...);
++}
++
++# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
++-dontnote org.apache.http.**
++-dontnote android.net.http.**
++
++# These classes are duplicated between android.jar and core-lambda-stubs.jar.
++-dontnote java.lang.invoke.**
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.11.2 b/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.11.2
+new file mode 100644
+index 0000000..6f7e4ef
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.11.2
+@@ -0,0 +1,95 @@
++# This is a configuration file for ProGuard.
++# http://proguard.sourceforge.net/index.html#manual/usage.html
++#
++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
++# will be ignored by new version of the Android plugin for Gradle.
++
++# Optimization is turned off by default. Dex does not like code run
++# through the ProGuard optimize steps (and performs some
++# of these optimizations on its own).
++# Note that if you want to enable optimization, you cannot just
++# include optimization flags in your own project configuration file;
++# instead you will need to point to the
++# "proguard-android-optimize.txt" file instead of this one from your
++# project.properties file.
++-dontoptimize
++
++# Preserve some attributes that may be required for reflection.
++-keepattributes AnnotationDefault,
++ EnclosingMethod,
++ InnerClasses,
++ RuntimeVisibleAnnotations,
++ RuntimeVisibleParameterAnnotations,
++ RuntimeVisibleTypeAnnotations,
++ Signature
++
++-keep public class com.google.vending.licensing.ILicensingService
++-keep public class com.android.vending.licensing.ILicensingService
++-keep public class com.google.android.vending.licensing.ILicensingService
++-dontnote com.android.vending.licensing.ILicensingService
++-dontnote com.google.vending.licensing.ILicensingService
++-dontnote com.google.android.vending.licensing.ILicensingService
++
++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native
++-keepclasseswithmembernames,includedescriptorclasses class * {
++ native ;
++}
++
++# Keep setters in Views so that animations can still work.
++-keepclassmembers public class * extends android.view.View {
++ void set*(***);
++ *** get*();
++}
++
++# We want to keep methods in Activity that could be used in the XML attribute onClick.
++-keepclassmembers class * extends android.app.Activity {
++ public void *(android.view.View);
++}
++
++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations
++-keepclassmembers enum * {
++ public static **[] values();
++ public static ** valueOf(java.lang.String);
++}
++
++-keepclassmembers class * implements android.os.Parcelable {
++ public static final ** CREATOR;
++}
++
++# Preserve annotated Javascript interface methods.
++-keepclassmembers class * {
++ @android.webkit.JavascriptInterface ;
++}
++
++# The support libraries contains references to newer platform versions.
++# Don't warn about those in case this app is linking against an older
++# platform version. We know about them, and they are safe.
++-dontnote android.support.**
++-dontnote androidx.**
++-dontwarn android.support.**
++-dontwarn androidx.**
++
++# Understand the @Keep support annotation.
++-keep class android.support.annotation.Keep
++
++-keep @android.support.annotation.Keep class * {*;}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep ;
++}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep ;
++}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep (...);
++}
++
++# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
++-dontnote org.apache.http.**
++-dontnote android.net.http.**
++
++# These classes are duplicated between android.jar and core-lambda-stubs.jar.
++-dontnote java.lang.invoke.**
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.2 b/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.2
+new file mode 100644
+index 0000000..7bbb228
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.2
+@@ -0,0 +1,89 @@
++# This is a configuration file for ProGuard.
++# http://proguard.sourceforge.net/index.html#manual/usage.html
++#
++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
++# will be ignored by new version of the Android plugin for Gradle.
++
++# Optimizations can be turned on and off in the 'postProcessing' DSL block.
++# The configuration below is applied if optimizations are enabled.
++-allowaccessmodification
++
++# Preserve some attributes that may be required for reflection.
++-keepattributes AnnotationDefault,
++ EnclosingMethod,
++ InnerClasses,
++ RuntimeVisibleAnnotations,
++ RuntimeVisibleParameterAnnotations,
++ RuntimeVisibleTypeAnnotations,
++ Signature
++
++-keep public class com.google.vending.licensing.ILicensingService
++-keep public class com.android.vending.licensing.ILicensingService
++-keep public class com.google.android.vending.licensing.ILicensingService
++-dontnote com.android.vending.licensing.ILicensingService
++-dontnote com.google.vending.licensing.ILicensingService
++-dontnote com.google.android.vending.licensing.ILicensingService
++
++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native
++-keepclasseswithmembernames,includedescriptorclasses class * {
++ native ;
++}
++
++# Keep setters in Views so that animations can still work.
++-keepclassmembers public class * extends android.view.View {
++ void set*(***);
++ *** get*();
++}
++
++# We want to keep methods in Activity that could be used in the XML attribute onClick.
++-keepclassmembers class * extends android.app.Activity {
++ public void *(android.view.View);
++}
++
++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations
++-keepclassmembers enum * {
++ public static **[] values();
++ public static ** valueOf(java.lang.String);
++}
++
++-keepclassmembers class * implements android.os.Parcelable {
++ public static final ** CREATOR;
++}
++
++# Preserve annotated Javascript interface methods.
++-keepclassmembers class * {
++ @android.webkit.JavascriptInterface ;
++}
++
++# The support libraries contains references to newer platform versions.
++# Don't warn about those in case this app is linking against an older
++# platform version. We know about them, and they are safe.
++-dontnote android.support.**
++-dontnote androidx.**
++-dontwarn android.support.**
++-dontwarn androidx.**
++
++# Understand the @Keep support annotation.
++-keep class android.support.annotation.Keep
++
++-keep @android.support.annotation.Keep class * {*;}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep ;
++}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep ;
++}
++
++-keepclasseswithmembers class * {
++ @android.support.annotation.Keep (...);
++}
++
++# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
++-dontnote org.apache.http.**
++-dontnote android.net.http.**
++
++# These classes are duplicated between android.jar and core-lambda-stubs.jar.
++-dontnote java.lang.invoke.**
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/full_jar/release/createFullJarRelease/full.jar b/node_modules/react-native-keychain/android/build/intermediates/full_jar/release/createFullJarRelease/full.jar
+new file mode 100644
+index 0000000..927caea
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/full_jar/release/createFullJarRelease/full.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/react-native-keychain/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state
+new file mode 100644
+index 0000000..59a89a9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-keychain/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
+new file mode 100644
+index 0000000..d517142
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
+@@ -0,0 +1 @@
++#Wed Nov 12 00:59:55 IST 2025
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
+new file mode 100644
+index 0000000..5339449
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/module.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/module.xml
+new file mode 100644
+index 0000000..aaefdce
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/module.xml
+@@ -0,0 +1,19 @@
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml
+new file mode 100644
+index 0000000..f723a52
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml
+@@ -0,0 +1,560 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml
+new file mode 100644
+index 0000000..2ced8cb
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml
+@@ -0,0 +1,1015 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release.xml
+new file mode 100644
+index 0000000..276ab03
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/lintVitalAnalyzeRelease/release.xml
+@@ -0,0 +1,31 @@
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugAssets/merger.xml
+new file mode 100644
+index 0000000..8ce0c89
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugAssets/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
+new file mode 100644
+index 0000000..c7a84ff
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
+new file mode 100644
+index 0000000..894938e
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseAssets/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseAssets/merger.xml
+new file mode 100644
+index 0000000..3b54f5b
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseAssets/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
+new file mode 100644
+index 0000000..7cc4fa8
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml
+new file mode 100644
+index 0000000..5d9b330
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/release-mergeJavaRes/merge-state b/node_modules/react-native-keychain/android/build/intermediates/incremental/release-mergeJavaRes/merge-state
+new file mode 100644
+index 0000000..fee1cff
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/incremental/release-mergeJavaRes/merge-state differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties b/node_modules/react-native-keychain/android/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties
+new file mode 100644
+index 0000000..8b6a221
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties
+@@ -0,0 +1 @@
++#Tue Dec 09 13:04:10 GMT+05:30 2025
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/incremental/release/packageReleaseResources/merger.xml b/node_modules/react-native-keychain/android/build/intermediates/incremental/release/packageReleaseResources/merger.xml
+new file mode 100644
+index 0000000..b43f7e1
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/incremental/release/packageReleaseResources/merger.xml
+@@ -0,0 +1,2 @@
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-keychain_debug.kotlin_module b/node_modules/react-native-keychain/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-keychain_debug.kotlin_module
+new file mode 100644
+index 0000000..c998a4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-keychain_debug.kotlin_module differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/react-native-keychain_release.kotlin_module b/node_modules/react-native-keychain/android/build/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/react-native-keychain_release.kotlin_module
+new file mode 100644
+index 0000000..c998a4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/react-native-keychain_release.kotlin_module differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/oblador/keychain/BuildConfig.class b/node_modules/react-native-keychain/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/oblador/keychain/BuildConfig.class
+new file mode 100644
+index 0000000..d822059
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/oblador/keychain/BuildConfig.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/oblador/keychain/BuildConfig.class b/node_modules/react-native-keychain/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/oblador/keychain/BuildConfig.class
+new file mode 100644
+index 0000000..c02b7df
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/oblador/keychain/BuildConfig.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt
+new file mode 100644
+index 0000000..215f7b0
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt
+@@ -0,0 +1 @@
++Cache for Android Lint31.11.2
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/appcompat/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/appcompat/group-index.xml
+new file mode 100644
+index 0000000..b0774ea
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/appcompat/group-index.xml
+@@ -0,0 +1,5 @@
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/biometric/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/biometric/group-index.xml
+new file mode 100644
+index 0000000..69a5c85
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/biometric/group-index.xml
+@@ -0,0 +1,5 @@
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/datastore/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/datastore/group-index.xml
+new file mode 100644
+index 0000000..9cff6ba
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/datastore/group-index.xml
+@@ -0,0 +1,105 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/fragment/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/fragment/group-index.xml
+new file mode 100644
+index 0000000..16976a2
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/fragment/group-index.xml
+@@ -0,0 +1,8 @@
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/legacy/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/legacy/group-index.xml
+new file mode 100644
+index 0000000..8962731
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/legacy/group-index.xml
+@@ -0,0 +1,8 @@
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/lifecycle/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/lifecycle/group-index.xml
+new file mode 100644
+index 0000000..3b61467
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/lifecycle/group-index.xml
+@@ -0,0 +1,174 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/com/android/tools/build/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/com/android/tools/build/group-index.xml
+new file mode 100644
+index 0000000..37738ff
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/com/android/tools/build/group-index.xml
+@@ -0,0 +1,22 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/master-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/master-index.xml
+new file mode 100644
+index 0000000..cc5b531
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/master-index.xml
+@@ -0,0 +1,321 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/org/jetbrains/kotlin/group-index.xml b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/org/jetbrains/kotlin/group-index.xml
+new file mode 100644
+index 0000000..527afd8
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/org/jetbrains/kotlin/group-index.xml
+@@ -0,0 +1,6 @@
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/sdk_index/snapshot.gz b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/sdk_index/snapshot.gz
+new file mode 100644
+index 0000000..1800834
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/lint-cache/lintVitalAnalyzeRelease/sdk_index/snapshot.gz differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/module.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/module.xml
+new file mode 100644
+index 0000000..aaefdce
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/module.xml
+@@ -0,0 +1,19 @@
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-dependencies.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-dependencies.xml
+new file mode 100644
+index 0000000..f723a52
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-dependencies.xml
+@@ -0,0 +1,560 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-libraries.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-libraries.xml
+new file mode 100644
+index 0000000..2ced8cb
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-libraries.xml
+@@ -0,0 +1,1015 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release.xml
+new file mode 100644
+index 0000000..9fb6bb5
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_model/release/generateReleaseLintModel/release.xml
+@@ -0,0 +1,31 @@
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_model_metadata/release/writeReleaseLintModelMetadata/lint-model-metadata.properties b/node_modules/react-native-keychain/android/build/intermediates/lint_model_metadata/release/writeReleaseLintModelMetadata/lint-model-metadata.properties
+new file mode 100644
+index 0000000..5cc28aa
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_model_metadata/release/writeReleaseLintModelMetadata/lint-model-metadata.properties
+@@ -0,0 +1,3 @@
++mavenArtifactId=react-native-keychain
++mavenGroupId=OpenPassport
++mavenVersion=unspecified
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/module.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/module.xml
+new file mode 100644
+index 0000000..aaefdce
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/module.xml
+@@ -0,0 +1,19 @@
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-dependencies.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-dependencies.xml
+new file mode 100644
+index 0000000..f723a52
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-dependencies.xml
+@@ -0,0 +1,560 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-libraries.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-libraries.xml
+new file mode 100644
+index 0000000..2ced8cb
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-libraries.xml
+@@ -0,0 +1,1015 @@
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release.xml
+new file mode 100644
+index 0000000..f2cd8a1
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release.xml
+@@ -0,0 +1,31 @@
++
++
++
++
++
++
++
++
++
++
++
++
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml b/node_modules/react-native-keychain/android/build/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml
+new file mode 100644
+index 0000000..e69de29
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/local_aar_for_lint/release/out.aar b/node_modules/react-native-keychain/android/build/intermediates/local_aar_for_lint/release/out.aar
+new file mode 100644
+index 0000000..8666f82
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/local_aar_for_lint/release/out.aar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-keychain/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
+new file mode 100644
+index 0000000..78ac5b8
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
+@@ -0,0 +1,2 @@
++R_DEF: Internal format may change without notice
++local
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt b/node_modules/react-native-keychain/android/build/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt
+new file mode 100644
+index 0000000..78ac5b8
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt
+@@ -0,0 +1,2 @@
++R_DEF: Internal format may change without notice
++local
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-keychain/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
+new file mode 100644
+index 0000000..a25f278
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
+@@ -0,0 +1,19 @@
++1
++2
++5
++6 /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++7 android:minSdkVersion="24"
++8 tools:overrideLibrary="com.facebook.react" />
++8-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:13-55
++9
++10
++10-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:3-70
++10-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:20-67
++11
++11-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:3-72
++11-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:20-69
++12
++13
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/manifest_merge_blame_file/release/processReleaseManifest/manifest-merger-blame-release-report.txt b/node_modules/react-native-keychain/android/build/intermediates/manifest_merge_blame_file/release/processReleaseManifest/manifest-merger-blame-release-report.txt
+new file mode 100644
+index 0000000..a25f278
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/manifest_merge_blame_file/release/processReleaseManifest/manifest-merger-blame-release-report.txt
+@@ -0,0 +1,19 @@
++1
++2
++5
++6 /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++7 android:minSdkVersion="24"
++8 tools:overrideLibrary="com.facebook.react" />
++8-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:13-55
++9
++10
++10-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:3-70
++10-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:20-67
++11
++11-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:3-72
++11-->/Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:20-69
++12
++13
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react-native-keychain.jar b/node_modules/react-native-keychain/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react-native-keychain.jar
+new file mode 100644
+index 0000000..d85cf5c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react-native-keychain.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/merged_java_res/release/mergeReleaseJavaResource/feature-react-native-keychain.jar b/node_modules/react-native-keychain/android/build/intermediates/merged_java_res/release/mergeReleaseJavaResource/feature-react-native-keychain.jar
+new file mode 100644
+index 0000000..b45c176
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/merged_java_res/release/mergeReleaseJavaResource/feature-react-native-keychain.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-keychain/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
+new file mode 100644
+index 0000000..65ea1d3
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
+@@ -0,0 +1,13 @@
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/merged_manifest/release/processReleaseManifest/AndroidManifest.xml b/node_modules/react-native-keychain/android/build/intermediates/merged_manifest/release/processReleaseManifest/AndroidManifest.xml
+new file mode 100644
+index 0000000..65ea1d3
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/merged_manifest/release/processReleaseManifest/AndroidManifest.xml
+@@ -0,0 +1,13 @@
++
++
++
++
++
++
++
++
++
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-keychain/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
+new file mode 100644
+index 0000000..0637a08
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
+@@ -0,0 +1 @@
++[]
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/navigation_json/release/extractDeepLinksRelease/navigation.json b/node_modules/react-native-keychain/android/build/intermediates/navigation_json/release/extractDeepLinksRelease/navigation.json
+new file mode 100644
+index 0000000..0637a08
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/navigation_json/release/extractDeepLinksRelease/navigation.json
+@@ -0,0 +1 @@
++[]
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-keychain/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
+new file mode 100644
+index 0000000..08f4ebe
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
+@@ -0,0 +1 @@
++0 Warning/Error
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/nested_resources_validation_report/release/generateReleaseResources/nestedResourcesValidationReport.txt b/node_modules/react-native-keychain/android/build/intermediates/nested_resources_validation_report/release/generateReleaseResources/nestedResourcesValidationReport.txt
+new file mode 100644
+index 0000000..08f4ebe
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/nested_resources_validation_report/release/generateReleaseResources/nestedResourcesValidationReport.txt
+@@ -0,0 +1 @@
++0 Warning/Error
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-keychain_debug.kotlin_module b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-keychain_debug.kotlin_module
+new file mode 100644
+index 0000000..c998a4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-keychain_debug.kotlin_module differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/BuildConfig.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/BuildConfig.class
+new file mode 100644
+index 0000000..d822059
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/BuildConfig.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class
+new file mode 100644
+index 0000000..bbf0778
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class
+new file mode 100644
+index 0000000..e50d3a2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class
+new file mode 100644
+index 0000000..80578a7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class
+new file mode 100644
+index 0000000..e1db780
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class
+new file mode 100644
+index 0000000..88a214f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class
+new file mode 100644
+index 0000000..a74416c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class
+new file mode 100644
+index 0000000..7b70c71
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage.class
+new file mode 100644
+index 0000000..b987e80
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DataStorePrefsStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DeviceAvailability.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DeviceAvailability.class
+new file mode 100644
+index 0000000..4893068
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/DeviceAvailability.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AccessControl$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AccessControl$Companion.class
+new file mode 100644
+index 0000000..f97a4b0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AccessControl$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AccessControl.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AccessControl.class
+new file mode 100644
+index 0000000..fd6cb4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AccessControl.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class
+new file mode 100644
+index 0000000..0d60449
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AuthPromptOptions.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AuthPromptOptions.class
+new file mode 100644
+index 0000000..53f9852
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$AuthPromptOptions.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Companion.class
+new file mode 100644
+index 0000000..12dd78d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Errors$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Errors$Companion.class
+new file mode 100644
+index 0000000..08c9df6
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Errors$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Errors.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Errors.class
+new file mode 100644
+index 0000000..1c114e2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Errors.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class
+new file mode 100644
+index 0000000..6193f7b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$KnownCiphers.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$KnownCiphers.class
+new file mode 100644
+index 0000000..5a9feec
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$KnownCiphers.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Maps$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Maps$Companion.class
+new file mode 100644
+index 0000000..f0673aa
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Maps$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Maps.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Maps.class
+new file mode 100644
+index 0000000..61677a2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$Maps.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$decryptCredentials$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$decryptCredentials$1.class
+new file mode 100644
+index 0000000..65dbedb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$decryptCredentials$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$getGenericPassword$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$getGenericPassword$1.class
+new file mode 100644
+index 0000000..7873969
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$getGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class
+new file mode 100644
+index 0000000..029d980
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$setGenericPassword$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$setGenericPassword$1.class
+new file mode 100644
+index 0000000..1303b35
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule$setGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule.class
+new file mode 100644
+index 0000000..1b68294
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainModule.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainPackage.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainPackage.class
+new file mode 100644
+index 0000000..17293cb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/KeychainPackage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase$Companion.class
+new file mode 100644
+index 0000000..8ac5c86
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase$ResultSet.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase$ResultSet.class
+new file mode 100644
+index 0000000..0cce4be
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase$ResultSet.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase.class
+new file mode 100644
+index 0000000..8ce35ea
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/PrefsStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/SecurityLevel.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/SecurityLevel.class
+new file mode 100644
+index 0000000..467702c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/SecurityLevel.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherCache.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherCache.class
+new file mode 100644
+index 0000000..d2ed2b8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherCache.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class
+new file mode 100644
+index 0000000..dc0febb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class
+new file mode 100644
+index 0000000..9635899
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class
+new file mode 100644
+index 0000000..f14ecbe
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage.class
+new file mode 100644
+index 0000000..2b79124
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class
+new file mode 100644
+index 0000000..36ebeb7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class
+new file mode 100644
+index 0000000..9dd73b8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class
+new file mode 100644
+index 0000000..0ca02e9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class
+new file mode 100644
+index 0000000..019455f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase.class
+new file mode 100644
+index 0000000..380c115
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class
+new file mode 100644
+index 0000000..0eec6d2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class
+new file mode 100644
+index 0000000..bd9369f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class
+new file mode 100644
+index 0000000..11f0d74
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class
+new file mode 100644
+index 0000000..d5fc805
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class
+new file mode 100644
+index 0000000..13a86bd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class
+new file mode 100644
+index 0000000..ada9e1e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class
+new file mode 100644
+index 0000000..b36f9af
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class
+new file mode 100644
+index 0000000..a88f411
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class
+new file mode 100644
+index 0000000..c9859bb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/CryptoFailedException.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/CryptoFailedException.class
+new file mode 100644
+index 0000000..fe06c4a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/CryptoFailedException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/EmptyParameterException.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/EmptyParameterException.class
+new file mode 100644
+index 0000000..824e1de
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/EmptyParameterException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/KeyStoreAccessException.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/KeyStoreAccessException.class
+new file mode 100644
+index 0000000..1687665
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/exceptions/KeyStoreAccessException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/CryptoContext.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/CryptoContext.class
+new file mode 100644
+index 0000000..b02e00a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/CryptoContext.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/CryptoOperation.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/CryptoOperation.class
+new file mode 100644
+index 0000000..017134e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/CryptoOperation.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandler.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandler.class
+new file mode 100644
+index 0000000..b344a1c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class
+new file mode 100644
+index 0000000..28a9be2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class
+new file mode 100644
+index 0000000..3abc9b9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class
+new file mode 100644
+index 0000000..f46e8a4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class
+new file mode 100644
+index 0000000..e1f47fd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerProvider.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerProvider.class
+new file mode 100644
+index 0000000..e2f3eae
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/oblador/keychain/resultHandler/ResultHandlerProvider.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/META-INF/react-native-keychain_release.kotlin_module b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/META-INF/react-native-keychain_release.kotlin_module
+new file mode 100644
+index 0000000..c998a4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/META-INF/react-native-keychain_release.kotlin_module differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/BuildConfig.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/BuildConfig.class
+new file mode 100644
+index 0000000..c02b7df
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/BuildConfig.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class
+new file mode 100644
+index 0000000..bbf0778
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class
+new file mode 100644
+index 0000000..e50d3a2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class
+new file mode 100644
+index 0000000..80578a7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class
+new file mode 100644
+index 0000000..e1db780
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class
+new file mode 100644
+index 0000000..88a214f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class
+new file mode 100644
+index 0000000..a74416c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class
+new file mode 100644
+index 0000000..7b70c71
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage.class
+new file mode 100644
+index 0000000..9d676dc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DataStorePrefsStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DeviceAvailability.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DeviceAvailability.class
+new file mode 100644
+index 0000000..73572c0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/DeviceAvailability.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AccessControl$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AccessControl$Companion.class
+new file mode 100644
+index 0000000..a6ba0da
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AccessControl$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AccessControl.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AccessControl.class
+new file mode 100644
+index 0000000..f719f2b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AccessControl.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class
+new file mode 100644
+index 0000000..16c7d2b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AuthPromptOptions.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AuthPromptOptions.class
+new file mode 100644
+index 0000000..ca295a5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$AuthPromptOptions.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Companion.class
+new file mode 100644
+index 0000000..50cf4cb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Errors$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Errors$Companion.class
+new file mode 100644
+index 0000000..87b7f82
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Errors$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Errors.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Errors.class
+new file mode 100644
+index 0000000..7f2250f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Errors.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class
+new file mode 100644
+index 0000000..e30570a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$KnownCiphers.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$KnownCiphers.class
+new file mode 100644
+index 0000000..4aa8c5c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$KnownCiphers.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Maps$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Maps$Companion.class
+new file mode 100644
+index 0000000..b98757e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Maps$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Maps.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Maps.class
+new file mode 100644
+index 0000000..9db1547
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$Maps.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$decryptCredentials$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$decryptCredentials$1.class
+new file mode 100644
+index 0000000..65dbedb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$decryptCredentials$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$getGenericPassword$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$getGenericPassword$1.class
+new file mode 100644
+index 0000000..7873969
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$getGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class
+new file mode 100644
+index 0000000..029d980
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$setGenericPassword$1.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$setGenericPassword$1.class
+new file mode 100644
+index 0000000..1303b35
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule$setGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule.class
+new file mode 100644
+index 0000000..1308f97
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainModule.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainPackage.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainPackage.class
+new file mode 100644
+index 0000000..549867e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/KeychainPackage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase$Companion.class
+new file mode 100644
+index 0000000..def3677
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase$ResultSet.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase$ResultSet.class
+new file mode 100644
+index 0000000..cfa0ced
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase$ResultSet.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase.class
+new file mode 100644
+index 0000000..41564be
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/PrefsStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/SecurityLevel.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/SecurityLevel.class
+new file mode 100644
+index 0000000..3e19b26
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/SecurityLevel.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherCache.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherCache.class
+new file mode 100644
+index 0000000..c281e50
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherCache.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class
+new file mode 100644
+index 0000000..b5d0b32
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class
+new file mode 100644
+index 0000000..1833133
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class
+new file mode 100644
+index 0000000..cfdf246
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage.class
+new file mode 100644
+index 0000000..38dd6da
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class
+new file mode 100644
+index 0000000..587b00e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class
+new file mode 100644
+index 0000000..d935c6f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class
+new file mode 100644
+index 0000000..fd33962
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class
+new file mode 100644
+index 0000000..6b6193c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase.class
+new file mode 100644
+index 0000000..df23a4d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class
+new file mode 100644
+index 0000000..93f43c5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class
+new file mode 100644
+index 0000000..39cbd2b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class
+new file mode 100644
+index 0000000..17a7b8e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class
+new file mode 100644
+index 0000000..67ab103
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class
+new file mode 100644
+index 0000000..83f2a0d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class
+new file mode 100644
+index 0000000..545edda
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class
+new file mode 100644
+index 0000000..f66b177
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class
+new file mode 100644
+index 0000000..c48bbbc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class
+new file mode 100644
+index 0000000..6a51a88
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/CryptoFailedException.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/CryptoFailedException.class
+new file mode 100644
+index 0000000..1d07ac4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/CryptoFailedException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/EmptyParameterException.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/EmptyParameterException.class
+new file mode 100644
+index 0000000..8f4acc8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/EmptyParameterException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/KeyStoreAccessException.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/KeyStoreAccessException.class
+new file mode 100644
+index 0000000..aa361fc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/exceptions/KeyStoreAccessException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/CryptoContext.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/CryptoContext.class
+new file mode 100644
+index 0000000..90731ff
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/CryptoContext.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/CryptoOperation.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/CryptoOperation.class
+new file mode 100644
+index 0000000..c4c0a9c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/CryptoOperation.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandler.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandler.class
+new file mode 100644
+index 0000000..df7c67e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class
+new file mode 100644
+index 0000000..28a9be2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class
+new file mode 100644
+index 0000000..7d6b376
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class
+new file mode 100644
+index 0000000..aa8be52
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class
+new file mode 100644
+index 0000000..d0b537d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerProvider.class b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerProvider.class
+new file mode 100644
+index 0000000..ef88e7a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_dir/release/bundleLibRuntimeToDirRelease/com/oblador/keychain/resultHandler/ResultHandlerProvider.class differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar
+new file mode 100644
+index 0000000..0cb0378
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_jar/release/bundleLibRuntimeToJarRelease/classes.jar b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_jar/release/bundleLibRuntimeToJarRelease/classes.jar
+new file mode 100644
+index 0000000..60574c9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/intermediates/runtime_library_classes_jar/release/bundleLibRuntimeToJarRelease/classes.jar differ
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-keychain/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
+new file mode 100644
+index 0000000..af33b8f
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
+@@ -0,0 +1 @@
++com.oblador.keychain
+diff --git a/node_modules/react-native-keychain/android/build/intermediates/symbol_list_with_package_name/release/generateReleaseRFile/package-aware-r.txt b/node_modules/react-native-keychain/android/build/intermediates/symbol_list_with_package_name/release/generateReleaseRFile/package-aware-r.txt
+new file mode 100644
+index 0000000..af33b8f
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/intermediates/symbol_list_with_package_name/release/generateReleaseRFile/package-aware-r.txt
+@@ -0,0 +1 @@
++com.oblador.keychain
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
+new file mode 100644
+index 0000000..d4afbc0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
+new file mode 100644
+index 0000000..23d2d5e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
+new file mode 100644
+index 0000000..3b4c872
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
+new file mode 100644
+index 0000000..a5c2174
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
+new file mode 100644
+index 0000000..b6a845e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
+new file mode 100644
+index 0000000..6c09de3
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
+new file mode 100644
+index 0000000..e8b0290
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
+new file mode 100644
+index 0000000..84319e0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
+new file mode 100644
+index 0000000..b4da131
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
+new file mode 100644
+index 0000000..664a08f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
+new file mode 100644
+index 0000000..a18f8dd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
+new file mode 100644
+index 0000000..3fbd511
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
+new file mode 100644
+index 0000000..e8b0290
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
+new file mode 100644
+index 0000000..84319e0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
+new file mode 100644
+index 0000000..b4da131
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
+new file mode 100644
+index 0000000..ef09a05
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
+new file mode 100644
+index 0000000..a18f8dd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab
+new file mode 100644
+index 0000000..7587015
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream
+new file mode 100644
+index 0000000..e54106d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len
+new file mode 100644
+index 0000000..b35bf90
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len
+new file mode 100644
+index 0000000..14f7c06
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at
+new file mode 100644
+index 0000000..4c2ff39
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i
+new file mode 100644
+index 0000000..93360e4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
+new file mode 100644
+index 0000000..368604d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
+new file mode 100644
+index 0000000..6c869a4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
+new file mode 100644
+index 0000000..3ccf19d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
+new file mode 100644
+index 0000000..8f5a4cf
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
+new file mode 100644
+index 0000000..ec86e6d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
+new file mode 100644
+index 0000000..2b3232b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
+new file mode 100644
+index 0000000..aa3f9de
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
+new file mode 100644
+index 0000000..cb1501a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
+new file mode 100644
+index 0000000..b7f92d5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
+new file mode 100644
+index 0000000..31ed51e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values
+new file mode 100644
+index 0000000..8a92ba2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
+new file mode 100644
+index 0000000..80b97da
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
+new file mode 100644
+index 0000000..f928343
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
+@@ -0,0 +1 @@
++Ѱ
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
+new file mode 100644
+index 0000000..74d2ed4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
+new file mode 100644
+index 0000000..ecc03e5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
+new file mode 100644
+index 0000000..23d2d5e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
+new file mode 100644
+index 0000000..3b4c872
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
+new file mode 100644
+index 0000000..cdc4efe
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
+new file mode 100644
+index 0000000..b6a845e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab
+new file mode 100644
+index 0000000..aaed513
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream
+new file mode 100644
+index 0000000..270b48b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
+new file mode 100644
+index 0000000..bff9925
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len
+new file mode 100644
+index 0000000..6f677df
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at
+new file mode 100644
+index 0000000..43a318e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i
+new file mode 100644
+index 0000000..8d3fcd0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab
+new file mode 100644
+index 0000000..76663ed
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream
+new file mode 100644
+index 0000000..375ed1f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
+new file mode 100644
+index 0000000..3353577
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len
+new file mode 100644
+index 0000000..c14ff15
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at
+new file mode 100644
+index 0000000..84df0b9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i
+new file mode 100644
+index 0000000..a9f7c67
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
+new file mode 100644
+index 0000000..e90afe8
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
+@@ -0,0 +1,2 @@
++20
++0
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
+new file mode 100644
+index 0000000..bd25e37
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
+new file mode 100644
+index 0000000..23d2d5e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
+new file mode 100644
+index 0000000..3b4c872
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
+new file mode 100644
+index 0000000..6560d17
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
+new file mode 100644
+index 0000000..b6a845e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
+new file mode 100644
+index 0000000..2cff4fc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
+new file mode 100644
+index 0000000..173226a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
+new file mode 100644
+index 0000000..c2e8349
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
+new file mode 100644
+index 0000000..c7421a9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
+new file mode 100644
+index 0000000..241ea8a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab
+new file mode 100644
+index 0000000..48f3b10
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
+new file mode 100644
+index 0000000..83e8fda
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
+new file mode 100644
+index 0000000..47b1387
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
+new file mode 100644
+index 0000000..61269b5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
+new file mode 100644
+index 0000000..7a9c2b0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
+new file mode 100644
+index 0000000..33dbca9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin
+new file mode 100644
+index 0000000..2a2a87c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin
+new file mode 100644
+index 0000000..bf3a419
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
+new file mode 100644
+index 0000000..5800290
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
+new file mode 100644
+index 0000000..23d2d5e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
+new file mode 100644
+index 0000000..3b4c872
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
+new file mode 100644
+index 0000000..bea4a24
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
+new file mode 100644
+index 0000000..b6a845e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
+new file mode 100644
+index 0000000..6c09de3
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
+new file mode 100644
+index 0000000..e8b0290
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
+new file mode 100644
+index 0000000..84319e0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
+new file mode 100644
+index 0000000..b4da131
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
+new file mode 100644
+index 0000000..664a08f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
+new file mode 100644
+index 0000000..a18f8dd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
+new file mode 100644
+index 0000000..3fbd511
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
+new file mode 100644
+index 0000000..e8b0290
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
+new file mode 100644
+index 0000000..84319e0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
+new file mode 100644
+index 0000000..b4da131
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
+new file mode 100644
+index 0000000..ef09a05
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
+new file mode 100644
+index 0000000..a18f8dd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab
+new file mode 100644
+index 0000000..7587015
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream
+new file mode 100644
+index 0000000..e54106d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len
+new file mode 100644
+index 0000000..b35bf90
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len
+new file mode 100644
+index 0000000..14f7c06
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at
+new file mode 100644
+index 0000000..4c2ff39
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i
+new file mode 100644
+index 0000000..93360e4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
+new file mode 100644
+index 0000000..368604d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
+new file mode 100644
+index 0000000..6c869a4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
+new file mode 100644
+index 0000000..3ccf19d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
+new file mode 100644
+index 0000000..8f5a4cf
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
+new file mode 100644
+index 0000000..ec86e6d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
+new file mode 100644
+index 0000000..2b3232b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
+new file mode 100644
+index 0000000..2f99cbb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
+new file mode 100644
+index 0000000..cb1501a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
+new file mode 100644
+index 0000000..b7f92d5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
+new file mode 100644
+index 0000000..31ed51e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values
+new file mode 100644
+index 0000000..02ca72f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
+new file mode 100644
+index 0000000..d65b3e1
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
+new file mode 100644
+index 0000000..a70de89
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
+@@ -0,0 +1 @@
++ï¯
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
+new file mode 100644
+index 0000000..74d2ed4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
+new file mode 100644
+index 0000000..ecc03e5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
+new file mode 100644
+index 0000000..23d2d5e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
+new file mode 100644
+index 0000000..3b4c872
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
+new file mode 100644
+index 0000000..cdc4efe
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
+new file mode 100644
+index 0000000..b6a845e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab
+new file mode 100644
+index 0000000..aaed513
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream
+new file mode 100644
+index 0000000..270b48b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
+new file mode 100644
+index 0000000..bff9925
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len
+new file mode 100644
+index 0000000..6f677df
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at
+new file mode 100644
+index 0000000..43a318e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i
+new file mode 100644
+index 0000000..8d3fcd0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab
+new file mode 100644
+index 0000000..76663ed
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream
+new file mode 100644
+index 0000000..375ed1f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
+new file mode 100644
+index 0000000..3353577
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len
+new file mode 100644
+index 0000000..c14ff15
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at
+new file mode 100644
+index 0000000..84df0b9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i
+new file mode 100644
+index 0000000..a9f7c67
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab
+new file mode 100644
+index 0000000..e90afe8
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab
+@@ -0,0 +1,2 @@
++20
++0
+\ No newline at end of file
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
+new file mode 100644
+index 0000000..bd25e37
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
+new file mode 100644
+index 0000000..23d2d5e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
+new file mode 100644
+index 0000000..3b4c872
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
+new file mode 100644
+index 0000000..6560d17
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
+new file mode 100644
+index 0000000..b6a845e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
+new file mode 100644
+index 0000000..2cff4fc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
+new file mode 100644
+index 0000000..173226a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
+new file mode 100644
+index 0000000..c2e8349
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
+new file mode 100644
+index 0000000..8fe89d8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
+new file mode 100644
+index 0000000..c7421a9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
+new file mode 100644
+index 0000000..241ea8a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab
+new file mode 100644
+index 0000000..48f3b10
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
+new file mode 100644
+index 0000000..83e8fda
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
+new file mode 100644
+index 0000000..47b1387
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
+new file mode 100644
+index 0000000..61269b5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
+new file mode 100644
+index 0000000..7a9c2b0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
+new file mode 100644
+index 0000000..33dbca9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
+new file mode 100644
+index 0000000..131e265
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin
+new file mode 100644
+index 0000000..a1f2380
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin
+new file mode 100644
+index 0000000..20b87f8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/local-state/build-history.bin b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/local-state/build-history.bin
+new file mode 100644
+index 0000000..e6c5712
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/kotlin/compileReleaseKotlin/local-state/build-history.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/outputs/aar/react-native-keychain-debug.aar b/node_modules/react-native-keychain/android/build/outputs/aar/react-native-keychain-debug.aar
+new file mode 100644
+index 0000000..543c0c9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/outputs/aar/react-native-keychain-debug.aar differ
+diff --git a/node_modules/react-native-keychain/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-keychain/android/build/outputs/logs/manifest-merger-debug-report.txt
+new file mode 100644
+index 0000000..f7d602e
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/outputs/logs/manifest-merger-debug-report.txt
+@@ -0,0 +1,29 @@
++-- Merging decision tree log ---
++manifest
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:1:1-11:12
++INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:1:1-11:12
++ package
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:3:3-33
++ INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml
++ xmlns:tools
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:4:3-49
++ xmlns:android
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:2:3-61
++uses-sdk
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++ tools:overrideLibrary
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:13-55
++ android:targetSdkVersion
++ INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml
++ android:minSdkVersion
++ INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml
++uses-permission#android.permission.USE_BIOMETRIC
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:3-70
++ android:name
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:20-67
++uses-permission#android.permission.USE_FINGERPRINT
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:3-72
++ android:name
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:20-69
+diff --git a/node_modules/react-native-keychain/android/build/outputs/logs/manifest-merger-release-report.txt b/node_modules/react-native-keychain/android/build/outputs/logs/manifest-merger-release-report.txt
+new file mode 100644
+index 0000000..f7d602e
+--- /dev/null
++++ b/node_modules/react-native-keychain/android/build/outputs/logs/manifest-merger-release-report.txt
+@@ -0,0 +1,29 @@
++-- Merging decision tree log ---
++manifest
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:1:1-11:12
++INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:1:1-11:12
++ package
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:3:3-33
++ INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml
++ xmlns:tools
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:4:3-49
++ xmlns:android
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:2:3-61
++uses-sdk
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:3-58
++ tools:overrideLibrary
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:7:13-55
++ android:targetSdkVersion
++ INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml
++ android:minSdkVersion
++ INJECTED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml
++uses-permission#android.permission.USE_BIOMETRIC
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:3-70
++ android:name
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:8:20-67
++uses-permission#android.permission.USE_FINGERPRINT
++ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:3-72
++ android:name
++ ADDED from /Users/seshanth/code/self/self/app/node_modules/react-native-keychain/android/src/main/AndroidManifest.xml:9:20-69
+diff --git a/node_modules/react-native-keychain/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-keychain/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
+new file mode 100644
+index 0000000..9c8c718
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/compileReleaseJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-keychain/android/build/tmp/compileReleaseJavaWithJavac/previous-compilation-data.bin
+new file mode 100644
+index 0000000..0f95af9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/compileReleaseJavaWithJavac/previous-compilation-data.bin differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/META-INF/react-native-keychain_debug.kotlin_module b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/META-INF/react-native-keychain_debug.kotlin_module
+new file mode 100644
+index 0000000..c998a4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/META-INF/react-native-keychain_debug.kotlin_module differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class
+new file mode 100644
+index 0000000..bbf0778
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class
+new file mode 100644
+index 0000000..e50d3a2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class
+new file mode 100644
+index 0000000..80578a7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class
+new file mode 100644
+index 0000000..e1db780
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class
+new file mode 100644
+index 0000000..88a214f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class
+new file mode 100644
+index 0000000..a74416c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class
+new file mode 100644
+index 0000000..7b70c71
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage.class
+new file mode 100644
+index 0000000..b987e80
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DataStorePrefsStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DeviceAvailability.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DeviceAvailability.class
+new file mode 100644
+index 0000000..4893068
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/DeviceAvailability.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AccessControl$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AccessControl$Companion.class
+new file mode 100644
+index 0000000..f97a4b0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AccessControl$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AccessControl.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AccessControl.class
+new file mode 100644
+index 0000000..fd6cb4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AccessControl.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class
+new file mode 100644
+index 0000000..0d60449
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AuthPromptOptions.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AuthPromptOptions.class
+new file mode 100644
+index 0000000..53f9852
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$AuthPromptOptions.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Companion.class
+new file mode 100644
+index 0000000..12dd78d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Errors$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Errors$Companion.class
+new file mode 100644
+index 0000000..08c9df6
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Errors$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Errors.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Errors.class
+new file mode 100644
+index 0000000..1c114e2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Errors.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class
+new file mode 100644
+index 0000000..6193f7b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$KnownCiphers.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$KnownCiphers.class
+new file mode 100644
+index 0000000..5a9feec
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$KnownCiphers.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Maps$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Maps$Companion.class
+new file mode 100644
+index 0000000..f0673aa
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Maps$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Maps.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Maps.class
+new file mode 100644
+index 0000000..61677a2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$Maps.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$decryptCredentials$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$decryptCredentials$1.class
+new file mode 100644
+index 0000000..65dbedb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$decryptCredentials$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$getGenericPassword$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$getGenericPassword$1.class
+new file mode 100644
+index 0000000..7873969
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$getGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class
+new file mode 100644
+index 0000000..029d980
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$setGenericPassword$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$setGenericPassword$1.class
+new file mode 100644
+index 0000000..1303b35
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule$setGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule.class
+new file mode 100644
+index 0000000..1b68294
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainModule.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainPackage.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainPackage.class
+new file mode 100644
+index 0000000..17293cb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/KeychainPackage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase$Companion.class
+new file mode 100644
+index 0000000..8ac5c86
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase$ResultSet.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase$ResultSet.class
+new file mode 100644
+index 0000000..0cce4be
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase$ResultSet.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase.class
+new file mode 100644
+index 0000000..8ce35ea
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/PrefsStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/SecurityLevel.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/SecurityLevel.class
+new file mode 100644
+index 0000000..467702c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/SecurityLevel.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherCache.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherCache.class
+new file mode 100644
+index 0000000..d2ed2b8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherCache.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class
+new file mode 100644
+index 0000000..dc0febb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class
+new file mode 100644
+index 0000000..9635899
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class
+new file mode 100644
+index 0000000..f14ecbe
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage.class
+new file mode 100644
+index 0000000..2b79124
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class
+new file mode 100644
+index 0000000..36ebeb7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class
+new file mode 100644
+index 0000000..9dd73b8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class
+new file mode 100644
+index 0000000..0ca02e9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class
+new file mode 100644
+index 0000000..019455f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase.class
+new file mode 100644
+index 0000000..380c115
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class
+new file mode 100644
+index 0000000..0eec6d2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class
+new file mode 100644
+index 0000000..bd9369f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class
+new file mode 100644
+index 0000000..11f0d74
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class
+new file mode 100644
+index 0000000..d5fc805
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class
+new file mode 100644
+index 0000000..13a86bd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class
+new file mode 100644
+index 0000000..ada9e1e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class
+new file mode 100644
+index 0000000..b36f9af
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class
+new file mode 100644
+index 0000000..a88f411
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class
+new file mode 100644
+index 0000000..c9859bb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/CryptoFailedException.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/CryptoFailedException.class
+new file mode 100644
+index 0000000..fe06c4a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/CryptoFailedException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/EmptyParameterException.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/EmptyParameterException.class
+new file mode 100644
+index 0000000..824e1de
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/EmptyParameterException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/KeyStoreAccessException.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/KeyStoreAccessException.class
+new file mode 100644
+index 0000000..1687665
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/exceptions/KeyStoreAccessException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/CryptoContext.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/CryptoContext.class
+new file mode 100644
+index 0000000..b02e00a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/CryptoContext.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/CryptoOperation.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/CryptoOperation.class
+new file mode 100644
+index 0000000..017134e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/CryptoOperation.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandler.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandler.class
+new file mode 100644
+index 0000000..b344a1c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class
+new file mode 100644
+index 0000000..28a9be2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class
+new file mode 100644
+index 0000000..3abc9b9
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class
+new file mode 100644
+index 0000000..f46e8a4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class
+new file mode 100644
+index 0000000..e1f47fd
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerProvider.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerProvider.class
+new file mode 100644
+index 0000000..e2f3eae
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/debug/com/oblador/keychain/resultHandler/ResultHandlerProvider.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/META-INF/react-native-keychain_release.kotlin_module b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/META-INF/react-native-keychain_release.kotlin_module
+new file mode 100644
+index 0000000..c998a4c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/META-INF/react-native-keychain_release.kotlin_module differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class
+new file mode 100644
+index 0000000..bbf0778
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$callSuspendable$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class
+new file mode 100644
+index 0000000..e50d3a2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$prefs$2.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class
+new file mode 100644
+index 0000000..80578a7
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$prefsData$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class
+new file mode 100644
+index 0000000..e1db780
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class
+new file mode 100644
+index 0000000..88a214f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$removeEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class
+new file mode 100644
+index 0000000..a74416c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class
+new file mode 100644
+index 0000000..7b70c71
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage$storeEncryptedEntry$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage.class
+new file mode 100644
+index 0000000..9d676dc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DataStorePrefsStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DeviceAvailability.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DeviceAvailability.class
+new file mode 100644
+index 0000000..73572c0
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/DeviceAvailability.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AccessControl$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AccessControl$Companion.class
+new file mode 100644
+index 0000000..a6ba0da
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AccessControl$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AccessControl.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AccessControl.class
+new file mode 100644
+index 0000000..f719f2b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AccessControl.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class
+new file mode 100644
+index 0000000..16c7d2b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AuthPromptOptions$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AuthPromptOptions.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AuthPromptOptions.class
+new file mode 100644
+index 0000000..ca295a5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$AuthPromptOptions.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Companion.class
+new file mode 100644
+index 0000000..50cf4cb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Errors$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Errors$Companion.class
+new file mode 100644
+index 0000000..87b7f82
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Errors$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Errors.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Errors.class
+new file mode 100644
+index 0000000..7f2250f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Errors.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class
+new file mode 100644
+index 0000000..e30570a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$KnownCiphers$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$KnownCiphers.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$KnownCiphers.class
+new file mode 100644
+index 0000000..4aa8c5c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$KnownCiphers.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Maps$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Maps$Companion.class
+new file mode 100644
+index 0000000..b98757e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Maps$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Maps.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Maps.class
+new file mode 100644
+index 0000000..9db1547
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$Maps.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$decryptCredentials$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$decryptCredentials$1.class
+new file mode 100644
+index 0000000..65dbedb
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$decryptCredentials$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$getGenericPassword$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$getGenericPassword$1.class
+new file mode 100644
+index 0000000..7873969
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$getGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class
+new file mode 100644
+index 0000000..029d980
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$migrateCipherStorage$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$setGenericPassword$1.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$setGenericPassword$1.class
+new file mode 100644
+index 0000000..1303b35
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule$setGenericPassword$1.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule.class
+new file mode 100644
+index 0000000..1308f97
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainModule.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainPackage.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainPackage.class
+new file mode 100644
+index 0000000..549867e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/KeychainPackage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase$Companion.class
+new file mode 100644
+index 0000000..def3677
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase$ResultSet.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase$ResultSet.class
+new file mode 100644
+index 0000000..cfa0ced
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase$ResultSet.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase.class
+new file mode 100644
+index 0000000..41564be
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/PrefsStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/SecurityLevel.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/SecurityLevel.class
+new file mode 100644
+index 0000000..3e19b26
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/SecurityLevel.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherCache.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherCache.class
+new file mode 100644
+index 0000000..c281e50
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherCache.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class
+new file mode 100644
+index 0000000..b5d0b32
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$CipherResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class
+new file mode 100644
+index 0000000..1833133
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$DecryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class
+new file mode 100644
+index 0000000..cfdf246
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage$EncryptionResult.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage.class
+new file mode 100644
+index 0000000..38dd6da
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorage.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class
+new file mode 100644
+index 0000000..587b00e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class
+new file mode 100644
+index 0000000..d935c6f
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$DecryptBytesHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class
+new file mode 100644
+index 0000000..fd33962
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$Defaults.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class
+new file mode 100644
+index 0000000..6b6193c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase$EncryptStringHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase.class
+new file mode 100644
+index 0000000..df23a4d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageBase.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class
+new file mode 100644
+index 0000000..93f43c5
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class
+new file mode 100644
+index 0000000..39cbd2b
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class
+new file mode 100644
+index 0000000..17a7b8e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class
+new file mode 100644
+index 0000000..67ab103
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class
+new file mode 100644
+index 0000000..83f2a0d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm$IV.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class
+new file mode 100644
+index 0000000..545edda
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class
+new file mode 100644
+index 0000000..f66b177
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class
+new file mode 100644
+index 0000000..c48bbbc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class
+new file mode 100644
+index 0000000..6a51a88
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/CryptoFailedException$Companion.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/CryptoFailedException.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/CryptoFailedException.class
+new file mode 100644
+index 0000000..1d07ac4
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/CryptoFailedException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/EmptyParameterException.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/EmptyParameterException.class
+new file mode 100644
+index 0000000..8f4acc8
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/EmptyParameterException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/KeyStoreAccessException.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/KeyStoreAccessException.class
+new file mode 100644
+index 0000000..aa361fc
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/exceptions/KeyStoreAccessException.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/CryptoContext.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/CryptoContext.class
+new file mode 100644
+index 0000000..90731ff
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/CryptoContext.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/CryptoOperation.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/CryptoOperation.class
+new file mode 100644
+index 0000000..c4c0a9c
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/CryptoOperation.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandler.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandler.class
+new file mode 100644
+index 0000000..df7c67e
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandler.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class
+new file mode 100644
+index 0000000..28a9be2
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric$WhenMappings.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class
+new file mode 100644
+index 0000000..7d6b376
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometric.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class
+new file mode 100644
+index 0000000..aa8be52
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerInteractiveBiometricManualRetry.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class
+new file mode 100644
+index 0000000..d0b537d
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerNonInteractive.class differ
+diff --git a/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerProvider.class b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerProvider.class
+new file mode 100644
+index 0000000..ef88e7a
+Binary files /dev/null and b/node_modules/react-native-keychain/android/build/tmp/kotlin-classes/release/com/oblador/keychain/resultHandler/ResultHandlerProvider.class differ
+diff --git a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/KeychainModule.kt b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/KeychainModule.kt
+index 722a5ed..7917dbf 100644
+--- a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/KeychainModule.kt
++++ b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/KeychainModule.kt
+@@ -86,6 +86,7 @@ class KeychainModule(reactContext: ReactApplicationContext) :
+ const val USERNAME = "username"
+ const val PASSWORD = "password"
+ const val STORAGE = "storage"
++ const val USE_STRONGBOX = "useStrongBox"
+ }
+ }
+
+@@ -191,8 +192,9 @@ class KeychainModule(reactContext: ReactApplicationContext) :
+ val useBiometry =
+ getUseBiometry(accessControl) && (isFingerprintAuthAvailable || isFaceAuthAvailable || isIrisAuthAvailable)
+ val promptInfo = getPromptInfo(options, usePasscode, useBiometry)
++ val useStrongBox = getUseStrongBoxOrDefault(options)
+ val result =
+- encryptToResult(alias, storage, username, password, level, promptInfo)
++ encryptToResult(alias, storage, username, password, level, promptInfo, useStrongBox)
+ prefsStorage.storeEncryptedEntry(alias, result)
+ val results = Arguments.createMap()
+ results.putString(Maps.SERVICE, alias)
+@@ -502,10 +504,11 @@ class KeychainModule(reactContext: ReactApplicationContext) :
+ username: String,
+ password: String,
+ securityLevel: SecurityLevel,
+- promptInfo: PromptInfo
++ promptInfo: PromptInfo,
++ useStrongBox: Boolean
+ ): CipherStorage.EncryptionResult {
+ val handler = getInteractiveHandler(storage, promptInfo)
+- storage.encrypt(handler, alias, username, password, securityLevel)
++ storage.encrypt(handler, alias, username, password, securityLevel, useStrongBox)
+ CryptoFailedException.reThrowOnError(handler.error)
+ if (null == handler.encryptionResult) {
+ throw CryptoFailedException("No decryption results and no error. Something deeply wrong!")
+@@ -534,7 +537,8 @@ class KeychainModule(reactContext: ReactApplicationContext) :
+ newCipherStorage: CipherStorage,
+ oldCipherStorage: CipherStorage,
+ decryptionResult: DecryptionResult,
+- promptInfo: PromptInfo
++ promptInfo: PromptInfo,
++ useStrongBox: Boolean = true
+ ) {
+
+ val username =
+@@ -549,7 +553,8 @@ class KeychainModule(reactContext: ReactApplicationContext) :
+ username,
+ password,
+ decryptionResult.getSecurityLevel(),
+- promptInfo
++ promptInfo,
++ useStrongBox
+ )
+
+ // store the encryption result
+@@ -716,6 +721,14 @@ class KeychainModule(reactContext: ReactApplicationContext) :
+ return SecurityLevel.valueOf(minimalSecurityLevel)
+ }
+
++ /** Get useStrongBox value from options or fallback to true (default). */
++ private fun getUseStrongBoxOrDefault(options: ReadableMap?): Boolean {
++ if (null != options && options.hasKey(Maps.USE_STRONGBOX)) {
++ return options.getBoolean(Maps.USE_STRONGBOX)
++ }
++ return true // Default: attempt StrongBox
++ }
++
+ // endregion
+ // region Implementation
+
+diff --git a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorage.kt b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorage.kt
+index 2be2286..a3211a0 100644
+--- a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorage.kt
++++ b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorage.kt
+@@ -53,7 +53,8 @@ interface CipherStorage {
+ alias: String,
+ username: String,
+ password: String,
+- level: SecurityLevel
++ level: SecurityLevel,
++ useStrongBox: Boolean = true
+ )
+
+
+diff --git a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageBase.kt b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageBase.kt
+index adc9c00..b260e5f 100644
+--- a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageBase.kt
++++ b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageBase.kt
+@@ -178,7 +178,8 @@ abstract class CipherStorageBase(protected val applicationContext: Context) : Ci
+ protected fun extractGeneratedKey(
+ safeAlias: String,
+ level: SecurityLevel,
+- retries: AtomicInteger
++ retries: AtomicInteger,
++ useStrongBox: Boolean = true
+ ): Key {
+ var key: Key?
+ do {
+@@ -186,7 +187,7 @@ abstract class CipherStorageBase(protected val applicationContext: Context) : Ci
+ // Check if the key exists
+ if (!keyStore.containsAlias(safeAlias)) {
+ // Key does not exist, generate a new one
+- generateKeyAndStoreUnderAlias(safeAlias, level)
++ generateKeyAndStoreUnderAlias(safeAlias, level, useStrongBox)
+ } else {
+ // Key exists, check if it's compatible
+ key = keyStore.getKey(safeAlias, null)
+@@ -203,7 +204,7 @@ abstract class CipherStorageBase(protected val applicationContext: Context) : Ci
+ // Key is not compatible, delete it
+ keyStore.deleteEntry(safeAlias)
+ // Generate a new compatible key
+- generateKeyAndStoreUnderAlias(safeAlias, level)
++ generateKeyAndStoreUnderAlias(safeAlias, level, useStrongBox)
+ key = null // Set key to null to retry the loop
+ continue
+ }
+@@ -373,14 +374,19 @@ abstract class CipherStorageBase(protected val applicationContext: Context) : Ci
+
+ /** Get the most secured keystore */
+ @Throws(GeneralSecurityException::class)
+- fun generateKeyAndStoreUnderAlias(alias: String, requiredLevel: SecurityLevel) {
++ fun generateKeyAndStoreUnderAlias(
++ alias: String,
++ requiredLevel: SecurityLevel,
++ useStrongBox: Boolean = true
++ ) {
+ // Firstly, try to generate the key as safe as possible (strongbox).
+ // see https://developer.android.com/training/articles/keystore#HardwareSecurityModule
+
+ var secretKey: Key? = null
+ val supportsSecureHardware = DeviceAvailability.isStrongboxAvailable(applicationContext)
+
+- if (supportsSecureHardware) {
++ // Only attempt StrongBox if flag is true
++ if (useStrongBox && supportsSecureHardware) {
+ try {
+ secretKey = tryGenerateStrongBoxSecurityKey(alias)
+ } catch (ex: GeneralSecurityException) {
+diff --git a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.kt b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.kt
+index 98c399f..13a98f1 100644
+--- a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.kt
++++ b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesCbc.kt
+@@ -80,7 +80,8 @@ class CipherStorageKeystoreAesCbc(reactContext: ReactApplicationContext) :
+ alias: String,
+ username: String,
+ password: String,
+- level: SecurityLevel
++ level: SecurityLevel,
++ useStrongBox: Boolean
+ ) {
+
+ throwIfInsufficientLevel(level)
+@@ -89,7 +90,7 @@ class CipherStorageKeystoreAesCbc(reactContext: ReactApplicationContext) :
+ val retries = AtomicInteger(1)
+
+ try {
+- val key = extractGeneratedKey(safeAlias, level, retries)
++ val key = extractGeneratedKey(safeAlias, level, retries, useStrongBox)
+
+ val result = CipherStorage.EncryptionResult(
+ encryptString(key, username), encryptString(key, password), this
+diff --git a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.kt b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.kt
+index 6b6e626..c79fdbf 100644
+--- a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.kt
++++ b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreAesGcm.kt
+@@ -79,7 +79,8 @@ class CipherStorageKeystoreAesGcm(
+ alias: String,
+ username: String,
+ password: String,
+- level: SecurityLevel
++ level: SecurityLevel,
++ useStrongBox: Boolean
+ ) {
+
+ throwIfInsufficientLevel(level)
+@@ -89,7 +90,7 @@ class CipherStorageKeystoreAesGcm(
+ var key: Key? = null
+
+ try {
+- key = extractGeneratedKey(safeAlias, level, retries)
++ key = extractGeneratedKey(safeAlias, level, retries, useStrongBox)
+
+ val result = CipherStorage.EncryptionResult(
+ encryptString(key, username), encryptString(key, password), this
+diff --git a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.kt b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.kt
+index fc8ebf1..8951d92 100644
+--- a/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.kt
++++ b/node_modules/react-native-keychain/android/src/main/java/com/oblador/keychain/cipherStorage/CipherStorageKeystoreRsaEcb.kt
+@@ -55,14 +55,15 @@ class CipherStorageKeystoreRsaEcb(reactContext: ReactApplicationContext) :
+ alias: String,
+ username: String,
+ password: String,
+- level: SecurityLevel
++ level: SecurityLevel,
++ useStrongBox: Boolean
+ ) {
+ throwIfInsufficientLevel(level)
+
+ val safeAlias = getDefaultAliasIfEmpty(alias, getDefaultAliasServiceName())
+ val retries = AtomicInteger(1)
+ try {
+- extractGeneratedKey(safeAlias, level, retries)
++ extractGeneratedKey(safeAlias, level, retries, useStrongBox)
+ val result = innerEncryptedCredentials(safeAlias, password, username)
+ handler.onEncrypt(result, null)
+ } catch (e: Exception) {
+diff --git a/node_modules/react-native-keychain/src/types.ts b/node_modules/react-native-keychain/src/types.ts
+index 00448d3..987fe62 100644
+--- a/node_modules/react-native-keychain/src/types.ts
++++ b/node_modules/react-native-keychain/src/types.ts
+@@ -58,6 +58,11 @@ export type SetOptions = {
+ * @default 'Best available storage'
+ */
+ storage?: STORAGE_TYPE;
++ /** Whether to attempt StrongBox-backed key generation.
++ * @platform Android
++ * @default true
++ */
++ useStrongBox?: boolean;
+ /** Authentication prompt details or a title string.
+ * @default
+ * ```json