Skip to content

Commit

Permalink
[add] #7 network dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed May 3, 2024
1 parent 88935c9 commit e8e529b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ dependencies {
implementation(projects.core.database)
implementation(projects.core.common)
implementation(projects.core.data)
implementation(projects.core.network)
implementation(projects.feature.main)
}
5 changes: 4 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:name="com.sopt.now.compose.SoptApp"
android:allowBackup="true"
Expand All @@ -12,12 +14,13 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.NOWSOPTAndroid"
android:usesCleartextTraffic="true"
tools:targetApi="31">
<activity
android:name="org.sopt.main.navigator.MainActivity"
android:exported="true"
android:label="@string/title_activity_main"
android:theme="@style/Theme.NOWSOPTAndroid" >
android:theme="@style/Theme.NOWSOPTAndroid">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down

0 comments on commit e8e529b

Please sign in to comment.