Post

Replies

Boosts

Views

Activity

"No Domain URL Status data" for my App Clip Associated Domain on App Store
Hello Everyone, I'm trying to view status for my app clip associated domain from the Build MetaData in TestFlight tab, but it keeps giving me "No Domain URL Status data". Also, when I'm trying to create advanced experience by adding my invocation domain (https://appclip.example.com) to the App Clip Experience URL, I'm getting "This URL is not contained in your app’s associated domains. Update associated domains or use a different URL." Here's my configurations: Associated Domain in both App Clip Target & Main App Target is (appclips:appclip.example.com). The AASA file is added with no redirects on (https://fully-qualified-domain/apple-app-site-association) & Content-Type is application/json. { "applinks": { "apps": [], "details": [ { "appID": "1234567890.com.example.appName", "paths": ["/*"] }] }, "appclips": { "apps": [ "1234567890.com.example.appName.Clip" ] } } My Questions What's missed for not obtaining Domain URL Status data when tapping view status? Why I'm getting "This URL is not contained in your app’s associated domains" when I'm trying to create advanced experience although this domain is already in Associated Domains ? The invocation url (https://appclip.example.com) is redirecting to (https://example.com) on the website. Does that may cause an issue ? Please note that I have included (appclips:example.com) also in the Associated Domains & tried to create advanced experience using (https://example.com) but I got the same issues. Thanks in advance!
3
2
2.0k
Apr ’22
Rectangle detection is not working correct on iOS 15
I am wondering if it is possible to detect a document or an envelope with aspect ratio (width / height) equals to or more than 2.0 on iOS 15 using a CIDetector object. I found that starting from iOS 15, my application stopped to detect envelopes with the previously mentioned aspect ratios. I have tried to use CIDetectorAspectRatio, CIDetectorFocalLength & CIDetectorMinFeatureSize options with desired values to fine-tune the detection, but that didn't solve the problem. The following is the method I'm using for getting the detected rectangles. It returns an CIRectangleFeature array of 1 element in case running application on iPhone with iOS version earlier than iOS 15, while it returns an empty array in case I'm running the application on iPhone with iOS 15 or later. static func rectangles(inImage image: CIImage) -> [CIRectangleFeature]? {         let rectangleDetector = CIDetector(ofType: CIDetectorTypeRectangle, context: CIContext(options: nil), options: [CIDetectorAccuracy: CIDetectorAccuracyHigh])         guard let rectangleFeatures = rectangleDetector?.features(in: image) as? [CIRectangleFeature] else {             return nil         }         return rectangleFeatures     } Thank you in advance.
2
0
1.2k
Oct ’21