-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f60f14c
commit 2ae4175
Showing
3 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
examples/android-library/src/main/java/it/example/component/Example.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package it.example.component | ||
|
||
import org.koin.core.annotation.ComponentScan | ||
import org.koin.core.annotation.Module | ||
import org.koin.core.annotation.Single | ||
|
||
@Module | ||
@ComponentScan | ||
class ExampleModule | ||
|
||
@Single | ||
class ExampleSingleton |
3 changes: 2 additions & 1 deletion
3
examples/android-library/src/main/java/org/koin/sample/android/library/CommonModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
package org.koin.sample.android.library | ||
|
||
import it.example.component.ExampleModule | ||
import org.koin.core.annotation.ComponentScan | ||
import org.koin.core.annotation.Module | ||
|
||
@Module | ||
@Module(includes = [ExampleModule::class]) | ||
@ComponentScan | ||
class CommonModule |