Skip to content

Commit

Permalink
[feat] #4 home module
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Apr 13, 2024
1 parent d18eef8 commit 2adc769
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions feature/home/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
20 changes: 20 additions & 0 deletions feature/home/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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)
}
Empty file added feature/home/consumer-rules.pro
Empty file.
4 changes: 4 additions & 0 deletions feature/home/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>

0 comments on commit 2adc769

Please sign in to comment.