Skip to content

Commit

Permalink
feature #866: add designsystem dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
chattymin committed Sep 21, 2024
1 parent e637204 commit f4a89a9
Showing 1 changed file with 1 addition and 30 deletions.
31 changes: 1 addition & 30 deletions feature/fortune/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,13 @@ plugins {
}

android {
defaultConfig {
vectorDrawables {
useSupportLibrary = true
}
}
libraryVariants.all {
sourceSets {
getByName(name) {
java.srcDir("build/generated/ksp/$name/kotlin")
}
}
}
namespace = "org.sopt.official.feature.fortune"
}

dependencies {
// core
implementation(projects.core.common)
implementation(projects.core.designsystem)
implementation(projects.core.analytics)

// compose
Expand All @@ -44,21 +33,3 @@ dependencies {
androidTestImplementation(libs.bundles.android.test)
debugImplementation(libs.bundles.compose.android.test)
}

secrets {
defaultPropertiesFileName = "secrets.defaults.properties"

ignoreList.add("sdk.*")
}

ktlint {
android.set(true)
debug.set(true)
coloredOutput.set(true)
verbose.set(true)
outputToConsole.set(true)
filter {
exclude { projectDir.toURI().relativize(it.file.toURI()).path.contains("/generated/") }
exclude { it.file.name.contains("gradle") }
}
}

0 comments on commit f4a89a9

Please sign in to comment.