1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-30 00:53:19 +00:00
NewPipe/app/src/main/java/org/schabi/newpipe/settings/NotificationSettingsFragment.kt

10 lines
266 B
Kotlin
Raw Normal View History

package org.schabi.newpipe.settings
import android.os.Bundle
class NotificationSettingsFragment : BasePreferenceFragment() {
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
addPreferencesFromResourceRegistry()
}
2020-10-31 20:55:45 +00:00
}