Also having this issue. Will post FB number with sysdiagnose etc.
Post
Replies
Boosts
Views
Activity
This should help: https://developer.apple.com/documentation/xcode/enabling-developer-mode-on-a-device
Please contact https://developer.apple.com/support. They should be able to sort it out.
Hi hmsquad! Yes, add your widget code to your main app target membership and include that code wherever you like. I am assuming you are talking about SwiftUI code, here.
Hope that helps and happy coding!
Yes this would be great to know.
Yes, this works nicely, just add a second frame.
import SwiftUI
struct ContentView: View {
var body: some View {
GeometryReader { geo in
Image("Example")
.resizable()
.scaledTofit()
.frame (width: geo.size.width * 0.8)
.frame (width: geo.size.width, height: geo.size.height)
}
}
Hope this helps.
Hello,
As far as I know, there is no way to obtain the properties listed above via the MediaPlayer framework.
Good luck!
Thank you for the ideas!
I think I've found my issue. My app group var was not spelled correctly.
Thanks Again.
Your app was built with a beta version of Xcode or SDK. Apps submitted to the App Store must be built with the GM version of Xcode 10.1 and the SDK for iOS 12.1 and watchOS 5.1, Xcode 7.1 and the SDK for tvOS 9, or Xcode 6 and the SDK for macOS 10.9 or later. If you are using an Xcode beta version to test your app, make sure you are using the latest supported version. For more information about supported beta versions, view the App Store Connect What's New page - https://developer.apple.com/app-store-connect/whats-new/.
This is what apple said to me when I submitted an app using Xcode beta.
Hope this is helpful!
Thank You!