I've added a background downloads extension to my app and added device console logging to every method in the placeholder code created by XCode, then installed the app to the phone.
When I run the following command:
xcrun backgroundassets-debug --app-bundle-id com.myCompany.myApp --device-id 00008110-001E0DDA0AB8801E --simulate --app-update
and watch the console log - there's none of my logging from within the extension.
In the OS log I can see this:
error 11:24:41.550702-0700 backgroundassets.user Event (1) dropped for client () failed because client Info dictionary is missing its 'BAManifestURL' key.
The template generated code says this: "The manifest that is downloaded is determined by BAManifestURL
defined in the application's Info.plist
"
So I tried adding a key of BAManifestURL with a url hoping to initially just get the extension launching. But I still get the error saying the info dictionary is missing the BAManifestURL key.
So exactly how should the BAManifestURL key value pair be added to the info.plist?