mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Fix request ignore battery optimizations
This commit is contained in:
parent
ae7166a699
commit
662cc8edf9
1 changed files with 19 additions and 17 deletions
|
@ -1,5 +1,7 @@
|
|||
package io.nekohasekai.sfa.ui.main
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import android.app.Activity
|
||||
import android.content.Intent
|
||||
import android.net.Uri
|
||||
import android.os.Build
|
||||
|
@ -8,6 +10,7 @@ import android.view.LayoutInflater
|
|||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import androidx.activity.result.contract.ActivityResultContracts
|
||||
import androidx.annotation.RequiresApi
|
||||
import androidx.core.view.isGone
|
||||
import androidx.core.view.isVisible
|
||||
import androidx.fragment.app.Fragment
|
||||
|
@ -32,24 +35,25 @@ import kotlinx.coroutines.withContext
|
|||
|
||||
class SettingsFragment : Fragment() {
|
||||
|
||||
private var binding: FragmentSettingsBinding? = null
|
||||
private lateinit var binding: FragmentSettingsBinding
|
||||
override fun onCreateView(
|
||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||
): View {
|
||||
val binding = FragmentSettingsBinding.inflate(inflater, container, false)
|
||||
this.binding = binding
|
||||
binding = FragmentSettingsBinding.inflate(inflater, container, false)
|
||||
onCreate()
|
||||
return binding.root
|
||||
}
|
||||
|
||||
@RequiresApi(Build.VERSION_CODES.M)
|
||||
private val requestIgnoreBatteryOptimizations = registerForActivityResult(
|
||||
ActivityResultContracts.StartActivityForResult()
|
||||
) { _ ->
|
||||
lifecycleScope.launch(Dispatchers.IO) {
|
||||
reloadSettings()
|
||||
) { result ->
|
||||
if (result.resultCode == Activity.RESULT_OK) {
|
||||
binding.backgroundPermissionCard.isVisible = false
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressLint("BatteryLife")
|
||||
private fun onCreate() {
|
||||
val activity = activity as MainActivity? ?: return
|
||||
val binding = binding ?: return
|
||||
|
@ -92,13 +96,16 @@ class SettingsFragment : Fragment() {
|
|||
binding.dontKillMyAppButton.setOnClickListener {
|
||||
it.context.launchCustomTab("https://dontkillmyapp.com/")
|
||||
}
|
||||
binding.requestIgnoreBatteryOptimizationsButton.setOnClickListener {
|
||||
requestIgnoreBatteryOptimizations.launch(
|
||||
Intent(
|
||||
android.provider.Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS,
|
||||
Uri.parse("package:${Application.application.packageName}")
|
||||
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||
binding.requestIgnoreBatteryOptimizationsButton.setOnClickListener {
|
||||
requestIgnoreBatteryOptimizations.launch(
|
||||
Intent(
|
||||
android.provider.Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS,
|
||||
Uri.parse("package:${Application.application.packageName}")
|
||||
)
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
binding.configureOverridesButton.setOnClickListener {
|
||||
startActivity(Intent(requireContext(), ProfileOverrideActivity::class.java))
|
||||
|
@ -140,9 +147,4 @@ class SettingsFragment : Fragment() {
|
|||
}
|
||||
}
|
||||
|
||||
override fun onDestroyView() {
|
||||
super.onDestroyView()
|
||||
binding = null
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue