DownloadPreference: Move APK post-install setting to InstallationPreference

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2024-10-08 18:10:53 +05:30
parent 00347ae4fc
commit a5c85939ed
61 changed files with 10 additions and 148 deletions

View File

@@ -1,45 +0,0 @@
/*
* Aurora Store
* Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
*
* Aurora Store is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Aurora Store is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
*
*/
package com.aurora.store.view.ui.preferences
import android.os.Bundle
import android.view.View
import androidx.appcompat.widget.Toolbar
import androidx.navigation.fragment.findNavController
import androidx.preference.PreferenceFragmentCompat
import com.aurora.store.R
import dagger.hilt.android.AndroidEntryPoint
@AndroidEntryPoint
class DownloadPreference : PreferenceFragmentCompat() {
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
setPreferencesFromResource(R.xml.preferences_download, rootKey)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
view.findViewById<Toolbar>(R.id.toolbar)?.apply {
title = getString(R.string.pref_app_download)
setNavigationOnClickListener { findNavController().navigateUp() }
}
}
}

View File

@@ -46,10 +46,6 @@ class SettingsFragment : PreferenceFragmentCompat() {
findNavController().navigate(R.id.UIPreference)
true
}
findPreference<Preference>("pref_download")?.setOnPreferenceClickListener {
findNavController().navigate(R.id.downloadPreference)
true
}
findPreference<Preference>("pref_network")?.setOnPreferenceClickListener {
findNavController().navigate(R.id.networkPreference)
true