mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
15 lines
404 B
Kotlin
15 lines
404 B
Kotlin
package com.github.libretube.extensions
|
|
|
|
import android.os.Bundle
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
import com.github.libretube.util.ThemeHelper
|
|
|
|
open class BaseActivity : AppCompatActivity() {
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
// set the app theme (e.g. Material You)
|
|
ThemeHelper.updateTheme(this)
|
|
|
|
super.onCreate(savedInstanceState)
|
|
}
|
|
}
|