Hello everyone,
I am building an App Clips for my current app. On the last step of the purchasing process, I show "Thank you for purchasing the tickets!" and the SKOverlay of the main app at the bottom of the screen.
The problem is if I install App Clips from TestFlight, the SKOverlay is never appear but it works very well if I built the App Clips directly from Xcode.
.onAppear {
self.showRecommended = true
}
.appStoreOverlay(isPresented: $showRecommended) {
let config = SKOverlay.AppConfiguration(appIdentifier: "1225258864", position: .bottom)
return config
}
I checked the App Clips and SKOverlay document but can't find the root cause.
I really appreciate your help.
Thank you.