UIProgressView built on Xcode 12.4 shows a little bit of progress on iOS 15 beta 2 in spite of 0.0 progress.
Is it a bug or a new behavior?
Post
Replies
Boosts
Views
Activity
Our app is using 2 domains of Universal Links.
One for our main domain, the other is provided by Adjust.
iOS 12, iOS 13:
Both domains work correctly.
This means apple-app-site-association files are valid.
iOS 14 beta 5:
Adjust one is working, but main domain's Universal Links is not working. This issue has been persisting for a month.
Device: iPhone XS Max, iOS 14 beta 5
SDK: iOS 14 beta 5
apple-app-site-association
{
	"applinks": {
		"apps": [],
		"details": [
			{
				"appID": "XXXXXXXXX1.com.example.APP",
				"paths": ["NOT /aaa/", "*"]
			},{
				"appID": "XXXXXXXXX2.com.example.APP.enterprise.production",
				"paths": ["NOT /aaa/", "*"]
			},{
				"appID": "XXXXXXXXX2.com.example.APP.enterprise.staging",
				"paths": ["NOT /aaa/", "*"]
			}
		]
	}
}
We have not been updated this file for over a year, and no plan to change any time soon.
sysdiagnose (iOS 14 beta 5)
Service:							applinks
App ID:							 XXXXXXXXXX.com.example.APP
App Version:					4.0
App PI:							 <LSPersistentIdentifier 0x104e305b0> { v = 0, t = 0x8, u = 0xaf4, db = A16B541E-0D61-4813-A711-FCF89CF22411, {length = 8, bytes = 0xf40a000000000000} }
Domain:							 app.example.com
User Approval:				unspecified
Site/Fmwk Approval:	 unspecified
Flags:							
Last Checked:				 2020-08-25 04:08:09 +0000
Next Check:					 2020-08-25 07:49:53 +0000
Error:								Error Domain=SWCErrorDomain Code=7 "SWCERR00301 Timeout -- {"cause":"context deadline exceeded (Client.Timeout exceeded while awaiting headers)"}" UserInfo={Line=274, Function=-[SWCDownloader URLSession:dataTask:didReceiveResponse:completionHandler:], NSDebugDescription=SWCERR00301 Timeout -- {"cause":"context deadline exceeded (Client.Timeout exceeded while awaiting headers)"}, UnderlyingError=Error Domain=HTTP Code=404 "(null)" UserInfo={Line=274, Function=-[SWCDownloader URLSession:dataTask:didReceiveResponse:completionHandler:]}}
Retries:							2
Service:							applinks
App ID:							 XXXXXXXXXX.com.example.APP
App Version:					4.0
App PI:							 <LSPersistentIdentifier 0x104e305b0> { v = 0, t = 0x8, u = 0xaf4, db = A16B541E-0D61-4813-A711-FCF89CF22411, {length = 8, bytes = 0xf40a000000000000} }
Domain:							 xxxx.adj.st
Patterns:						 {"/":"/*"}
User Approval:				unspecified
Site/Fmwk Approval:	 approved
Flags:							
Last Checked:				 2020-08-25 04:08:09 +0000
Next Check:					 2020-08-30 03:57:44 +0000
Our server is fast enough, probably located somewhere in Japan.
Could you suggest me if I'm missing something, or Apple CDN has any issue crawling aasa files?