What I am trying to do:- I am trying to build a custom SDK (via swift package manager) which my clients will just import and leverage the features. My custom SDK helps connect devices and then read data. I am fusing some cloud uploading functionality in my SDK, which basically uploads the data to our server, cause we also want that data.
Problem:- Now, the problem is to make sure that uploading of data happens. I am planning to create a background service which would continuously run and make sure that any not-uploaded files gets uploaded. The problem is IOS doesn't have an option like Services (like in Android) and I am seeing that Background-Fetch could work.
But The real issue is that I am building an SDK.
So, my question:- Is it even possible to make background fetch functionality available in an SDK/ swift package?