mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-23 03:25:06 +03:00
24 lines
583 B
Kotlin
24 lines
583 B
Kotlin
@file:Suppress("NOTHING_TO_INLINE")
|
|
|
|
package ru.fromchat
|
|
|
|
import android.os.Bundle
|
|
import androidx.activity.ComponentActivity
|
|
import androidx.activity.compose.setContent
|
|
import androidx.activity.enableEdgeToEdge
|
|
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
|
|
import ru.fromchat.ui.App
|
|
|
|
class MainActivity : ComponentActivity() {
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
installSplashScreen()
|
|
enableEdgeToEdge()
|
|
|
|
setContent {
|
|
App()
|
|
}
|
|
}
|
|
}
|
|
|