For Turkey just copy paste the last 17 digits of your IBAN.
Post
Replies
Boosts
Views
Activity
It doesn't work on iOS 16.0.3 too
Make sure you have "Sign in with Apple" capability added in release not just debug in Xcode project target.
Should App be uploaded to TestFlight to test the association? I'm working on a new app, created the app on AppStore to get appId but didn't upload any build yet. I can't make it work with Xcode builds deployed to my iPhone.
This setting is checked Settings>Developer>Associated Domains and developer mode is used.
File validation gives this result:
Link to Application |
Action required
Could not extract required information for application links. Learn how to implement the recommended Universal Links.
| Error cannot fetch app site association
I'm using rapidapi.com webservice and pinned their certificate. My certificate controls started to fail in some user with iOS 14+. I 'm controlling it using Alamofire 5.
We tested it on Series 4 and it sounds clear on that.
Sound is scratchy on watch. I was looking for the right word in English :)
Sound is noisy and scrannel on watch. I'm using this repo, https://github.com/GrantJEmerson/SwiftSynth and set
Oscillator.amplitude and Synth.shared.frequency.
2. I didn't tried on other watches, I don't have them. I only tried with Watch simulators (Series 4 and Series 5) that worked fine. I will download Series 2 sim and try on that too.
3. I mean Hz for frequencies. I placed a slider between 100-900 Hz and tried different values on this range. Is there a spec where I can check available frequencies for watch hardware?
4. I couldn't. I don't have wireless headphones.
What worked for me is, build with Xcode 11.5, export ipa with Xcode 12 and upload using Transporter app.
Archived using 11.5 and try to upload using Xcode 12 but didn't work for me.
I don't use any proxy. Errors are below:
Communication error. App Store Connect Operation Error. You need to have outbound access to tcp port 443.
An exception has occurred: java.security.DigestException: partial digests not returned.
Couldn't connect to Apple's web service.
You can do this with SVGKit
import SwiftUI
import SVGKit
struct SVGKFastImageViewSUI:UIViewRepresentable
{
var url:URL
func makeUIView(context: Context) -> SVGKFastImageView {
//let svg = URL(string: url)!
// let data = try? Data(contentsOf: url)
let svgImage = SVGKImage(contentsOf: url)
return SVGKFastImageView(svgkImage: svgImage ?? SVGKImage())
}
func updateUIView(_ uiView: SVGKFastImageView, context: Context) {
}
}
struct SVGImage_Previews: PreviewProvider {
static var previews: some View {
SVGKImageViewSUI(url:URL(string:"https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/android.svg")!)
}
}
Apple provides a sample project - https://developer.apple.com/documentation/vision/analyzing_image_similarity_with_feature_print to show how to use feature print to compare images.
The code below I modified shows how to compare two apple images to a pear image. The smaller the distance the similar the images are.
import UIKit
import Vision
func featureprintObservationForImage(atURL url: URL) -> VNFeaturePrintObservation? {
let requestHandler = VNImageRequestHandler(url: url, options: [:])
let request = VNGenerateImageFeaturePrintRequest()
do {
try requestHandler.perform([request])
return request.results?.first as? VNFeaturePrintObservation
} catch {
print("Vision error: \(error)")
return nil
}
}
let apple1 = featureprintObservationForImage(atURL: Bundle.main.url(forResource:"apple1", withExtension: "jpg")!)
let apple2 = featureprintObservationForImage(atURL: Bundle.main.url(forResource:"apple2", withExtension: "jpg")!)
let pear = featureprintObservationForImage(atURL: Bundle.main.url(forResource:"pear", withExtension: "jpg")!)
var distance = Float(0)
try apple1!.computeDistance(&distance, to: apple2!)
var distance2 = Float(0)
try apple1!.computeDistance(&distance2, to: pear!)
Having the same problem. My new app version is accepted but new IAPs are still waiting for review for the last 2 days.