Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
Application: Don't wrap modules in a list
Browse files Browse the repository at this point in the history
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
  • Loading branch information
msfjarvis committed May 21, 2019
1 parent 5bf8073 commit ea332dd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/src/main/java/com/wireguard/android/Application.kt
Expand Up @@ -49,7 +49,13 @@ class Application : android.app.Application() {

startKoin {
androidContext(this@Application)
modules(listOf(configStoreModule, earlyInitModules, backendModule, backendAsyncModule, toolsInstallerModule))
modules(
configStoreModule,
earlyInitModules,
backendModule,
backendAsyncModule,
toolsInstallerModule
)
}

if (BuildConfig.DEBUG)
Expand Down

0 comments on commit ea332dd

Please sign in to comment.