Merge pull request #40 from YTVanced/dev

Fixed issue with ROMs relaunching service
This commit is contained in:
Paulis Gributs 2020-07-02 12:30:31 +01:00 committed by GitHub
commit d3520f4ab9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 7 deletions

View File

@ -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? {

View File

@ -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? {

View File

@ -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,