diff --git a/app/src/main/java/com/tangem/tap/common/DialogManager.kt b/app/src/main/java/com/tangem/tap/common/DialogManager.kt index d60fbd6473..814384c569 100644 --- a/app/src/main/java/com/tangem/tap/common/DialogManager.kt +++ b/app/src/main/java/com/tangem/tap/common/DialogManager.kt @@ -58,8 +58,6 @@ class DialogManager : StoreSubscriber { messageRes = R.string.nfc_error_unavailable, context = context, ) - is AppDialog.AddressInfoDialog -> AddressInfoBottomSheetDialog(state.dialog, context) - is AppDialog.TestActionsDialog -> TestActionsBottomSheetDialog(state.dialog, context) is OnboardingDialog.WalletActivationError -> WalletActivationErrorDialog.create(context, state.dialog) is WalletConnectDialog.UnsupportedCard -> SimpleAlertDialog.create( diff --git a/app/src/main/java/com/tangem/tap/common/TestActions.kt b/app/src/main/java/com/tangem/tap/common/TestActions.kt index 955b89e867..5dc923cf58 100644 --- a/app/src/main/java/com/tangem/tap/common/TestActions.kt +++ b/app/src/main/java/com/tangem/tap/common/TestActions.kt @@ -1,16 +1,5 @@ package com.tangem.tap.common -import android.content.Context -import android.os.Bundle -import android.view.View -import android.widget.Button -import androidx.appcompat.widget.LinearLayoutCompat -import com.google.android.material.bottomsheet.BottomSheetBehavior -import com.google.android.material.bottomsheet.BottomSheetDialog -import com.tangem.tap.common.extensions.dispatchDialogHide -import com.tangem.tap.common.redux.AppDialog -import com.tangem.tap.store - /** [REDACTED_AUTHOR] */ @@ -21,41 +10,4 @@ object TestActions { var testAmountInjectionForWalletManagerEnabled = false } -typealias TestAction = Pair Unit> - -class TestActionsBottomSheetDialog( - private val appDialog: AppDialog.TestActionsDialog, - context: Context, -) : BottomSheetDialog(context) { - - @Suppress("MagicNumber") - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - - setContentView(createContentView()) - behavior.state = BottomSheetBehavior.STATE_EXPANDED - behavior.peekHeight = 400 - setOnCancelListener { - store.dispatchDialogHide() - } - } - - private fun createContentView(): View { - val actionButtons = mutableListOf() - appDialog.actionsList.forEach { (actionName, action) -> - val view = Button(context).apply { - text = actionName - setOnClickListener { - action() - cancel() - } - } - actionButtons.add(view) - } - - return LinearLayoutCompat(context).apply { - orientation = LinearLayoutCompat.VERTICAL - actionButtons.forEach { addView(it) } - } - } -} \ No newline at end of file +typealias TestAction = Pair Unit> \ No newline at end of file diff --git a/app/src/main/java/com/tangem/tap/common/redux/AppDialog.kt b/app/src/main/java/com/tangem/tap/common/redux/AppDialog.kt index 1188cd7d03..8c9f98ebdd 100644 --- a/app/src/main/java/com/tangem/tap/common/redux/AppDialog.kt +++ b/app/src/main/java/com/tangem/tap/common/redux/AppDialog.kt @@ -2,9 +2,6 @@ package com.tangem.tap.common.redux import com.tangem.common.extensions.VoidCallback import com.tangem.domain.redux.StateDialog -import com.tangem.tap.common.TestAction -import com.tangem.tap.domain.model.Currency -import com.tangem.tap.domain.model.WalletAddressData import com.tangem.wallet.R /** @@ -18,15 +15,6 @@ sealed class AppDialog : StateDialog { val onOk: VoidCallback? = null, ) : AppDialog() - internal data class AddressInfoDialog( - val currency: Currency, - val addressData: WalletAddressData, - ) : AppDialog() - - data class TestActionsDialog( - val actionsList: List, - ) : AppDialog() - data class RemoveWalletDialog( val currencyTitle: String, val onOk: () -> Unit, diff --git a/app/src/main/java/com/tangem/tap/common/toggleWidget/RefreshBalanceWidget.kt b/app/src/main/java/com/tangem/tap/common/toggleWidget/RefreshBalanceWidget.kt deleted file mode 100644 index 3996e28d5c..0000000000 --- a/app/src/main/java/com/tangem/tap/common/toggleWidget/RefreshBalanceWidget.kt +++ /dev/null @@ -1,118 +0,0 @@ -package com.tangem.tap.common.toggleWidget - -import android.view.View -import android.view.ViewGroup -import android.view.animation.* -import android.widget.ViewSwitcher -import com.tangem.tap.common.entities.ProgressState -import com.tangem.wallet.R - -/** -[REDACTED_AUTHOR] - */ -@Suppress("MagicNumber") -class RefreshBalanceWidget(root: ViewGroup) : ViewStateWidget { - - var isShowing: Boolean? = null - private set - - override val mainView: View = root.findViewById(R.id.btn_refresh_balance) - - private val viewSwitcher: ViewSwitcher by lazy { mainView.findViewById(R.id.switcher_refresh_arrow_to_progress) } - - private val arrowView = mainView.findViewById(R.id.imv_arrow_refresh) - - private var progressViewAnimation: Animation? = null - - init { - viewSwitcher.inAnimation = AlphaAnimation(0f, 1f).apply { - duration = 400 - interpolator = LinearInterpolator() - } - viewSwitcher.outAnimation = AlphaAnimation(1f, 0f).apply { - duration = 400 - interpolator = LinearInterpolator() - } - } - - override fun changeState(state: WidgetState) { - val progressState = state as? ProgressState ?: return - - val currentStateByView = getState() - when { - currentStateByView == progressState -> return - currentStateByView == ProgressState.Done -> if (progressState == ProgressState.Error) return - } - - mainView.isClickable = currentStateByView == ProgressState.Done || currentStateByView == ProgressState.Error - animateState(progressState) - viewSwitcher.showNext() - } - - @Suppress("MagicNumber") - private fun animateState(state: ProgressState) { - when (state) { - ProgressState.Done, ProgressState.Error -> { - progressViewAnimation?.cancel() - progressViewAnimation = null - } - ProgressState.Loading -> { - progressViewAnimation = RotateAnimation( - /* fromDegrees = */ - 0f, - /* toDegrees = */ - 360f, - /* pivotXType = */ - Animation.RELATIVE_TO_SELF, - /* pivotXValue = */ - 0.5f, - /* pivotYType = */ - Animation.RELATIVE_TO_SELF, - /* pivotYValue = */ - 0.5f, - ) - progressViewAnimation?.duration = 700 - progressViewAnimation?.interpolator = AccelerateInterpolator() - progressViewAnimation?.repeatCount = -1 - progressViewAnimation?.let { arrowView.startAnimation(it) } - } - else -> {} - } - } - - fun show(show: Boolean) { - if (show == isShowing) return - - isShowing = show - if (show) { - mainView.startAnimation(ShowAnimation()) - } else { - mainView.startAnimation(AlphaAnimation(1f, 0f).apply { fillAfter = true }) - } - } - - private fun isArrowRefreshActive(): Boolean = viewSwitcher.currentView.id == R.id.fl_arrow_refresh_container - - private fun getState(): ProgressState = if (isArrowRefreshActive()) ProgressState.Done else ProgressState.Loading -} - -@Suppress("MagicNumber") -class ShowAnimation : AnimationSet(true) { - init { - addAnimation( - ScaleAnimation( - 0f, - 1f, - 0f, - 1f, - Animation.RELATIVE_TO_SELF, - 0.5f, - Animation.RELATIVE_TO_SELF, - 0.5f, - ), - ) - addAnimation(AlphaAnimation(0f, 1f)) - duration = 300 - interpolator = AnticipateOvershootInterpolator() - } -} \ No newline at end of file diff --git a/app/src/main/java/com/tangem/tap/common/ui/AddressInfoBottomSheetDialog.kt b/app/src/main/java/com/tangem/tap/common/ui/AddressInfoBottomSheetDialog.kt deleted file mode 100644 index df54352380..0000000000 --- a/app/src/main/java/com/tangem/tap/common/ui/AddressInfoBottomSheetDialog.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.tangem.tap.common.ui - -import android.content.Context -import android.os.Bundle -import android.view.LayoutInflater -import android.widget.Toast -import com.google.android.material.bottomsheet.BottomSheetBehavior -import com.google.android.material.bottomsheet.BottomSheetDialog -import com.tangem.core.analytics.Analytics -import com.tangem.tap.common.analytics.events.Token -import com.tangem.tap.common.extensions.* -import com.tangem.tap.common.redux.AppDialog -import com.tangem.tap.domain.model.WalletAddressData -import com.tangem.tap.proxy.redux.DaggerGraphState -import com.tangem.tap.store -import com.tangem.wallet.R -import com.tangem.wallet.databinding.DialogOnboardingAddressInfoBinding - -/** -[REDACTED_AUTHOR] - */ -internal class AddressInfoBottomSheetDialog( - private val stateDialog: AppDialog.AddressInfoDialog, - context: Context, -) : BottomSheetDialog(context) { - - var binding: DialogOnboardingAddressInfoBinding? = null - - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - binding = DialogOnboardingAddressInfoBinding - .inflate(LayoutInflater.from(context)) - setContentView(binding!!.root) - behavior.state = BottomSheetBehavior.STATE_EXPANDED - setOnCancelListener { - store.dispatchDialogHide() - binding = null - } - } - - override fun show() { - super.show() - Analytics.send(Token.Receive.ScreenOpened(stateDialog.currency.currencySymbol)) - showData(data = stateDialog.addressData) - } - - private fun showData(data: WalletAddressData) = with(binding!!) { - pseudoToolbar.imvClose.setOnClickListener { - dismissWithAnimation = true - cancel() - } - imvQrCode.setImageBitmap(data.shareUrl.toQrCode()) - tvAddress.text = data.address - btnFlCopyAddress.setOnClickListener { - Analytics.send(Token.Receive.ButtonCopyAddress()) - - Toast - .makeText(context, R.string.wallet_notification_address_copied, Toast.LENGTH_SHORT) - .show() - - store.inject(DaggerGraphState::clipboardManager).setText(text = data.address, isSensitive = true) - } - btnFlShare.setOnClickListener { - Analytics.send(Token.Receive.ButtonShareAddress()) - store.dispatchShare(data.shareUrl) - } - val blockchain = stateDialog.currency.blockchain - tvReceiveMessage.text = tvReceiveMessage.getString( - id = R.string.address_qr_code_message_format, - blockchain.getCoinName(), - blockchain.currency, - blockchain.fullName, - ) - } -} \ No newline at end of file diff --git a/app/src/main/res/color/selector_btn_content_primary.xml b/app/src/main/res/color/selector_btn_content_primary.xml deleted file mode 100644 index 70f6aded83..0000000000 --- a/app/src/main/res/color/selector_btn_content_primary.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/app/src/main/res/color/selector_btn_content_secondary.xml b/app/src/main/res/color/selector_btn_content_secondary.xml deleted file mode 100644 index 41aa7c843c..0000000000 --- a/app/src/main/res/color/selector_btn_content_secondary.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/app/src/main/res/color/selector_btn_primary.xml b/app/src/main/res/color/selector_btn_primary.xml deleted file mode 100644 index 6e8aab4c79..0000000000 --- a/app/src/main/res/color/selector_btn_primary.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/app/src/main/res/color/selector_btn_secondary.xml b/app/src/main/res/color/selector_btn_secondary.xml deleted file mode 100644 index 47a88e3645..0000000000 --- a/app/src/main/res/color/selector_btn_secondary.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/app/src/main/res/color/selector_chip_shop.xml b/app/src/main/res/color/selector_chip_shop.xml deleted file mode 100644 index 052f962892..0000000000 --- a/app/src/main/res/color/selector_chip_shop.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/color/selector_chip_shop_text.xml b/app/src/main/res/color/selector_chip_shop_text.xml deleted file mode 100644 index 5d5afc33ff..0000000000 --- a/app/src/main/res/color/selector_chip_shop_text.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/color/selector_chip_stroke.xml b/app/src/main/res/color/selector_chip_stroke.xml deleted file mode 100644 index c2827e783e..0000000000 --- a/app/src/main/res/color/selector_chip_stroke.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/color/selector_chip_text.xml b/app/src/main/res/color/selector_chip_text.xml deleted file mode 100644 index e205f4e82d..0000000000 --- a/app/src/main/res/color/selector_chip_text.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/color/selector_edit_text.xml b/app/src/main/res/color/selector_edit_text.xml deleted file mode 100644 index 192514f802..0000000000 --- a/app/src/main/res/color/selector_edit_text.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/color/selector_edit_text_secondary.xml b/app/src/main/res/color/selector_edit_text_secondary.xml deleted file mode 100644 index df06469793..0000000000 --- a/app/src/main/res/color/selector_edit_text_secondary.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable-hdpi/card_placeholder_wallet.9.png b/app/src/main/res/drawable-hdpi/card_placeholder_wallet.9.png deleted file mode 100644 index 97ea9bc260..0000000000 Binary files a/app/src/main/res/drawable-hdpi/card_placeholder_wallet.9.png and /dev/null differ diff --git a/app/src/main/res/drawable-xhdpi/googlepay_button_no_shadow_background_image.9.png b/app/src/main/res/drawable-xhdpi/googlepay_button_no_shadow_background_image.9.png deleted file mode 100755 index 969cc52a94..0000000000 Binary files a/app/src/main/res/drawable-xhdpi/googlepay_button_no_shadow_background_image.9.png and /dev/null differ diff --git a/app/src/main/res/drawable/buy_with_googlepay_button_content.xml b/app/src/main/res/drawable/buy_with_googlepay_button_content.xml deleted file mode 100755 index a893cd0cac..0000000000 --- a/app/src/main/res/drawable/buy_with_googlepay_button_content.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - diff --git a/app/src/main/res/drawable/card_placeholder_white.xml b/app/src/main/res/drawable/card_placeholder_white.xml deleted file mode 100644 index d980dc5599..0000000000 --- a/app/src/main/res/drawable/card_placeholder_white.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/drawable/googlepay_button_no_shadow_background.xml b/app/src/main/res/drawable/googlepay_button_no_shadow_background.xml deleted file mode 100755 index 9543c4bcb6..0000000000 --- a/app/src/main/res/drawable/googlepay_button_no_shadow_background.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - diff --git a/app/src/main/res/drawable/googlepay_button_overlay.xml b/app/src/main/res/drawable/googlepay_button_overlay.xml deleted file mode 100755 index 70c7a92271..0000000000 --- a/app/src/main/res/drawable/googlepay_button_overlay.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/app/src/main/res/drawable/ic_access_code.xml b/app/src/main/res/drawable/ic_access_code.xml deleted file mode 100644 index d24768aa15..0000000000 --- a/app/src/main/res/drawable/ic_access_code.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - diff --git a/app/src/main/res/drawable/ic_angle_bracket_up.xml b/app/src/main/res/drawable/ic_angle_bracket_up.xml deleted file mode 100644 index 5311e45d76..0000000000 --- a/app/src/main/res/drawable/ic_angle_bracket_up.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/app/src/main/res/drawable/ic_arrow_refresh.xml b/app/src/main/res/drawable/ic_arrow_refresh.xml deleted file mode 100644 index 1acc645cec..0000000000 --- a/app/src/main/res/drawable/ic_arrow_refresh.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/app/src/main/res/drawable/ic_baseline_arrow_back_24.xml b/app/src/main/res/drawable/ic_baseline_arrow_back_24.xml deleted file mode 100644 index b33d1ca408..0000000000 --- a/app/src/main/res/drawable/ic_baseline_arrow_back_24.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_dot.xml b/app/src/main/res/drawable/ic_dot.xml deleted file mode 100644 index bef54d1532..0000000000 --- a/app/src/main/res/drawable/ic_dot.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_selected_dot.xml b/app/src/main/res/drawable/ic_selected_dot.xml deleted file mode 100644 index f747ab54ba..0000000000 --- a/app/src/main/res/drawable/ic_selected_dot.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/img_onboarding_success.xml b/app/src/main/res/drawable/img_onboarding_success.xml deleted file mode 100644 index 84574803ea..0000000000 --- a/app/src/main/res/drawable/img_onboarding_success.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - diff --git a/app/src/main/res/drawable/progress_rounded_shape.xml b/app/src/main/res/drawable/progress_rounded_shape.xml deleted file mode 100644 index 7be741d331..0000000000 --- a/app/src/main/res/drawable/progress_rounded_shape.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/selector_tabs_dots.xml b/app/src/main/res/drawable/selector_tabs_dots.xml deleted file mode 100644 index 8b1678434a..0000000000 --- a/app/src/main/res/drawable/selector_tabs_dots.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/shape_circle.xml b/app/src/main/res/drawable/shape_circle.xml deleted file mode 100644 index 59a662d141..0000000000 --- a/app/src/main/res/drawable/shape_circle.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/shape_ellipse.xml b/app/src/main/res/drawable/shape_ellipse.xml deleted file mode 100644 index ca6cad24b5..0000000000 --- a/app/src/main/res/drawable/shape_ellipse.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/shape_rectangle_rounded_8.xml b/app/src/main/res/drawable/shape_rectangle_rounded_8.xml deleted file mode 100644 index 4f20cb0e64..0000000000 --- a/app/src/main/res/drawable/shape_rectangle_rounded_8.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/app/src/main/res/drawable/shape_refresh_button.xml b/app/src/main/res/drawable/shape_refresh_button.xml deleted file mode 100644 index cade7f63f3..0000000000 --- a/app/src/main/res/drawable/shape_refresh_button.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/shape_success_circle.xml b/app/src/main/res/drawable/shape_success_circle.xml deleted file mode 100644 index d6c04dd519..0000000000 --- a/app/src/main/res/drawable/shape_success_circle.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout-h680dp/layout_onboarding_container_bottom.xml b/app/src/main/res/layout-h680dp/layout_onboarding_container_bottom.xml deleted file mode 100644 index 131299d4d5..0000000000 --- a/app/src/main/res/layout-h680dp/layout_onboarding_container_bottom.xml +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/btn_expand_collapse.xml b/app/src/main/res/layout/btn_expand_collapse.xml deleted file mode 100644 index 8d9c220409..0000000000 --- a/app/src/main/res/layout/btn_expand_collapse.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/buy_with_googlepay_button.xml b/app/src/main/res/layout/buy_with_googlepay_button.xml deleted file mode 100755 index 2553181fd8..0000000000 --- a/app/src/main/res/layout/buy_with_googlepay_button.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - diff --git a/app/src/main/res/layout/dialog_onboarding_address_info.xml b/app/src/main/res/layout/dialog_onboarding_address_info.xml deleted file mode 100644 index 258b3fbbcc..0000000000 --- a/app/src/main/res/layout/dialog_onboarding_address_info.xml +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/fragment_onboarding_main.xml b/app/src/main/res/layout/fragment_onboarding_main.xml deleted file mode 100644 index b184df2cd2..0000000000 --- a/app/src/main/res/layout/fragment_onboarding_main.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_onboarding_wallet.xml b/app/src/main/res/layout/fragment_onboarding_wallet.xml deleted file mode 100644 index 98ad59717a..0000000000 --- a/app/src/main/res/layout/fragment_onboarding_wallet.xml +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/item_backup_info_adapter.xml b/app/src/main/res/layout/item_backup_info_adapter.xml deleted file mode 100644 index 46b359a8f1..0000000000 --- a/app/src/main/res/layout/item_backup_info_adapter.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/layout_backup_access_code.xml b/app/src/main/res/layout/layout_backup_access_code.xml deleted file mode 100644 index f402774903..0000000000 --- a/app/src/main/res/layout/layout_backup_access_code.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/layout_backup_access_code_info.xml b/app/src/main/res/layout/layout_backup_access_code_info.xml deleted file mode 100644 index 5095c1eca0..0000000000 --- a/app/src/main/res/layout/layout_backup_access_code_info.xml +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/layout_backup_access_code_submit.xml b/app/src/main/res/layout/layout_backup_access_code_submit.xml deleted file mode 100644 index 58b97cc2a6..0000000000 --- a/app/src/main/res/layout/layout_backup_access_code_submit.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/layout_onboarding_buttons_add_cards.xml b/app/src/main/res/layout/layout_onboarding_buttons_add_cards.xml deleted file mode 100644 index a6fd01cc5b..0000000000 --- a/app/src/main/res/layout/layout_onboarding_buttons_add_cards.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/layout_onboarding_buttons_common.xml b/app/src/main/res/layout/layout_onboarding_buttons_common.xml deleted file mode 100644 index 2e53801d0c..0000000000 --- a/app/src/main/res/layout/layout_onboarding_buttons_common.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - diff --git a/app/src/main/res/layout/layout_onboarding_container_bottom.xml b/app/src/main/res/layout/layout_onboarding_container_bottom.xml deleted file mode 100644 index 42668c1561..0000000000 --- a/app/src/main/res/layout/layout_onboarding_container_bottom.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/layout/layout_onboarding_container_top.xml b/app/src/main/res/layout/layout_onboarding_container_top.xml deleted file mode 100644 index d3708a8bfc..0000000000 --- a/app/src/main/res/layout/layout_onboarding_container_top.xml +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/layout_onboarding_main.xml b/app/src/main/res/layout/layout_onboarding_main.xml deleted file mode 100644 index 29b34f187f..0000000000 --- a/app/src/main/res/layout/layout_onboarding_main.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/layout_onboarding_manage_tokens.xml b/app/src/main/res/layout/layout_onboarding_manage_tokens.xml deleted file mode 100644 index cf08eaf50b..0000000000 --- a/app/src/main/res/layout/layout_onboarding_manage_tokens.xml +++ /dev/null @@ -1,5 +0,0 @@ - - \ No newline at end of file diff --git a/app/src/main/res/layout/layout_onboarding_seed_phrase.xml b/app/src/main/res/layout/layout_onboarding_seed_phrase.xml deleted file mode 100644 index 017730394f..0000000000 --- a/app/src/main/res/layout/layout_onboarding_seed_phrase.xml +++ /dev/null @@ -1,5 +0,0 @@ - - \ No newline at end of file diff --git a/app/src/main/res/layout/layout_pseudo_toolbar.xml b/app/src/main/res/layout/layout_pseudo_toolbar.xml deleted file mode 100644 index 361f8cbb40..0000000000 --- a/app/src/main/res/layout/layout_pseudo_toolbar.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - diff --git a/app/src/main/res/layout/layout_warning.xml b/app/src/main/res/layout/layout_warning.xml deleted file mode 100644 index 9c19796c5b..0000000000 --- a/app/src/main/res/layout/layout_warning.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - diff --git a/app/src/main/res/layout/layout_warning_card_action.xml b/app/src/main/res/layout/layout_warning_card_action.xml deleted file mode 100644 index 3b9177f441..0000000000 --- a/app/src/main/res/layout/layout_warning_card_action.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - -