Search results for

ITMS-90158

1,681 results found

Post

Replies

Boosts

Views

Activity

ITMS-90338: Non-public API usage
We have developed the iOS App using .NET MAUI, when we try to upload it to store, the binary is getting rejected with the following error, kindly suggest a solution for this. TMS-90338: Non-public API usage - The app references non-public symbols in : _ubrk_openRules, _ucal_add, _ucal_close, _ucal_get, _ucal_getAttribute, _ucal_getKeywordValuesForLocale, _ucal_getNow, _ucal_getTimeZoneDisplayName, _ucal_getTimeZoneIDForWindowsID, _ucal_getWindowsTimeZoneID, _ucal_open, _ucal_openTimeZoneIDEnumeration, _ucal_set, _ucal_setMillis, _ucol_close, _ucol_closeElements, _ucol_getOffset, _ucol_getRules, _ucol_getSortKey, _ucol_getStrength, _ucol_getVersion, _ucol_next, _ucol_open, _ucol_openElements, _ucol_openRules, _ucol_previous, _ucol_safeClone, _ucol_setAttribute, _ucol_setVariableTop, _ucol_strcoll, _ucurr_forLocale, _ucurr_getName, _udat_close, _udat_countSymbols, _udat_format, _udat_getSymbols, _udat_open, _udat_setCalendar, _udat_toPattern, _udata_setCommonData, _udatpg_close, _udatpg_getBestPattern, _udatpg_
0
0
343
Sep ’23
Vision Pro + Device Capabilities warning, how to silence?
Now receiving the following warning in Xcode when uploading app, and corresponding email. The app is unlikely to be released for Vision Pro. Is there any flag I've missed that can be added to the app to silence this (blacklist the device type), bearing in mind this app is not compiled with the Xcode Beta that supports Vision Pro. Failing that, can anyone suggest who to reach out to at Apple to request a solution? I realise this is only a warning, but it's an unwanted distraction. Dear Developer, We identified one or more issues with a recent delivery for your app, Cape Physio 0.52 (7). Your delivery was successful, but you may wish to correct the following issues in your next delivery: ITMS-90984: Apple Vision Pro support issue - The app contains the following UIRequiredDeviceCapabilities values, which aren’t supported on Apple Vision Pro. [accelerometer, gyroscope] After you’ve corrected the issues, you can upload a new binary to App Store Connect. Best regards, The App Store Team
4
0
6.4k
Sep ’23
ITMS-90626: Invalid Siri Support - No se ha proporcionado ninguna frase de ejemplo para INSearchCallHistoryIntent en el idioma 'en'.
Buenas a todos Recibo estos errores al implementar Siri ITMS-90626: Invalid Siri Support - No se ha proporcionado ninguna frase de ejemplo para INSearchCallHistoryIntent en el idioma 'en'. ITMS-90626: Invalid Siri Support - No example phrase was provided for INStartAudioCallIntent in the 'en' language. No entiendo tengo los intent de examples en ingles NSExtension App Intent Vocabulary Property List Intent Phrases Intent Name INStartAudioCallIntent Intent Examples Start a voice call with [contact name]. Call [contact name] using audio. Intent Name INSearchCallHistoryIntent Intent Examples Show me calls with [contact name]. Find calls from [contact name]. Pero sigo obteniendo el mismo error, aca vez que lanzo una TestFlight. De antemano les agradezco.
0
0
798
Sep ’23
Reply to ITMS-90338: Non-public API usage _CMTimebaseCreateWithMasterClock
I am having the same issue. I am not using MSAnalytics anywhere that I know of. Please advice on what to do next. ITMS-90338: Non-public API usage - The app contains or inherits from non-public classes in XXX.MobileApp.iOS: MSAnalytics . If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions. In addition, note that one or more of the above APIs may be located in a static library that was included with your app. If so, they must be removed. For further information, visit the Technical Support Information at http://developer.apple.com/support/technical/
Aug ’23
TestFlight users can't download app "your request couldn't be completed"
Hi, my app was recently rejected by the App Store due to Invalid Provisioning Profile - the email contained this (and many, many more errors): ITMS-90161: Invalid Provisioning Profile - The provisioning profile included in the bundle uk.ac.gla.timetable [UofG Life] is invalid. [Expired profile.] For more information, visit the iOS Developer Portal. ITMS-90443: Invalid Provisioning Profile - The provisioning profile included in the bundle UofG Life [Payload/UofG Life.app] is invalid. [Expired code-signing certificate.] For more information, visit the iOS Developer Portal. I went to the Developer Portal, went to Certificates/Identities/Profiles and saw the one for our app was marked 'Expired'. I went in to Edit it and renewed it there, at which point I could Download the profile. I think I found advice to double-click it and it would fix the issue in Xcode. I was able to resubmit the app and Apple App Store accepted it so I thought the problem was fixed. However, now none of the testers are ab
1
0
2.3k
Aug ’23
Reply to Build Uploading Issue
Hello Sir, i m getting this issue with my submission ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability.. i am not using UIWebView anywhere in my code. i am stuck on that from last two weeks. Although i am using following libraries. Please correct me if anyone of these library using webview. pod 'MaterialComponents/TextControls+OutlinedTextAreasTheming' pod 'MaterialComponents/TextControls+OutlinedTextFieldsTheming' pod 'MaterialComponents/TextControls+OutlinedTextAreas' pod 'MaterialComponents/TextControls+OutlinedTextFields' pod 'SwiftyJSON', :inhibit_warnings => true pod 'SwiftMessages', :inhibit_warnings => true pod 'FacebookLogin' pod 'GoogleSignIn' , '> 5.0' pod 'FirebaseCore' pod 'FirebaseAuth' pod 'SkeletonView' pod 'Cosmos', :inhibit_warnings => true pod 'IQKeyboardManager', :inhibit_warnings => true pod 'SwiftyCam' pod 'RSKImageCropper' pod 'DropDown' pod 'Socket.IO-Client-Swift',
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’23
Build Uploading Issue
Hello Sir, i m getting this issue with my submission ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability.. i am not using UIWebView anywhere in my code. i am stuck on that from last two weeks. App name: CyberMart IN Apple ID of the app: 1660228621
2
0
357
Aug ’23
Child view doesn't get the contextMenu but its parent view does
What I Whant I'm making a component. This component is used to display a list of tags. I want a context menu to pop up on the tag when the user long-presses it. Like this: What I Got Here is My Code VStack(alignment: .leading) { ForEach(groupedItems, id: .self) { itms in HStack { ForEach(itms, id: .self) { tag in Text(tag.title ?? ) .font(.callout) .padding() .frame(height: 24.0) .frame(alignment: .center) .cornerRadius(100) .contextMenu { Button { deleteTheTag(tag) } label: { Label(Delete, systemImage: trash) } } } } } } I tried several methods, but all failed. How should I modify my code?
0
0
375
Aug ’23
Uploading an app using - assetFile on macOS
Uploading an IPA using /usr/local/itms/bin/iTMSTransporter -m upload -assetFile -u -p -v informational -asc_provider method, if an application successfully uploads for the first time and the version of the IPA+1, it will be rejected upon upload. The reason for rejection is: Package Summary: 1 package(s) were not uploaded because they had problems: /Users/****/Desktop/3/app.ipa - Error Messages: Upload is not in processing state, please try again. state: class Build { type: builds id: 873e65d2-7cb2-4acf-868b-7f95c6893784 attributes: class BuildAttributes { version: 1 uploadedDate: 2023-08-01T23:48:33.661-07:00 expirationDate: null expired: null minOsVersion: null lsMinimumSystemVersion: null computedMinMacOsVersion: null iconAssetToken: null
0
0
425
Aug ’23
Reply to ITMS-90338: Non-public API usage _CMTimebaseCreateWithMasterClock
1 We had the same issue yesterday... ITMS-90338: Non-public API usage - The app references non-public symbols in Frameworks/YouTubeEmbeddedPlayerFramework.framework/YouTubeEmbeddedPlayerFramework: _CMTimebaseCreateWithMasterClock. If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions. In addition, note that one or more of the above APIs may be located in a static library that was included with your app. If so, they must be removed. For further information, visit the Technical Support Information at http://developer.apple.com/support/technical/ How to solve that ? Thanks
Jul ’23
ITMS-90338: Non-public API usage - _CMTimebaseCopyMasterTimebase
Getting the following incorrect error when uploading to App Store Connect. I've tried with Xcode and Transporter. The APIs are not being referenced anywhere in my project. There was a similar issue to this on the forum a couple weeks ago and it sounded like Apple resolved it but I am just now seeing this happen. Message: ITMS-90338: Non-public API usage - The app references non-public symbols in APP_NAME: _CMTimebaseCopyMasterTimebase, _CMTimebaseCreateWithMasterClock, _CMTimebaseCreateWithMasterTimebase. If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions.
1
0
975
Jul ’23
Reply to ITMS-90338: Non-public API usage-_CMTimebaseCreateWithMasterClock
+1 It seems back again. ITMS-90338: Non-public API usage - The app references non-public symbols in Frameworks/AmazonIVSPlayer.framework/AmazonIVSPlayer: _CMTimebaseCreateWithMasterClock,The app references non-public symbols in Frameworks/AmazonIVSBroadcast.framework/AmazonIVSBroadcast: _CMTimebaseCreateWithMasterClock. If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions. In addition, note that one or more of the above APIs may be located in a static library that was included with your app. If so, they must be removed. For further information, visit the Technical Support Information at http://developer.apple.com/support/technical/ Best regards, The App Store Team
Jul ’23