diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/models/SwapPermissionStateHolder.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/models/SwapPermissionStateHolder.kt
index 0fd2f4fef7..2ec47f7595 100644
--- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/models/SwapPermissionStateHolder.kt
+++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/models/SwapPermissionStateHolder.kt
@@ -25,5 +25,4 @@ data class ApprovePermissionButton(
data class CancelPermissionButton(
val enabled: Boolean,
- val onClick: () -> Unit,
)
\ No newline at end of file
diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/presentation/SwapFragment.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/presentation/SwapFragment.kt
index d74ac54e33..5b78f92a71 100644
--- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/presentation/SwapFragment.kt
+++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/presentation/SwapFragment.kt
@@ -4,7 +4,6 @@ import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
-import androidx.activity.OnBackPressedCallback
import androidx.compose.animation.Crossfade
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.ComposeView
@@ -12,8 +11,8 @@ import androidx.core.view.WindowCompat
import androidx.fragment.app.Fragment
import androidx.fragment.app.viewModels
import com.tangem.feature.swap.router.CustomTabsManager
+import com.tangem.feature.swap.router.SwapNavScreen
import com.tangem.feature.swap.router.SwapRouter
-import com.tangem.feature.swap.router.SwapScreen
import com.tangem.feature.swap.ui.SwapScreen
import com.tangem.feature.swap.ui.SwapSelectTokenScreen
import com.tangem.feature.swap.ui.SwapSuccessScreen
@@ -36,15 +35,6 @@ class SwapFragment : Fragment() {
)
viewModel.onScreenOpened()
- activity?.onBackPressedDispatcher?.addCallback(
- viewLifecycleOwner,
- object : OnBackPressedCallback(true) {
- override fun handleOnBackPressed() {
- viewModel.uiState.onBackClicked()
- }
- },
- )
-
return ComposeView(inflater.context).apply {
setContent {
ScreenContent(viewModel = viewModel)
@@ -57,8 +47,8 @@ class SwapFragment : Fragment() {
private fun ScreenContent(viewModel: SwapViewModel) {
Crossfade(targetState = viewModel.currentScreen) { screen ->
when (screen) {
- SwapScreen.Main -> SwapScreen(stateHolder = viewModel.uiState)
- SwapScreen.Success -> {
+ SwapNavScreen.Main -> SwapScreen(stateHolder = viewModel.uiState)
+ SwapNavScreen.Success -> {
val successState = viewModel.uiState.successState
if (successState != null) {
SwapSuccessScreen(state = successState, viewModel.uiState.onBackClicked)
@@ -66,7 +56,7 @@ class SwapFragment : Fragment() {
SwapScreen(stateHolder = viewModel.uiState)
}
}
- SwapScreen.SelectToken -> {
+ SwapNavScreen.SelectToken -> {
val tokenState = viewModel.uiState.selectTokenState
if (tokenState != null) {
SwapSelectTokenScreen(
diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/router/SwapRouter.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/router/SwapRouter.kt
index f29bef3bbc..62ce0901c5 100644
--- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/router/SwapRouter.kt
+++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/router/SwapRouter.kt
@@ -11,16 +11,16 @@ internal class SwapRouter(
private val customTabsManager: CustomTabsManager,
) {
- var currentScreen by mutableStateOf(SwapScreen.Main)
+ var currentScreen by mutableStateOf(SwapNavScreen.Main)
private set
- fun openScreen(screen: SwapScreen) {
+ fun openScreen(screen: SwapNavScreen) {
currentScreen = screen
}
fun back() {
- if (currentScreen == SwapScreen.SelectToken) {
- currentScreen = SwapScreen.Main
+ if (currentScreen == SwapNavScreen.SelectToken) {
+ currentScreen = SwapNavScreen.Main
} else {
fragmentManager.get()?.popBackStack()
}
@@ -31,6 +31,6 @@ internal class SwapRouter(
}
}
-enum class SwapScreen {
+enum class SwapNavScreen {
Main, Success, SelectToken
}
\ No newline at end of file
diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt
index 77b3f9517f..b14e55937f 100644
--- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt
+++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt
@@ -241,7 +241,6 @@ internal class StateBuilder(val actions: UiActions) {
),
cancelButton = CancelPermissionButton(
enabled = true,
- onClick = {},
),
)
}
diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapPermissionBottomSheetContent.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapPermissionBottomSheetContent.kt
index e67b98b3da..14933c3004 100644
--- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapPermissionBottomSheetContent.kt
+++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapPermissionBottomSheetContent.kt
@@ -1,6 +1,5 @@
package com.tangem.feature.swap.ui
-import androidx.activity.compose.BackHandler
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
@@ -32,8 +31,6 @@ import com.tangem.feature.swap.presentation.R
@Composable
fun SwapPermissionBottomSheetContent(data: SwapPermissionState.ReadyForRequest, onCancel: () -> Unit) {
- BackHandler(onBack = onCancel)
-
Column(
modifier = Modifier
.background(color = TangemTheme.colors.background.primary)
@@ -83,7 +80,6 @@ fun SwapPermissionBottomSheetContent(data: SwapPermissionState.ReadyForRequest,
text = stringResource(id = R.string.common_cancel),
modifier = Modifier.fillMaxWidth(),
onClick = {
- data.cancelButton.onClick()
onCancel()
},
)
@@ -142,7 +138,7 @@ private fun InformationItem(subtitle: String, value: String) {
text = value,
color = TangemTheme.colors.text.tertiary,
style = TangemTheme.typography.body2,
- modifier = Modifier.padding(start = TangemTheme.dimens.spacing16)
+ modifier = Modifier.padding(start = TangemTheme.dimens.spacing16),
)
}
}
@@ -204,7 +200,7 @@ private val previewData = SwapPermissionState.ReadyForRequest(
spenderAddress = "",
fee = "2,14$",
approveButton = ApprovePermissionButton(true) {},
- cancelButton = CancelPermissionButton(true) {},
+ cancelButton = CancelPermissionButton(true),
)
//endregion preview
\ No newline at end of file
diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreen.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreen.kt
index b907deef8d..2d83679867 100644
--- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreen.kt
+++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreen.kt
@@ -1,10 +1,12 @@
package com.tangem.feature.swap.ui
+import androidx.activity.compose.BackHandler
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.ExperimentalMaterialApi
import androidx.compose.material.ModalBottomSheetLayout
+import androidx.compose.material.ModalBottomSheetState
import androidx.compose.material.ModalBottomSheetValue
import androidx.compose.material.rememberModalBottomSheetState
import androidx.compose.runtime.Composable
@@ -14,6 +16,7 @@ import androidx.compose.ui.Modifier
import com.tangem.core.ui.res.TangemTheme
import com.tangem.feature.swap.models.SwapPermissionState
import com.tangem.feature.swap.models.SwapStateHolder
+import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.launch
@OptIn(ExperimentalMaterialApi::class)
@@ -24,6 +27,15 @@ internal fun SwapScreen(stateHolder: SwapStateHolder) {
initialValue = ModalBottomSheetValue.Hidden,
skipHalfExpanded = true,
)
+ BackHandler(
+ onBack = {
+ if (bottomSheetState.isVisible) {
+ hideBottomSheet(coroutineScope, stateHolder, bottomSheetState)
+ } else {
+ stateHolder.onBackClicked()
+ }
+ },
+ )
TangemTheme {
ModalBottomSheetLayout(
@@ -32,10 +44,7 @@ internal fun SwapScreen(stateHolder: SwapStateHolder) {
SwapPermissionBottomSheetContent(
data = stateHolder.permissionState,
onCancel = {
- coroutineScope.launch {
- stateHolder.onCancelPermissionBottomSheet.invoke()
- bottomSheetState.hide()
- }
+ hideBottomSheet(coroutineScope, stateHolder, bottomSheetState)
},
)
} else {
@@ -72,4 +81,16 @@ internal fun SwapScreen(stateHolder: SwapStateHolder) {
},
)
}
+}
+
+@OptIn(ExperimentalMaterialApi::class)
+private fun hideBottomSheet(
+ coroutineScope: CoroutineScope,
+ stateHolder: SwapStateHolder,
+ bottomSheetState: ModalBottomSheetState,
+) {
+ coroutineScope.launch {
+ stateHolder.onCancelPermissionBottomSheet.invoke()
+ bottomSheetState.hide()
+ }
}
\ No newline at end of file
diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/viewmodels/SwapViewModel.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/viewmodels/SwapViewModel.kt
index 4d19288be4..99ba524bdd 100644
--- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/viewmodels/SwapViewModel.kt
+++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/viewmodels/SwapViewModel.kt
@@ -23,7 +23,7 @@ import com.tangem.feature.swap.models.SwapStateHolder
import com.tangem.feature.swap.models.UiActions
import com.tangem.feature.swap.presentation.SwapFragment
import com.tangem.feature.swap.router.SwapRouter
-import com.tangem.feature.swap.router.SwapScreen
+import com.tangem.feature.swap.router.SwapNavScreen
import com.tangem.feature.swap.ui.StateBuilder
import com.tangem.utils.coroutines.CoroutineDispatcherProvider
import com.tangem.utils.coroutines.Debouncer
@@ -69,7 +69,7 @@ internal class SwapViewModel @Inject constructor(
private var isOrderReversed = false
private val lastAmount = mutableStateOf(INITIAL_AMOUNT)
private var swapRouter: SwapRouter by Delegates.notNull()
- var currentScreen = SwapScreen.Main
+ var currentScreen = SwapNavScreen.Main
get() = swapRouter.currentScreen
init {
@@ -90,11 +90,11 @@ internal class SwapViewModel @Inject constructor(
uiState = uiState.copy(
onBackClicked = router::back,
onSelectTokenClick = {
- router.openScreen(SwapScreen.SelectToken)
+ router.openScreen(SwapNavScreen.SelectToken)
analyticsEventHandler.send(SwapEvents.ChooseTokenScreenOpened)
},
onSuccess = {
- router.openScreen(SwapScreen.Success)
+ router.openScreen(SwapNavScreen.Success)
},
)
}
@@ -235,7 +235,7 @@ internal class SwapViewModel @Inject constructor(
}
}
analyticsEventHandler.send(SwapEvents.SwapInProgressScreen)
- swapRouter.openScreen(SwapScreen.Success)
+ swapRouter.openScreen(SwapNavScreen.Success)
}
else -> {
uiState = stateBuilder.createSwapErrorTransaction(uiState) {
@@ -304,7 +304,7 @@ internal class SwapViewModel @Inject constructor(
toCurrency = toToken,
)
startLoadingQuotes(fromToken, toToken, lastAmount.value)
- swapRouter.openScreen(SwapScreen.Main)
+ swapRouter.openScreen(SwapNavScreen.Main)
}
}
diff --git a/features/swap/presentation/src/main/res/drawable/ill_one_inch_powered.png b/features/swap/presentation/src/main/res/drawable/ill_one_inch_powered.png
index 479442530b..5d53feabb5 100644
Binary files a/features/swap/presentation/src/main/res/drawable/ill_one_inch_powered.png and b/features/swap/presentation/src/main/res/drawable/ill_one_inch_powered.png differ
diff --git a/libs/wallet/walletApi/build/.transforms/1795cb118b7cef47e2c931ba5d811ebc/results.bin b/libs/wallet/walletApi/build/.transforms/1795cb118b7cef47e2c931ba5d811ebc/results.bin
new file mode 100644
index 0000000000..1ed65e03c3
--- /dev/null
+++ b/libs/wallet/walletApi/build/.transforms/1795cb118b7cef47e2c931ba5d811ebc/results.bin
@@ -0,0 +1 @@
+i/
diff --git a/libs/wallet/walletApi/build/.transforms/21448a2c0dd64a128af1b01f509b8c1a/results.bin b/libs/wallet/walletApi/build/.transforms/21448a2c0dd64a128af1b01f509b8c1a/results.bin
new file mode 100644
index 0000000000..1ed65e03c3
--- /dev/null
+++ b/libs/wallet/walletApi/build/.transforms/21448a2c0dd64a128af1b01f509b8c1a/results.bin
@@ -0,0 +1 @@
+i/
diff --git a/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/results.bin b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/results.bin
new file mode 100644
index 0000000000..6e09b8c3cc
--- /dev/null
+++ b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/results.bin
@@ -0,0 +1 @@
+o/out
diff --git a/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/AndroidManifest.xml b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/AndroidManifest.xml
new file mode 100644
index 0000000000..f2ab47ed88
--- /dev/null
+++ b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000000..8c9c6997a3
--- /dev/null
+++ b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minAndroidGradlePluginVersion=1.0.0
diff --git a/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/R.txt b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/R.txt
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/jars/classes.jar b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/jars/classes.jar
new file mode 100644
index 0000000000..6145857f36
Binary files /dev/null and b/libs/wallet/walletApi/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/jars/classes.jar differ
diff --git a/libs/wallet/walletApi/build/.transforms/8d525c87a59148f16951782fd2e5a078/results.bin b/libs/wallet/walletApi/build/.transforms/8d525c87a59148f16951782fd2e5a078/results.bin
new file mode 100644
index 0000000000..0d259ddcb5
--- /dev/null
+++ b/libs/wallet/walletApi/build/.transforms/8d525c87a59148f16951782fd2e5a078/results.bin
@@ -0,0 +1 @@
+o/classes
diff --git a/libs/wallet/walletApi/build/.transforms/8d525c87a59148f16951782fd2e5a078/transformed/classes/classes.dex b/libs/wallet/walletApi/build/.transforms/8d525c87a59148f16951782fd2e5a078/transformed/classes/classes.dex
new file mode 100644
index 0000000000..dfdb37c655
Binary files /dev/null and b/libs/wallet/walletApi/build/.transforms/8d525c87a59148f16951782fd2e5a078/transformed/classes/classes.dex differ
diff --git a/libs/wallet/walletApi/build/.transforms/ae555d7094f85e6b7cc7298b1f21a8e0/results.bin b/libs/wallet/walletApi/build/.transforms/ae555d7094f85e6b7cc7298b1f21a8e0/results.bin
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletApi/build/generated/source/buildConfig/debug_beta/com/tangem/lib/auth/BuildConfig.java b/libs/wallet/walletApi/build/generated/source/buildConfig/debug_beta/com/tangem/lib/auth/BuildConfig.java
new file mode 100644
index 0000000000..d46ec2dc7e
--- /dev/null
+++ b/libs/wallet/walletApi/build/generated/source/buildConfig/debug_beta/com/tangem/lib/auth/BuildConfig.java
@@ -0,0 +1,16 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.tangem.lib.auth;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = false;
+ public static final String LIBRARY_PACKAGE_NAME = "com.tangem.lib.auth";
+ public static final String BUILD_TYPE = "debug_beta";
+ // Field from build type: debug_beta
+ public static final String ENVIRONMENT = "release";
+ // Field from build type: debug_beta
+ public static final Boolean LOG_ENABLED = true;
+ // Field from build type: debug_beta
+ public static final Boolean TEST_ACTION_ENABLED = true;
+}
diff --git a/libs/wallet/walletApi/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/AndroidManifest.xml b/libs/wallet/walletApi/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/AndroidManifest.xml
new file mode 100644
index 0000000000..f2ab47ed88
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/output-metadata.json b/libs/wallet/walletApi/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/output-metadata.json
new file mode 100644
index 0000000000..4129952877
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "com.tangem.lib.auth",
+ "variantName": "debug_beta",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/aar_main_jar/debug_beta/classes.jar b/libs/wallet/walletApi/build/intermediates/aar_main_jar/debug_beta/classes.jar
new file mode 100644
index 0000000000..6145857f36
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/aar_main_jar/debug_beta/classes.jar differ
diff --git a/libs/wallet/walletApi/build/intermediates/aar_metadata/debug_beta/aar-metadata.properties b/libs/wallet/walletApi/build/intermediates/aar_metadata/debug_beta/aar-metadata.properties
new file mode 100644
index 0000000000..8c9c6997a3
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/aar_metadata/debug_beta/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minAndroidGradlePluginVersion=1.0.0
diff --git a/libs/wallet/walletApi/build/intermediates/annotation_processor_list/debug_beta/annotationProcessors.json b/libs/wallet/walletApi/build/intermediates/annotation_processor_list/debug_beta/annotationProcessors.json
new file mode 100644
index 0000000000..9e26dfeeb6
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/annotation_processor_list/debug_beta/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/annotations_typedef_file/debug_beta/typedefs.txt b/libs/wallet/walletApi/build/intermediates/annotations_typedef_file/debug_beta/typedefs.txt
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletApi/build/intermediates/compile_library_classes_jar/debug_beta/classes.jar b/libs/wallet/walletApi/build/intermediates/compile_library_classes_jar/debug_beta/classes.jar
new file mode 100644
index 0000000000..5792c763aa
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/compile_library_classes_jar/debug_beta/classes.jar differ
diff --git a/libs/wallet/walletApi/build/intermediates/compile_r_class_jar/debug_beta/R.jar b/libs/wallet/walletApi/build/intermediates/compile_r_class_jar/debug_beta/R.jar
new file mode 100644
index 0000000000..9d35d78cca
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/compile_r_class_jar/debug_beta/R.jar differ
diff --git a/libs/wallet/walletApi/build/intermediates/compile_symbol_list/debug_beta/R.txt b/libs/wallet/walletApi/build/intermediates/compile_symbol_list/debug_beta/R.txt
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletApi/build/intermediates/full_jar/debug_beta/full.jar b/libs/wallet/walletApi/build/intermediates/full_jar/debug_beta/full.jar
new file mode 100644
index 0000000000..6e42140914
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/full_jar/debug_beta/full.jar differ
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/debug_beta-mergeJavaRes/merge-state b/libs/wallet/walletApi/build/intermediates/incremental/debug_beta-mergeJavaRes/merge-state
new file mode 100644
index 0000000000..db461badc3
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/incremental/debug_beta-mergeJavaRes/merge-state differ
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaJniLibFolders/merger.xml b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaJniLibFolders/merger.xml
new file mode 100644
index 0000000000..480cbe1ceb
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaResources/compile-file-map.properties b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaResources/compile-file-map.properties
new file mode 100644
index 0000000000..05fb1eae2b
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Tue Feb 07 19:38:54 MSK 2023
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaResources/merger.xml b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaResources/merger.xml
new file mode 100644
index 0000000000..c2feb8699b
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaShaders/merger.xml b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaShaders/merger.xml
new file mode 100644
index 0000000000..b20ac94bc8
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/incremental/mergeDebug_betaShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaAssets/merger.xml b/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaAssets/merger.xml
new file mode 100644
index 0000000000..dc7ceab69a
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaResources/compile-file-map.properties b/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaResources/compile-file-map.properties
new file mode 100644
index 0000000000..22aa511b81
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Tue Feb 07 19:38:52 MSK 2023
diff --git a/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaResources/merger.xml b/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaResources/merger.xml
new file mode 100644
index 0000000000..c2feb8699b
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/incremental/packageDebug_betaResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/javac/debug_beta/classes/com/tangem/lib/auth/BuildConfig.class b/libs/wallet/walletApi/build/intermediates/javac/debug_beta/classes/com/tangem/lib/auth/BuildConfig.class
new file mode 100644
index 0000000000..c17f11a37c
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/javac/debug_beta/classes/com/tangem/lib/auth/BuildConfig.class differ
diff --git a/libs/wallet/walletApi/build/intermediates/library_java_res/debug_beta/res.jar b/libs/wallet/walletApi/build/intermediates/library_java_res/debug_beta/res.jar
new file mode 100644
index 0000000000..5d7b96aa84
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/library_java_res/debug_beta/res.jar differ
diff --git a/libs/wallet/walletApi/build/intermediates/lint_model_metadata/debug_beta/lint-model-metadata.properties b/libs/wallet/walletApi/build/intermediates/lint_model_metadata/debug_beta/lint-model-metadata.properties
new file mode 100644
index 0000000000..47e7710d6c
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/lint_model_metadata/debug_beta/lint-model-metadata.properties
@@ -0,0 +1,2 @@
+mavenArtifactId=auth
+mavenGroupId=tangem-app-android.libs
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/local_aar_for_lint/debug_beta/out.aar b/libs/wallet/walletApi/build/intermediates/local_aar_for_lint/debug_beta/out.aar
new file mode 100644
index 0000000000..9ba0f63102
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/local_aar_for_lint/debug_beta/out.aar differ
diff --git a/libs/wallet/walletApi/build/intermediates/local_only_symbol_list/debug_beta/R-def.txt b/libs/wallet/walletApi/build/intermediates/local_only_symbol_list/debug_beta/R-def.txt
new file mode 100644
index 0000000000..05b9599676
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/local_only_symbol_list/debug_beta/R-def.txt
@@ -0,0 +1,2 @@
+R_DEF: Internal format may change without notice
+local
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/manifest_merge_blame_file/debug_beta/manifest-merger-blame-debug_beta-report.txt b/libs/wallet/walletApi/build/intermediates/manifest_merge_blame_file/debug_beta/manifest-merger-blame-debug_beta-report.txt
new file mode 100644
index 0000000000..4cac937ebb
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/manifest_merge_blame_file/debug_beta/manifest-merger-blame-debug_beta-report.txt
@@ -0,0 +1,11 @@
+1
+2
+4
+5 /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+7 android:targetSdkVersion="33" />
+7-->/Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+8
+9
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/merged_java_res/debug_beta/feature-auth.jar b/libs/wallet/walletApi/build/intermediates/merged_java_res/debug_beta/feature-auth.jar
new file mode 100644
index 0000000000..5e8cc4cca4
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/merged_java_res/debug_beta/feature-auth.jar differ
diff --git a/libs/wallet/walletApi/build/intermediates/merged_manifest/debug_beta/AndroidManifest.xml b/libs/wallet/walletApi/build/intermediates/merged_manifest/debug_beta/AndroidManifest.xml
new file mode 100644
index 0000000000..f2ab47ed88
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/merged_manifest/debug_beta/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/navigation_json/debug_beta/navigation.json b/libs/wallet/walletApi/build/intermediates/navigation_json/debug_beta/navigation.json
new file mode 100644
index 0000000000..0637a088a0
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/navigation_json/debug_beta/navigation.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/packaged_manifests/debug_beta/output-metadata.json b/libs/wallet/walletApi/build/intermediates/packaged_manifests/debug_beta/output-metadata.json
new file mode 100644
index 0000000000..25971bc1e4
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/packaged_manifests/debug_beta/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PACKAGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "com.tangem.lib.auth",
+ "variantName": "debug_beta",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "../../merged_manifest/debug_beta/AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/intermediates/runtime_library_classes_jar/debug_beta/classes.jar b/libs/wallet/walletApi/build/intermediates/runtime_library_classes_jar/debug_beta/classes.jar
new file mode 100644
index 0000000000..6e42140914
Binary files /dev/null and b/libs/wallet/walletApi/build/intermediates/runtime_library_classes_jar/debug_beta/classes.jar differ
diff --git a/libs/wallet/walletApi/build/intermediates/symbol_list_with_package_name/debug_beta/package-aware-r.txt b/libs/wallet/walletApi/build/intermediates/symbol_list_with_package_name/debug_beta/package-aware-r.txt
new file mode 100644
index 0000000000..e87fb3ec9f
--- /dev/null
+++ b/libs/wallet/walletApi/build/intermediates/symbol_list_with_package_name/debug_beta/package-aware-r.txt
@@ -0,0 +1 @@
+com.tangem.lib.auth
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
new file mode 100644
index 0000000000..fb33d842d2
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
new file mode 100644
index 0000000000..7f1939e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
new file mode 100644
index 0000000000..2fedaee8d4
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
new file mode 100644
index 0000000000..cb55c1267d
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
new file mode 100644
index 0000000000..dac8312035
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
new file mode 100644
index 0000000000..71989fae04
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
new file mode 100644
index 0000000000..53b2d29f95
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
new file mode 100644
index 0000000000..c48a6a5de1
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
new file mode 100644
index 0000000000..dac8312035
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
new file mode 100644
index 0000000000..71989fae04
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
new file mode 100644
index 0000000000..85a7bbc1d0
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
new file mode 100644
index 0000000000..c48a6a5de1
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
new file mode 100644
index 0000000000..84d03c2e03
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
new file mode 100644
index 0000000000..71989fae04
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
new file mode 100644
index 0000000000..85a7bbc1d0
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
new file mode 100644
index 0000000000..b39c069621
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
new file mode 100644
index 0000000000..92e219fd84
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
new file mode 100644
index 0000000000..4a9c12a81c
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
new file mode 100644
index 0000000000..7274ac07de
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
new file mode 100644
index 0000000000..01bdaa1da7
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
new file mode 100644
index 0000000000..54eddc36ba
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
new file mode 100644
index 0000000000..84adbb3934
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
new file mode 100644
index 0000000000..fb33d842d2
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
new file mode 100644
index 0000000000..7f1939e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
new file mode 100644
index 0000000000..0fa163ccfc
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
new file mode 100644
index 0000000000..cb55c1267d
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/counters.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/counters.tab
new file mode 100644
index 0000000000..166c0578b9
--- /dev/null
+++ b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/counters.tab
@@ -0,0 +1,2 @@
+1
+0
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
new file mode 100644
index 0000000000..fb33d842d2
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
new file mode 100644
index 0000000000..7f1939e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
new file mode 100644
index 0000000000..5875372349
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
new file mode 100644
index 0000000000..79ab25a509
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
new file mode 100644
index 0000000000..8aad32b3b8
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
new file mode 100644
index 0000000000..08e7df1764
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
new file mode 100644
index 0000000000..b7da01d977
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
new file mode 100644
index 0000000000..85a7bbc1d0
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab
new file mode 100644
index 0000000000..aa094414c7
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
new file mode 100644
index 0000000000..d833f6c709
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
new file mode 100644
index 0000000000..8c81f1d558
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
new file mode 100644
index 0000000000..93a595bd1b
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
new file mode 100644
index 0000000000..8758b2cb7d
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
new file mode 100644
index 0000000000..ce0a2ac7b1
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/last-build.bin b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/last-build.bin
new file mode 100644
index 0000000000..5ace5e8f04
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/cacheable/last-build.bin differ
diff --git a/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/local-state/build-history.bin b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/local-state/build-history.bin
new file mode 100644
index 0000000000..db4af871ee
Binary files /dev/null and b/libs/wallet/walletApi/build/kotlin/compileDebug_betaKotlin/local-state/build-history.bin differ
diff --git a/libs/wallet/walletApi/build/outputs/aar/auth-debug_beta.aar b/libs/wallet/walletApi/build/outputs/aar/auth-debug_beta.aar
new file mode 100644
index 0000000000..cabdd4328b
Binary files /dev/null and b/libs/wallet/walletApi/build/outputs/aar/auth-debug_beta.aar differ
diff --git a/libs/wallet/walletApi/build/outputs/logs/manifest-merger-debug_beta-report.txt b/libs/wallet/walletApi/build/outputs/logs/manifest-merger-debug_beta-report.txt
new file mode 100644
index 0000000000..f4a6469a65
--- /dev/null
+++ b/libs/wallet/walletApi/build/outputs/logs/manifest-merger-debug_beta-report.txt
@@ -0,0 +1,25 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+ package
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:11-40
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+uses-sdk
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
\ No newline at end of file
diff --git a/libs/wallet/walletApi/build/tmp/compileDebug_betaJavaWithJavac/previous-compilation-data.bin b/libs/wallet/walletApi/build/tmp/compileDebug_betaJavaWithJavac/previous-compilation-data.bin
new file mode 100644
index 0000000000..a1fb61fa05
Binary files /dev/null and b/libs/wallet/walletApi/build/tmp/compileDebug_betaJavaWithJavac/previous-compilation-data.bin differ
diff --git a/libs/wallet/walletApi/build/tmp/kotlin-classes/debug_beta/META-INF/auth_debug_beta.kotlin_module b/libs/wallet/walletApi/build/tmp/kotlin-classes/debug_beta/META-INF/auth_debug_beta.kotlin_module
new file mode 100644
index 0000000000..8c840ddb01
Binary files /dev/null and b/libs/wallet/walletApi/build/tmp/kotlin-classes/debug_beta/META-INF/auth_debug_beta.kotlin_module differ
diff --git a/libs/wallet/walletApi/build/tmp/kotlin-classes/debug_beta/com/tangem/lib/auth/AuthProvider.class b/libs/wallet/walletApi/build/tmp/kotlin-classes/debug_beta/com/tangem/lib/auth/AuthProvider.class
new file mode 100644
index 0000000000..fec9e31454
Binary files /dev/null and b/libs/wallet/walletApi/build/tmp/kotlin-classes/debug_beta/com/tangem/lib/auth/AuthProvider.class differ
diff --git a/libs/wallet/walletImpl/build/.transforms/1795cb118b7cef47e2c931ba5d811ebc/results.bin b/libs/wallet/walletImpl/build/.transforms/1795cb118b7cef47e2c931ba5d811ebc/results.bin
new file mode 100644
index 0000000000..1ed65e03c3
--- /dev/null
+++ b/libs/wallet/walletImpl/build/.transforms/1795cb118b7cef47e2c931ba5d811ebc/results.bin
@@ -0,0 +1 @@
+i/
diff --git a/libs/wallet/walletImpl/build/.transforms/21448a2c0dd64a128af1b01f509b8c1a/results.bin b/libs/wallet/walletImpl/build/.transforms/21448a2c0dd64a128af1b01f509b8c1a/results.bin
new file mode 100644
index 0000000000..1ed65e03c3
--- /dev/null
+++ b/libs/wallet/walletImpl/build/.transforms/21448a2c0dd64a128af1b01f509b8c1a/results.bin
@@ -0,0 +1 @@
+i/
diff --git a/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/results.bin b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/results.bin
new file mode 100644
index 0000000000..6e09b8c3cc
--- /dev/null
+++ b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/results.bin
@@ -0,0 +1 @@
+o/out
diff --git a/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/AndroidManifest.xml b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/AndroidManifest.xml
new file mode 100644
index 0000000000..f2ab47ed88
--- /dev/null
+++ b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties
new file mode 100644
index 0000000000..8c9c6997a3
--- /dev/null
+++ b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minAndroidGradlePluginVersion=1.0.0
diff --git a/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/R.txt b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/R.txt
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/jars/classes.jar b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/jars/classes.jar
new file mode 100644
index 0000000000..6145857f36
Binary files /dev/null and b/libs/wallet/walletImpl/build/.transforms/7e5b9ac75f51e5f1222747fe0dec90e3/transformed/out/jars/classes.jar differ
diff --git a/libs/wallet/walletImpl/build/.transforms/8d525c87a59148f16951782fd2e5a078/results.bin b/libs/wallet/walletImpl/build/.transforms/8d525c87a59148f16951782fd2e5a078/results.bin
new file mode 100644
index 0000000000..0d259ddcb5
--- /dev/null
+++ b/libs/wallet/walletImpl/build/.transforms/8d525c87a59148f16951782fd2e5a078/results.bin
@@ -0,0 +1 @@
+o/classes
diff --git a/libs/wallet/walletImpl/build/.transforms/8d525c87a59148f16951782fd2e5a078/transformed/classes/classes.dex b/libs/wallet/walletImpl/build/.transforms/8d525c87a59148f16951782fd2e5a078/transformed/classes/classes.dex
new file mode 100644
index 0000000000..dfdb37c655
Binary files /dev/null and b/libs/wallet/walletImpl/build/.transforms/8d525c87a59148f16951782fd2e5a078/transformed/classes/classes.dex differ
diff --git a/libs/wallet/walletImpl/build/.transforms/ae555d7094f85e6b7cc7298b1f21a8e0/results.bin b/libs/wallet/walletImpl/build/.transforms/ae555d7094f85e6b7cc7298b1f21a8e0/results.bin
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletImpl/build/generated/source/buildConfig/debug_beta/com/tangem/lib/auth/BuildConfig.java b/libs/wallet/walletImpl/build/generated/source/buildConfig/debug_beta/com/tangem/lib/auth/BuildConfig.java
new file mode 100644
index 0000000000..d46ec2dc7e
--- /dev/null
+++ b/libs/wallet/walletImpl/build/generated/source/buildConfig/debug_beta/com/tangem/lib/auth/BuildConfig.java
@@ -0,0 +1,16 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.tangem.lib.auth;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = false;
+ public static final String LIBRARY_PACKAGE_NAME = "com.tangem.lib.auth";
+ public static final String BUILD_TYPE = "debug_beta";
+ // Field from build type: debug_beta
+ public static final String ENVIRONMENT = "release";
+ // Field from build type: debug_beta
+ public static final Boolean LOG_ENABLED = true;
+ // Field from build type: debug_beta
+ public static final Boolean TEST_ACTION_ENABLED = true;
+}
diff --git a/libs/wallet/walletImpl/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/AndroidManifest.xml b/libs/wallet/walletImpl/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/AndroidManifest.xml
new file mode 100644
index 0000000000..f2ab47ed88
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/output-metadata.json b/libs/wallet/walletImpl/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/output-metadata.json
new file mode 100644
index 0000000000..4129952877
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/aapt_friendly_merged_manifests/debug_beta/aapt/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "com.tangem.lib.auth",
+ "variantName": "debug_beta",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/aar_main_jar/debug_beta/classes.jar b/libs/wallet/walletImpl/build/intermediates/aar_main_jar/debug_beta/classes.jar
new file mode 100644
index 0000000000..6145857f36
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/aar_main_jar/debug_beta/classes.jar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/aar_metadata/debug_beta/aar-metadata.properties b/libs/wallet/walletImpl/build/intermediates/aar_metadata/debug_beta/aar-metadata.properties
new file mode 100644
index 0000000000..8c9c6997a3
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/aar_metadata/debug_beta/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minAndroidGradlePluginVersion=1.0.0
diff --git a/libs/wallet/walletImpl/build/intermediates/annotation_processor_list/debug_beta/annotationProcessors.json b/libs/wallet/walletImpl/build/intermediates/annotation_processor_list/debug_beta/annotationProcessors.json
new file mode 100644
index 0000000000..9e26dfeeb6
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/annotation_processor_list/debug_beta/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/annotations_typedef_file/debug_beta/typedefs.txt b/libs/wallet/walletImpl/build/intermediates/annotations_typedef_file/debug_beta/typedefs.txt
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletImpl/build/intermediates/compile_library_classes_jar/debug_beta/classes.jar b/libs/wallet/walletImpl/build/intermediates/compile_library_classes_jar/debug_beta/classes.jar
new file mode 100644
index 0000000000..5792c763aa
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/compile_library_classes_jar/debug_beta/classes.jar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/compile_r_class_jar/debug_beta/R.jar b/libs/wallet/walletImpl/build/intermediates/compile_r_class_jar/debug_beta/R.jar
new file mode 100644
index 0000000000..9d35d78cca
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/compile_r_class_jar/debug_beta/R.jar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/compile_symbol_list/debug_beta/R.txt b/libs/wallet/walletImpl/build/intermediates/compile_symbol_list/debug_beta/R.txt
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/libs/wallet/walletImpl/build/intermediates/full_jar/debug_beta/full.jar b/libs/wallet/walletImpl/build/intermediates/full_jar/debug_beta/full.jar
new file mode 100644
index 0000000000..6e42140914
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/full_jar/debug_beta/full.jar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/debug_beta-mergeJavaRes/merge-state b/libs/wallet/walletImpl/build/intermediates/incremental/debug_beta-mergeJavaRes/merge-state
new file mode 100644
index 0000000000..db461badc3
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/incremental/debug_beta-mergeJavaRes/merge-state differ
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaJniLibFolders/merger.xml b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaJniLibFolders/merger.xml
new file mode 100644
index 0000000000..480cbe1ceb
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaResources/compile-file-map.properties b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaResources/compile-file-map.properties
new file mode 100644
index 0000000000..05fb1eae2b
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Tue Feb 07 19:38:54 MSK 2023
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaResources/merger.xml b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaResources/merger.xml
new file mode 100644
index 0000000000..c2feb8699b
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaShaders/merger.xml b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaShaders/merger.xml
new file mode 100644
index 0000000000..b20ac94bc8
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/incremental/mergeDebug_betaShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaAssets/merger.xml b/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaAssets/merger.xml
new file mode 100644
index 0000000000..dc7ceab69a
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaResources/compile-file-map.properties b/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaResources/compile-file-map.properties
new file mode 100644
index 0000000000..22aa511b81
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Tue Feb 07 19:38:52 MSK 2023
diff --git a/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaResources/merger.xml b/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaResources/merger.xml
new file mode 100644
index 0000000000..c2feb8699b
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/incremental/packageDebug_betaResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/javac/debug_beta/classes/com/tangem/lib/auth/BuildConfig.class b/libs/wallet/walletImpl/build/intermediates/javac/debug_beta/classes/com/tangem/lib/auth/BuildConfig.class
new file mode 100644
index 0000000000..c17f11a37c
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/javac/debug_beta/classes/com/tangem/lib/auth/BuildConfig.class differ
diff --git a/libs/wallet/walletImpl/build/intermediates/library_java_res/debug_beta/res.jar b/libs/wallet/walletImpl/build/intermediates/library_java_res/debug_beta/res.jar
new file mode 100644
index 0000000000..5d7b96aa84
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/library_java_res/debug_beta/res.jar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/lint_model_metadata/debug_beta/lint-model-metadata.properties b/libs/wallet/walletImpl/build/intermediates/lint_model_metadata/debug_beta/lint-model-metadata.properties
new file mode 100644
index 0000000000..47e7710d6c
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/lint_model_metadata/debug_beta/lint-model-metadata.properties
@@ -0,0 +1,2 @@
+mavenArtifactId=auth
+mavenGroupId=tangem-app-android.libs
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/local_aar_for_lint/debug_beta/out.aar b/libs/wallet/walletImpl/build/intermediates/local_aar_for_lint/debug_beta/out.aar
new file mode 100644
index 0000000000..9ba0f63102
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/local_aar_for_lint/debug_beta/out.aar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/local_only_symbol_list/debug_beta/R-def.txt b/libs/wallet/walletImpl/build/intermediates/local_only_symbol_list/debug_beta/R-def.txt
new file mode 100644
index 0000000000..05b9599676
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/local_only_symbol_list/debug_beta/R-def.txt
@@ -0,0 +1,2 @@
+R_DEF: Internal format may change without notice
+local
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/manifest_merge_blame_file/debug_beta/manifest-merger-blame-debug_beta-report.txt b/libs/wallet/walletImpl/build/intermediates/manifest_merge_blame_file/debug_beta/manifest-merger-blame-debug_beta-report.txt
new file mode 100644
index 0000000000..4cac937ebb
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/manifest_merge_blame_file/debug_beta/manifest-merger-blame-debug_beta-report.txt
@@ -0,0 +1,11 @@
+1
+2
+4
+5 /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+7 android:targetSdkVersion="33" />
+7-->/Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+8
+9
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/merged_java_res/debug_beta/feature-auth.jar b/libs/wallet/walletImpl/build/intermediates/merged_java_res/debug_beta/feature-auth.jar
new file mode 100644
index 0000000000..5e8cc4cca4
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/merged_java_res/debug_beta/feature-auth.jar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/merged_manifest/debug_beta/AndroidManifest.xml b/libs/wallet/walletImpl/build/intermediates/merged_manifest/debug_beta/AndroidManifest.xml
new file mode 100644
index 0000000000..f2ab47ed88
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/merged_manifest/debug_beta/AndroidManifest.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/navigation_json/debug_beta/navigation.json b/libs/wallet/walletImpl/build/intermediates/navigation_json/debug_beta/navigation.json
new file mode 100644
index 0000000000..0637a088a0
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/navigation_json/debug_beta/navigation.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/packaged_manifests/debug_beta/output-metadata.json b/libs/wallet/walletImpl/build/intermediates/packaged_manifests/debug_beta/output-metadata.json
new file mode 100644
index 0000000000..25971bc1e4
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/packaged_manifests/debug_beta/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PACKAGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "com.tangem.lib.auth",
+ "variantName": "debug_beta",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "../../merged_manifest/debug_beta/AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/intermediates/runtime_library_classes_jar/debug_beta/classes.jar b/libs/wallet/walletImpl/build/intermediates/runtime_library_classes_jar/debug_beta/classes.jar
new file mode 100644
index 0000000000..6e42140914
Binary files /dev/null and b/libs/wallet/walletImpl/build/intermediates/runtime_library_classes_jar/debug_beta/classes.jar differ
diff --git a/libs/wallet/walletImpl/build/intermediates/symbol_list_with_package_name/debug_beta/package-aware-r.txt b/libs/wallet/walletImpl/build/intermediates/symbol_list_with_package_name/debug_beta/package-aware-r.txt
new file mode 100644
index 0000000000..e87fb3ec9f
--- /dev/null
+++ b/libs/wallet/walletImpl/build/intermediates/symbol_list_with_package_name/debug_beta/package-aware-r.txt
@@ -0,0 +1 @@
+com.tangem.lib.auth
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
new file mode 100644
index 0000000000..fb33d842d2
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
new file mode 100644
index 0000000000..7f1939e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
new file mode 100644
index 0000000000..2fedaee8d4
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
new file mode 100644
index 0000000000..cb55c1267d
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
new file mode 100644
index 0000000000..dac8312035
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
new file mode 100644
index 0000000000..71989fae04
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
new file mode 100644
index 0000000000..53b2d29f95
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
new file mode 100644
index 0000000000..c48a6a5de1
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
new file mode 100644
index 0000000000..dac8312035
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
new file mode 100644
index 0000000000..71989fae04
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
new file mode 100644
index 0000000000..85a7bbc1d0
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
new file mode 100644
index 0000000000..c48a6a5de1
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
new file mode 100644
index 0000000000..84d03c2e03
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
new file mode 100644
index 0000000000..71989fae04
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
new file mode 100644
index 0000000000..85a7bbc1d0
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
new file mode 100644
index 0000000000..b39c069621
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
new file mode 100644
index 0000000000..92e219fd84
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
new file mode 100644
index 0000000000..4a9c12a81c
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
new file mode 100644
index 0000000000..7274ac07de
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
new file mode 100644
index 0000000000..01bdaa1da7
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
new file mode 100644
index 0000000000..54eddc36ba
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
new file mode 100644
index 0000000000..84adbb3934
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
new file mode 100644
index 0000000000..fb33d842d2
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
new file mode 100644
index 0000000000..7f1939e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
new file mode 100644
index 0000000000..0fa163ccfc
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
new file mode 100644
index 0000000000..cb55c1267d
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/counters.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/counters.tab
new file mode 100644
index 0000000000..166c0578b9
--- /dev/null
+++ b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/counters.tab
@@ -0,0 +1,2 @@
+1
+0
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
new file mode 100644
index 0000000000..bdf584a84b
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
new file mode 100644
index 0000000000..fb33d842d2
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
new file mode 100644
index 0000000000..7f1939e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
new file mode 100644
index 0000000000..5875372349
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
new file mode 100644
index 0000000000..79ab25a509
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
new file mode 100644
index 0000000000..8aad32b3b8
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
new file mode 100644
index 0000000000..08e7df1764
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
new file mode 100644
index 0000000000..b7da01d977
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
new file mode 100644
index 0000000000..2a17e6e5bd
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
new file mode 100644
index 0000000000..85a7bbc1d0
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab
new file mode 100644
index 0000000000..aa094414c7
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
new file mode 100644
index 0000000000..d833f6c709
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
new file mode 100644
index 0000000000..8c81f1d558
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
new file mode 100644
index 0000000000..93a595bd1b
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
new file mode 100644
index 0000000000..8758b2cb7d
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
new file mode 100644
index 0000000000..ce0a2ac7b1
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
new file mode 100644
index 0000000000..131e265740
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/last-build.bin b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/last-build.bin
new file mode 100644
index 0000000000..5ace5e8f04
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/cacheable/last-build.bin differ
diff --git a/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/local-state/build-history.bin b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/local-state/build-history.bin
new file mode 100644
index 0000000000..db4af871ee
Binary files /dev/null and b/libs/wallet/walletImpl/build/kotlin/compileDebug_betaKotlin/local-state/build-history.bin differ
diff --git a/libs/wallet/walletImpl/build/outputs/aar/auth-debug_beta.aar b/libs/wallet/walletImpl/build/outputs/aar/auth-debug_beta.aar
new file mode 100644
index 0000000000..cabdd4328b
Binary files /dev/null and b/libs/wallet/walletImpl/build/outputs/aar/auth-debug_beta.aar differ
diff --git a/libs/wallet/walletImpl/build/outputs/logs/manifest-merger-debug_beta-report.txt b/libs/wallet/walletImpl/build/outputs/logs/manifest-merger-debug_beta-report.txt
new file mode 100644
index 0000000000..f4a6469a65
--- /dev/null
+++ b/libs/wallet/walletImpl/build/outputs/logs/manifest-merger-debug_beta-report.txt
@@ -0,0 +1,25 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+ package
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:11-40
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml:2:1-43
+uses-sdk
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ ADDED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
+ INJECTED from /Users/vladislav/Documents/projects/tangem/tangem-app-android/libs/auth/src/main/AndroidManifest.xml
\ No newline at end of file
diff --git a/libs/wallet/walletImpl/build/tmp/compileDebug_betaJavaWithJavac/previous-compilation-data.bin b/libs/wallet/walletImpl/build/tmp/compileDebug_betaJavaWithJavac/previous-compilation-data.bin
new file mode 100644
index 0000000000..a1fb61fa05
Binary files /dev/null and b/libs/wallet/walletImpl/build/tmp/compileDebug_betaJavaWithJavac/previous-compilation-data.bin differ
diff --git a/libs/wallet/walletImpl/build/tmp/kotlin-classes/debug_beta/META-INF/auth_debug_beta.kotlin_module b/libs/wallet/walletImpl/build/tmp/kotlin-classes/debug_beta/META-INF/auth_debug_beta.kotlin_module
new file mode 100644
index 0000000000..8c840ddb01
Binary files /dev/null and b/libs/wallet/walletImpl/build/tmp/kotlin-classes/debug_beta/META-INF/auth_debug_beta.kotlin_module differ
diff --git a/libs/wallet/walletImpl/build/tmp/kotlin-classes/debug_beta/com/tangem/lib/auth/AuthProvider.class b/libs/wallet/walletImpl/build/tmp/kotlin-classes/debug_beta/com/tangem/lib/auth/AuthProvider.class
new file mode 100644
index 0000000000..fec9e31454
Binary files /dev/null and b/libs/wallet/walletImpl/build/tmp/kotlin-classes/debug_beta/com/tangem/lib/auth/AuthProvider.class differ