mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
15 lines
380 B
Kotlin
15 lines
380 B
Kotlin
package com.github.libretube
|
|
|
|
import android.app.Activity
|
|
import android.os.Bundle
|
|
import com.google.android.material.color.DynamicColors
|
|
|
|
class Player : Activity() {
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
DynamicColors.applyToActivityIfAvailable(this)
|
|
super.onCreate(savedInstanceState)
|
|
setContentView(R.layout.activity_player)
|
|
}
|
|
}
|