Post not yet marked as solved
Hi,
I'm getting warning in my Swift package where one of external dependency supports from iOS8.0, is it as bug in xcode or do we need to ask 3rd party developer to remove iOS8.0 supports, i believe they need to support library in cocoapods for iOS8.0 as well
Warning:
IPHONEOSDEPLOYMENTTARGET is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99
Forum thread: https://forums.swift.org/t/unable-to-import-multiple-targets-from-external-dependency/39030/3
Post not yet marked as solved
Sometimes widget UI does not refresh immediately even if you call reloadAllTimelines and takes 2-3 minutes to reflect that change in UI in gallery and home screen, is it known bug or anything i'm missing which i'm not sure of atm
Post not yet marked as solved
When i debug on simulator or device most of them time my widget shows black screen or flickers a lot, i guess during loading async data in timeline provider it has to show placeholder but it's not happening at all, in release build it's better than debug build but still placeholder does not show anyone has same issue or any solution?
NOTE: My widget is intent configuration based and provides dynamic option
Post not yet marked as solved
I’m trying to load remote image in widget ui but unfortunately when image downloaded widget body is not called again sometimes to render image but same code works fine regular swiftui project, please let me know if there is any solution to it since it’s release blocker, below is pseudocode sorry i typed from my mobile
Struct ContentView: View {
@ObservedObject vat imageLoader: ImageLoader
var body: some view {
Text(some text)
if let image = imageLoader.image {
Image(uiimage: image)
.resizable()
.frame(width:40, height:40)
}
}.onAppear {
imageLoader.load()
}
}
Thanks