diff --git a/android/festago/.idea/gradle.xml b/android/festago/.idea/gradle.xml
index 4ddc1b665..0a89bd472 100644
--- a/android/festago/.idea/gradle.xml
+++ b/android/festago/.idea/gradle.xml
@@ -12,11 +12,8 @@
-
-
-
diff --git a/android/festago/presentation-legacy/build.gradle.kts b/android/festago/presentation-legacy/build.gradle.kts
index 4a08f8031..2c935b2ae 100644
--- a/android/festago/presentation-legacy/build.gradle.kts
+++ b/android/festago/presentation-legacy/build.gradle.kts
@@ -130,9 +130,6 @@ dependencies {
// turbine
testImplementation("app.cash.turbine:turbine:1.0.0")
- // inApp Update
- implementation("com.google.android.play:app-update-ktx:2.1.0")
-
// splash
implementation("androidx.core:core-splashscreen:1.1.0-alpha02")
}
diff --git a/android/festago/presentation/build.gradle.kts b/android/festago/presentation/build.gradle.kts
index b7a303f75..7336bcc13 100644
--- a/android/festago/presentation/build.gradle.kts
+++ b/android/festago/presentation/build.gradle.kts
@@ -126,9 +126,6 @@ dependencies {
implementation("androidx.activity:activity-ktx:1.7.2")
implementation("androidx.fragment:fragment-ktx:1.6.0")
- // zxing
- implementation("com.journeyapps:zxing-android-embedded:4.3.0")
-
// firebase
implementation("com.google.firebase:firebase-messaging-ktx:23.4.0")
@@ -141,11 +138,11 @@ dependencies {
// turbine
testImplementation("app.cash.turbine:turbine:1.0.0")
- // inApp Update
- implementation("com.google.android.play:app-update-ktx:2.1.0")
-
// splash
implementation("androidx.core:core-splashscreen:1.1.0-alpha02")
+
+ // Update Play Feature Delivery dependency
+ implementation("com.google.android.play:feature-delivery-ktx:2.1.0")
}
fun getSecretKey(propertyKey: String): String {
diff --git a/android/festago/settings.gradle.kts b/android/festago/settings.gradle.kts
index 8777080c5..d00061d53 100644
--- a/android/festago/settings.gradle.kts
+++ b/android/festago/settings.gradle.kts
@@ -14,20 +14,9 @@ dependencyResolutionManagement {
}
}
rootProject.name = "festago"
-// app
-include(":app")
-// common
+include(":app")
include(":common")
-
-// domain
-include(":domain-legacy")
include(":domain")
-
-// presentation
-include(":presentation-legacy")
-
include(":presentation")
-// data
-include(":data-legacy")
include(":data")