Posts

Post marked as solved
1 Replies
671 Views
Im trying to upload my app to the app store connect and i used Transporter from Xamarin forms project. It was delivered but i got this email with the error:ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview). from apple and I never use UIWebView in my project so why would this be happening. Is there anyway to remove it in Xamarin forms?
Posted
by BennyB0o.
Last updated
.
Post not yet marked as solved
0 Replies
403 Views
I have this app released on the App Store and I've had no problems with getting text from txt file. Im trying to get the text from txt file and put it into a variable to show on the screen (heres the code). &#9;&#9;Random rand = new Random(); &#9;&#9;&#9;&#9;&#9;&#9;int value = rand.Next(0, 2); &#9;&#9;&#9;&#9;&#9;&#9;string filePath = "AnswersBG.txt"; &#9;&#9;&#9;&#9;&#9;&#9;using (var a = new StreamReader(filePath)) &#9;&#9;&#9;&#9;&#9;&#9;{ &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;for (int i = 1; i < value; i++) &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;{ &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;string letters = l.ReadLine(); &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;string[] entries = letters.Split('`'); &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;GlobalVariables.A = entries[0]; &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;A.Text = GlobalVariables.A; &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;GlobalVariables.B = entries[1]; &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;B.Text = GlobalVariables.B; &#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;} &#9;&#9;&#9;&#9;&#9;&#9;} What it's doing is getting a random line on the txt file and putting it into a global variable. It's giving me this error when i use it. [AVAsset loadValuesAsynchronouslyForKeys:completionHandler:] invoked with unrecognized keys ( artwork Is there anyway to fix this? Ive loaded it on my phone and it doesn't work, nothing will show up on the screen
Posted
by BennyB0o.
Last updated
.