Android notification issue

Hello, my name is Joan Hueso and I’m developing a 360 video app for Android.

I’m trying to use this package (Simple Android Notifications Free | Integration | Unity Asset Store) to show a notification when the download of the video is over and the app is running in background.

I use NotificationManager.Send(TimeSpan.FromSeconds(5), “Simple notification”, “Customize icon and color”, new Color(1, 0.3f, 0.15f)); at the funtion that runs in background but app crash every time.

Do you know how can I show the download progress or a notification when the download is completed?

Thank you very much :smile:

For downloads, you can check progress of the download. Both www and the unityWebRequest have ways to check if it’s done, had an error, etc. Unity - Scripting API: WWW You can see the isDone and Progress properties

For download I’m using webClient because there are too big size and it works. The problem is when download is over and the funtion that makes notification apears crash the app

Sounds like you need to use Logcat to debug why your app is crashing. There isn’t a way for us to help you if you don’t have an error/crash report to share.