SimonSimCity / Xamarin-CrossDownloadManager

A cross platform download manager for Xamarin
MIT License
149 stars 68 forks source link

Changing visibility of notifications on Android #61

Closed mhBahrami closed 7 years ago

mhBahrami commented 7 years ago

I think, today, there is no option for changing notifications visibility for Android or iOS. I wanna make download's notification hidden on Android.

By adding the following code

request.SetNotificationVisibility(DownloadVisibility.Hidden);

to StartDownload(DownloadManager, string, bool) in DownloadFileImplementation.cs of Plugin.DownloadManager.Android, it would be done easily.

Can you add this capability to CrossDownloadManager?

SimonSimCity commented 7 years ago

Does this PR answer your request? https://github.com/SimonSimCity/Xamarin-CrossDownloadManager/pull/56

mhBahrami commented 7 years ago

Yeah. That's exactly what I need. Great job!