Created
December 13, 2020 20:54
-
-
Save jobinlawrance/bb2d2d749dda507a5a0adc6246d0393f to your computer and use it in GitHub Desktop.
Revisions
-
jobinlawrance revised this gist
Dec 13, 2020 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ class TestHomeApplication: HomeApplication { // make HomeApplication open at this point override fun onCreate() { @@ -8,4 +9,4 @@ class TestHomeApplication: HomeApplication { // make HomeApplication open at thi val testModule = module { single(override = true) { ... } } -
jobinlawrance created this gist
Dec 13, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ class TestHomeApplication: HomeApplication { // make HomeApplication open at this point override fun onCreate() { super.onCreate() koinApplication.modules(testModule) } } val testModule = module { single(override = true) { ... } }