mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Fix update notification not allowing installations on some ROMs (like MIUI)
This commit is contained in:
		@@ -106,15 +106,18 @@ class UpdateDownloaderService : IntentService(UpdateDownloaderService::class.jav
 | 
			
		||||
                throw Exception("Unsuccessful response")
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            val installIntent = UpdateNotificationReceiver.installApkIntent(ctx, apkFile.absolutePath)
 | 
			
		||||
 | 
			
		||||
            // Prompt the user to install the new update.
 | 
			
		||||
            NotificationCompat.Builder(this).update {
 | 
			
		||||
                setContentTitle(getString(R.string.app_name))
 | 
			
		||||
                setContentText(getString(R.string.update_check_notification_download_complete))
 | 
			
		||||
                setSmallIcon(android.R.drawable.stat_sys_download_done)
 | 
			
		||||
                // Install action
 | 
			
		||||
                setContentIntent(installIntent)
 | 
			
		||||
                addAction(R.drawable.ic_system_update_grey_24dp_img,
 | 
			
		||||
                        getString(R.string.action_install),
 | 
			
		||||
                        UpdateNotificationReceiver.installApkIntent(ctx, apkFile.absolutePath))
 | 
			
		||||
                        installIntent)
 | 
			
		||||
                // Cancel action
 | 
			
		||||
                addAction(R.drawable.ic_clear_grey_24dp_img,
 | 
			
		||||
                        getString(R.string.action_cancel),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user