From f2a91e4dea3ef20091a71b661fea001824412aef Mon Sep 17 00:00:00 2001 From: Sad Ellie Date: Tue, 23 May 2023 11:07:50 +0300 Subject: [PATCH] Get rid of unit groups module --- data/unitgroups/.gitignore | 1 - data/unitgroups/build.gradle.kts | 34 -------------------- data/unitgroups/consumer-rules.pro | 0 data/unitgroups/src/main/AndroidManifest.xml | 22 ------------- feature/settings/build.gradle.kts | 1 - feature/unitslist/build.gradle.kts | 1 - settings.gradle.kts | 1 - 7 files changed, 60 deletions(-) delete mode 100644 data/unitgroups/.gitignore delete mode 100644 data/unitgroups/build.gradle.kts delete mode 100644 data/unitgroups/consumer-rules.pro delete mode 100644 data/unitgroups/src/main/AndroidManifest.xml diff --git a/data/unitgroups/.gitignore b/data/unitgroups/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/data/unitgroups/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/data/unitgroups/build.gradle.kts b/data/unitgroups/build.gradle.kts deleted file mode 100644 index 0f477e00..00000000 --- a/data/unitgroups/build.gradle.kts +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Unitto is a unit converter for Android - * Copyright (c) 2023 Elshan Agaev - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -plugins { - id("unitto.library") - id("unitto.android.hilt") -} - -android { - namespace = "com.sadellie.unitto.data.unitgroups" -} - -dependencies { - testImplementation(libs.junit) - implementation(libs.org.burnoutcrew.composereorderable) - - implementation(project(mapOf("path" to ":core:base"))) - implementation(project(mapOf("path" to ":data:model"))) -} diff --git a/data/unitgroups/consumer-rules.pro b/data/unitgroups/consumer-rules.pro deleted file mode 100644 index e69de29b..00000000 diff --git a/data/unitgroups/src/main/AndroidManifest.xml b/data/unitgroups/src/main/AndroidManifest.xml deleted file mode 100644 index 7bdbce91..00000000 --- a/data/unitgroups/src/main/AndroidManifest.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/feature/settings/build.gradle.kts b/feature/settings/build.gradle.kts index 6c71d480..9badfbd5 100644 --- a/feature/settings/build.gradle.kts +++ b/feature/settings/build.gradle.kts @@ -33,7 +33,6 @@ dependencies { implementation(project(mapOf("path" to ":data:common"))) implementation(project(mapOf("path" to ":data:model"))) - implementation(project(mapOf("path" to ":data:unitgroups"))) implementation(project(mapOf("path" to ":data:userprefs"))) implementation(project(mapOf("path" to ":data:licenses"))) } diff --git a/feature/unitslist/build.gradle.kts b/feature/unitslist/build.gradle.kts index e4009c16..065310e6 100644 --- a/feature/unitslist/build.gradle.kts +++ b/feature/unitslist/build.gradle.kts @@ -32,5 +32,4 @@ dependencies { implementation(project(mapOf("path" to ":data:userprefs"))) implementation(project(mapOf("path" to ":data:units"))) implementation(project(mapOf("path" to ":data:database"))) - implementation(project(mapOf("path" to ":data:unitgroups"))) } \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index 69bc9f2f..a9bf3582 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -27,7 +27,6 @@ include(":feature:calculator") include(":feature:datedifference") include(":feature:settings") include(":data:userprefs") -include(":data:unitgroups") include(":data:licenses") // include(":data:epoch") include(":data:calculator")