mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-02 01:02:39 +00:00
returned START_NOT_STICKY instead of START_STICKY because some ROMs are drunk
This commit is contained in:
parent
d90812d3ad
commit
d4ee7e7351
3 changed files with 2 additions and 7 deletions
|
@ -29,7 +29,7 @@ class AppInstaller: Service() {
|
|||
inputStream.close()
|
||||
outputStream.close()
|
||||
session.commit(pendingIntent.intentSender)
|
||||
return START_STICKY
|
||||
return START_NOT_STICKY
|
||||
}
|
||||
|
||||
override fun onBind(intent: Intent?): IBinder? {
|
||||
|
|
|
@ -13,7 +13,7 @@ class SplitInstaller: Service() {
|
|||
|
||||
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||
installSplitApk(this)
|
||||
return START_STICKY
|
||||
return START_NOT_STICKY
|
||||
}
|
||||
|
||||
override fun onBind(intent: Intent?): IBinder? {
|
||||
|
|
|
@ -12,7 +12,6 @@ import android.widget.ProgressBar
|
|||
import android.widget.TextView
|
||||
import android.widget.Toast
|
||||
import androidx.fragment.app.DialogFragment
|
||||
import androidx.preference.PreferenceManager
|
||||
import com.dezlum.codelabs.getjson.GetJson
|
||||
import com.downloader.Error
|
||||
import com.downloader.OnDownloadListener
|
||||
|
@ -74,10 +73,6 @@ class UpdateCheckFragment : DialogFragment() {
|
|||
}
|
||||
.start(object : OnDownloadListener{
|
||||
override fun onDownloadComplete() {
|
||||
val prefs = PreferenceManager.getDefaultSharedPreferences(requireContext())
|
||||
prefs.getBoolean("isUpgrading", false)
|
||||
prefs.edit().putBoolean("isUpgrading", true).apply()
|
||||
|
||||
activity?.let {
|
||||
installApp(
|
||||
it,
|
||||
|
|
Loading…
Reference in a new issue