Try re-uploading now. My builds from yesterday morning and last night are still not there, but new builds appear in App Store immediately like usual. I did not uncheck bitcode or symbols, literally the exact same build with a different version number.
Post
Replies
Boosts
Views
Activity
Me too. I really need to get a 14 hot fix out
The workaround im going with. Uppercase the piece of the identifier and remove any that start with siri_ and don't have readable names
extension AVSpeechSynthesisVoice {
		var hackName: String {
				if !name.isEmpty {
						return name
				}
				guard let start = identifier.range(of: ".", options: .backwards)?.upperBound else {
						return name
				}
				let n = String(identifier[start...])
				guard let end = n.range(of: "-", options: .backwards)?.lowerBound else {
						return n
				}
				let x = String(n[n.startIndex...end]).replacingOccurrences(of: "-", with: "")
				return String(x)
		}
}
Then when I display a list of voices to the user I filter out any that start with "siri_"
listRowBackground()
does not work for me. Still either black or white.
This seems broken on the GA as well. My app is broken. Has anyone found a solution?
Thanks for the answer. I was stuck on this for hours.