28 lines
639 B
Kotlin
28 lines
639 B
Kotlin
/*
|
|
* 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 {
|
|
|
|
}
|
|
}
|
|
}
|