Skip to content

Commit

Permalink
[feat] #7 add network module
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed May 1, 2024
1 parent 42332a6 commit 88935c9
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/network/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
19 changes: 19 additions & 0 deletions core/network/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
alias(libs.plugins.sopt.android.library)
alias(libs.plugins.sopt.android.hilt)
alias(libs.plugins.kotlin.serialization)
}

android {
namespace = "org.sopt.network"
}

dependencies {
implementation(projects.core.common)
implementation(projects.core.datastore)
implementation(libs.bundles.coroutine)
implementation(libs.kotlinx.serialization.json)
implementation(libs.retrofit.core)
implementation(libs.retrofit.kotlin.serialization)
implementation(libs.okhttp.logging)
}
Empty file added core/network/consumer-rules.pro
Empty file.
4 changes: 4 additions & 0 deletions core/network/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>
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ include(":core:data-test")
include(":feature:home")
include(":feature:mypage")
include(":feature:search")
include(":core:network")

0 comments on commit 88935c9

Please sign in to comment.