diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 91ee07995e..6502728cd8 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -222,8 +222,9 @@ dependencies { implementation(projects.features.usedesk.impl) implementation(projects.features.hotWallet.api) implementation(projects.features.hotWallet.impl) - implementation(projects.features.kyc.api) - implementation(projects.features.kyc.impl) + //TODO disable for release because of the permissions + // implementation(projects.features.kyc.api) + // implementation(projects.features.kyc.impl) implementation(projects.features.welcome.api) implementation(projects.features.welcome.impl) implementation(projects.features.createWalletSelection.api) diff --git a/features/kyc/impl/build.gradle.kts b/features/kyc/impl/build.gradle.kts index 1bf8fc66f2..3e07cc6bd5 100644 --- a/features/kyc/impl/build.gradle.kts +++ b/features/kyc/impl/build.gradle.kts @@ -13,7 +13,8 @@ android { dependencies { /** Api */ - implementation(projects.features.kyc.api) + //TODO disable for release because of the permissions + // implementation(projects.features.kyc.api) /** Domain */ implementation(projects.domain.visa) diff --git a/settings.gradle.kts b/settings.gradle.kts index faba1334a8..f4529d9172 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -249,8 +249,9 @@ include(":features:walletconnect:impl") include(":features:hot-wallet:api") include(":features:hot-wallet:impl") -include(":features:kyc:api") -include(":features:kyc:impl") +//TODO disable for release because of the permissions +// include(":features:kyc:api") +// include(":features:kyc:impl") include(":features:create-wallet-selection:api") include(":features:create-wallet-selection:impl")