-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathApp.kt
More file actions
27 lines (23 loc) · 639 Bytes
/
App.kt
File metadata and controls
27 lines (23 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* SPDX-FileCopyrightText: 2026 NewPipe e.V. <https://newpipe-ev.de>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package net.newpipe.app
import androidx.compose.runtime.Composable
import net.newpipe.app.module.platformModule
import net.newpipe.app.theme.AppTheme
import org.koin.compose.KoinMultiplatformApplication
import org.koin.core.annotation.KoinExperimentalAPI
import org.koin.dsl.koinConfiguration
@OptIn(KoinExperimentalAPI::class)
@Composable
fun App() {
KoinMultiplatformApplication(
config = koinConfiguration {
modules(platformModule)
}
) {
AppTheme {
}
}
}