Coverage Summary for Class: MainActivity (com.codandotv.streamplayerapp.presentation)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| MainActivity |
0%
(0/1)
|
0%
(0/2)
|
|
0%
(0/3)
|
0%
(0/12)
|
package com.codandotv.streamplayerapp.presentation
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import com.codandotv.streamplayerapp.StreamPlayerApp
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
StreamPlayerApp()
}
}
}