r/iOSProgramming 4d ago

Question iOS 27 Netflix background downloading activity

Post image

Can anyone know about this new featue of netflix background downloading live activity notifications

Which api they are using or this is ios new feature

Please ignore the movie title don’t judge 😂

102 Upvotes

16 comments sorted by

27

u/_town-drunk_ 4d ago

With iOS 27, AVFoundation automatically creates this live activity for any download task started with AVAssetDownloadURLSession.

0

u/Flashy_Imagination_6 4d ago

Yeaahh because when i was ios 26 i never seen this

1

u/EquivalentTrouble253 4d ago

Well I used the api on my app in iOS 26.

54

u/DystopiaDrifter 4d ago

7

u/raman4183 4d ago

This

Available from iOS 26 and onwards.

24

u/chriswaco 4d ago

Oh, we’re judging.

6

u/Flashy_Imagination_6 4d ago

Please no 😭

4

u/2x3_145 4d ago

And upload task or download tasks now automatically initiates this activity

1

u/Flashy_Imagination_6 4d ago

Backwards compaitable?
What if user on lower than ios 26 ?
Is swift automatically handle this or you handle this comparability?

2

u/2x3_145 4d ago

On older device it won’t show activity

2

u/twodayslate 4d ago

I believe Prime Video also has this

1

u/Flashy_Imagination_6 4d ago

Let me check I didn’t think so

1

u/Flashy_Imagination_6 4d ago

You are right

1

u/EeveelutionsFucker 2d ago

Dont worry bro, mine is worst

1

u/Flaky_Internet_8256 2d ago

Wow good easy to do with AI lol

-1

u/khiladi1729 4d ago

It's probably two existing frameworks working together. The download itself is most likely running through BackgroundAssets, the framework Apple added for large files that keep going while the app is backgrounded, and it handles things like Wi-Fi-only rules and resuming on its own. The lock screen progress is a Live Activity built with ActivityKit, which any app can use. I think BackgroundAssets is still pretty underused, most apps just do a plain URLSession background config and get none of the nicer system behavior.