Skip to content

Commit

Permalink
[build]: renamed modules
Browse files Browse the repository at this point in the history
  • Loading branch information
F0x1d committed Aug 14, 2024
1 parent e9a5435 commit d1e292a
Show file tree
Hide file tree
Showing 355 changed files with 42 additions and 55 deletions.
26 changes: 6 additions & 20 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,15 @@ android {
}

dependencies {
implementation(projects.feature.featureCrashes)
implementation(projects.feature.featureCrashesCore)
implementation(projects.feature.featureFilters)
implementation(projects.feature.featureFiltersCore)
implementation(projects.feature.featureLogging)
implementation(projects.feature.featureLoggingCore)
implementation(projects.feature.featureRecordings)
implementation(projects.feature.featureRecordingsCore)
implementation(projects.feature.featureSettings)
implementation(projects.feature.featureSetup)
implementation(projects.feature.crashes)
implementation(projects.feature.filters)
implementation(projects.feature.logging)
implementation(projects.feature.recordings)
implementation(projects.feature.settings)
implementation(projects.feature.setup)

implementation(libs.insetter)
implementation(libs.bundles.shizuku)
implementation(libs.viewpump)
implementation(libs.gson)

implementation(libs.coil)
implementation(libs.glide)
ksp(libs.glide.compiler)

implementation(libs.androidx.room)
implementation(libs.androidx.room.runtime)
ksp(libs.androidx.room.compiler)

implementation(libs.bundles.androidx)
implementation(libs.material)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ internal fun DependencyHandlerScope.coreDependencies(withCompose: Boolean = true
implementation(project(":data"))
implementation(project(":strings"))

implementation(project(":core:core-arch"))
implementation(project(":core:core-database"))
implementation(project(":core:core-datetime"))
implementation(project(":core:core-navigation"))
implementation(project(":core:core-preferences"))
implementation(project(":core:core-terminals"))
implementation(project(":core:core-ui"))
implementation(project(":core:arch"))
implementation(project(":core:database"))
implementation(project(":core:datetime"))
implementation(project(":core:navigation"))
implementation(project(":core:preferences"))
implementation(project(":core:terminals"))
implementation(project(":core:ui"))

if (withCompose) {
implementation(project(":core:core-ui-compose"))
testImplementation(project(":core:core-tests"))
implementation(project(":core:ui-compose"))
testImplementation(project(":core:tests"))
}
}

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
}

dependencies {
implementation(projects.core.coreArch)
implementation(projects.core.arch)

implementation(libs.androidx.room)
implementation(libs.androidx.room.runtime)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ plugins {
android.namespace = "com.f0x1d.logfox.datetime"

dependencies {
implementation(projects.core.corePreferences)
implementation(projects.core.preferences)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
android.namespace = "com.f0x1d.logfox.preferences"

dependencies {
implementation(projects.core.coreDatabase)
implementation(projects.core.database)

implementation(libs.flow.preferences)
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
}

dependencies {
implementation(projects.core.coreArch)
implementation(projects.core.arch)

implementation(libs.libsu)
implementation(libs.bundles.shizuku)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ plugins {
android.namespace = "com.f0x1d.logfox.ui.compose"

dependencies {
implementation(projects.core.coreUi)
implementation(projects.core.ui)
}
File renamed without changes.
4 changes: 2 additions & 2 deletions core/core-ui/build.gradle.kts → core/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {
android.namespace = "com.f0x1d.logfox.ui"

dependencies {
implementation(projects.core.coreArch)
implementation(projects.core.corePreferences)
implementation(projects.core.arch)
implementation(projects.core.preferences)

implementation(libs.insetter)
implementation(libs.viewpump)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@

<style name="Widget.LogFox.CardView.Outlined" parent="Widget.Material3.CardView.Outlined">
<item name="cardCornerRadius">10dp</item>
<item name="strokeColor">?colorSecondaryContainer</item>
</style>
</resources>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package com.f0x1d.logfox.feature.crashes.core.repository.reader
import android.content.Context
import com.f0x1d.logfox.database.entity.AppCrash
import com.f0x1d.logfox.database.entity.CrashType
import com.f0x1d.logfox.model.logline.LogLine
import com.f0x1d.logfox.feature.crashes.core.repository.reader.base.BaseCrashDetector
import com.f0x1d.logfox.model.logline.LogLine

internal class JavaCrashDetector(
context: Context,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
android.namespace = "com.f0x1d.logfox.feature.crashes"

dependencies {
implementation(projects.feature.featureAppsPicker)
implementation(projects.feature.featureCrashesCore)
implementation(projects.feature.appsPicker)
implementation(projects.feature.crashesCore)

implementation(libs.glide)
}
12 changes: 0 additions & 12 deletions feature/feature-logging/build.gradle.kts

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
android.namespace = "com.f0x1d.logfox.feature.filters"

dependencies {
implementation(projects.feature.featureAppsPicker)
implementation(projects.feature.featureFiltersCore)
implementation(projects.feature.appsPicker)
implementation(projects.feature.filtersCore)

implementation(libs.gson)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions feature/logging/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
plugins {
id("logfox.android.feature")
}

android.namespace = "com.f0x1d.logfox.feature.logging"

dependencies {
implementation(projects.feature.crashesCore)
implementation(projects.feature.filtersCore)
implementation(projects.feature.loggingCore)
implementation(projects.feature.recordingsCore)
}
Loading

0 comments on commit d1e292a

Please sign in to comment.