Skip to content

Commit 82b5fa5

Browse files
author
Targholi
committed
add :core:navigation.
1 parent b84c357 commit 82b5fa5

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/navigation/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

core/navigation/build.gradle.kts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
@Suppress("DSL_SCOPE_VIOLATION")
2+
plugins {
3+
id("com.android.library")
4+
id("kotlin-android")
5+
id("kotlin-kapt")
6+
// id("dagger.hilt.android.plugin")
7+
}
8+
9+
10+
android {
11+
namespace = "com.milad.navigation"
12+
compileSdk = 32
13+
14+
}
15+
16+
dependencies {
17+
implementation(project(":core:model"))
18+
// implementation(project(":core:network"))
19+
20+
// implementation(libs.hilt.android)
21+
// kapt(libs.hilt.compiler)
22+
// kapt(libs.hilt.ext.compiler)
23+
//
24+
// implementation(libs.gson)
25+
// implementation(libs.retrofit)
26+
//
27+
// implementation(libs.coroutinesCore)
28+
// implementation(libs.coroutinesAndroid)
29+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest package="com.milad.navigation"/>

settings.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ dependencyResolutionManagement {
1717
rootProject.name = "GitHoob"
1818

1919
include(":app")
20-
include(":core:model")
21-
include(":core:network")
22-
include(":core:data")
20+
include(
21+
":core:model",
22+
":core:network",
23+
":core:data",
24+
":core:navigation"
25+
)

0 commit comments

Comments
 (0)