mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
11 lines
308 B
Kotlin
11 lines
308 B
Kotlin
|
package com.github.libretube
|
||
|
|
||
|
import android.os.Bundle
|
||
|
import androidx.preference.PreferenceFragmentCompat
|
||
|
|
||
|
class Settings : PreferenceFragmentCompat() {
|
||
|
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
|
||
|
setPreferencesFromResource(R.xml.settings, rootKey)
|
||
|
}
|
||
|
}
|