Simplify development for distrib lib

This commit is contained in:
sim 2026-01-08 16:46:30 +01:00
parent 75539155fa
commit 3061ff8a59
2 changed files with 11 additions and 5 deletions

View file

@ -62,8 +62,6 @@ android {
} }
dependencies { dependencies {
// implementation(project(":distributor_ui"))
// implementation(project(":distributor"))
implementation(libs.unifiedpush.distributor) implementation(libs.unifiedpush.distributor)
implementation(libs.unifiedpush.distributor.ui) implementation(libs.unifiedpush.distributor.ui)
implementation(libs.androidx.activity.compose) implementation(libs.androidx.activity.compose)

View file

@ -1,6 +1,3 @@
// include(":distributor")
// include(":distributor_ui")
pluginManagement { pluginManagement {
repositories { repositories {
google() google()
@ -19,3 +16,14 @@ dependencyResolutionManagement {
include(":app") include(":app")
rootProject.name = "Sunup" rootProject.name = "Sunup"
// includeBuild("../android-distributor") {
// dependencySubstitution {
// substitute(
// module("org.unifiedpush.android:distributor")
// ).using(project(":distributor"))
// substitute(
// module("org.unifiedpush.android:distributor-ui")
// ).using(project(":distributor_ui"))
// }
// }