diff --git a/feature/home/.gitignore b/feature/home/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/feature/home/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/feature/home/build.gradle.kts b/feature/home/build.gradle.kts new file mode 100644 index 0000000..21508be --- /dev/null +++ b/feature/home/build.gradle.kts @@ -0,0 +1,20 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + alias(libs.plugins.sopt.plugin.feature) + alias(libs.plugins.kotlin.android) +} +android { + namespace = "org.sopt.home" + + buildFeatures { + viewBinding = true + } +} +dependencies { + implementation(projects.core.data) + implementation(projects.core.domain) + implementation(libs.appcompat) + implementation(libs.material) + implementation(libs.androidx.activity) + implementation(libs.constraintlayout) +} \ No newline at end of file diff --git a/feature/home/consumer-rules.pro b/feature/home/consumer-rules.pro new file mode 100644 index 0000000..e69de29 diff --git a/feature/home/src/main/AndroidManifest.xml b/feature/home/src/main/AndroidManifest.xml new file mode 100644 index 0000000..a5918e6 --- /dev/null +++ b/feature/home/src/main/AndroidManifest.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file