Skip to content

Commit cc21038

Browse files
committed
Fetaure: ComposeApp strucutured by Feature (launches, schedules, electricity)
1 parent 3791815 commit cc21038

File tree

93 files changed

+1598
-701
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1598
-701
lines changed

.idea/compiler.xml

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

.idea/gradle.xml

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/versions/dependencies/debugRuntimeClasspathDependencies.txt

Lines changed: 232 additions & 121 deletions
Large diffs are not rendered by default.

app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt

Lines changed: 209 additions & 98 deletions
Large diffs are not rendered by default.

app/versions/dependencies/releaseRuntimeClasspathDependencies.txt

Lines changed: 232 additions & 121 deletions
Large diffs are not rendered by default.

app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt

Lines changed: 209 additions & 98 deletions
Large diffs are not rendered by default.
624 Bytes
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
plugins {
2+
id("composeapp.multiplatform-library-conventions")
3+
alias(libs.plugins.kotlinx.serialization)
4+
}
5+
6+
android {
7+
namespace = "com.jarroyo.feature.common.api"
8+
resourcePrefix = "common_api_"
9+
defaultConfig {
10+
consumerProguardFiles("$projectDir/proguard-home-api-consumer-rules.pro")
11+
}
12+
}
13+
14+
kotlin {
15+
sourceSets {
16+
commonMain.dependencies {
17+
api(libs.kotlinx.serialization)
18+
19+
implementation(projects.modules.libraryNavigationApi)
20+
implementation(projects.modules.libraryNetworkApi)
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)