Xcode Server

RSS for tag

Xcode Server controls server-side bots that continuously build, analyze, test, and even archive your Xcode projects.

Posts under Xcode Server tag

180 Posts

Post

Replies

Boosts

Views

Activity

What is the best and pocket friendly Basic Server and Database for iOS app
Im extremely green when it comes to coding and creating applications and would love guidance. I have been doing research on possible databases for iOS apps, but Im not sure what are best for my type of application, just some backend im currency using JSON file for information. My application includes users logging in and creating profiles as well as reviewing and rating locations. Im looking for something that would work for this I was considering CloudKit, but im not sure it best for the reviews and rating of the locations, upon my research i saw it was best for thing such as longins and profiles. Also is Xcode Server still a thing? Im looking for server suggestions and database suggestions. thank you!
0
0
1.2k
Sep ’22
Value of type ' Module<Wallet_App>' has no subscript please check the below code
import SwiftUI struct List_View: View {     var Wallet : Wallet_Data     var body: some View {                      ZStack {                 ListRectShape()                     .fill(Color.background)                 .frame(width: 368, height: 75)                 Wallet.image                     .padding(.trailing, 280.0)                 Text("Amazon")                     .font(.title3)                     .fontWeight(.light)                     .foregroundColor(Color.white)                     .multilineTextAlignment(.leading)                     .padding(.top, -25.0)                     .padding(.trailing, 125.0)                 Text("Augest 10 2022")                     .font(.body)                     .fontWeight(.light)                     .foregroundColor(Color.white)                     .padding(.trailing, 78.0)                     .padding(.top, 21.0)                 ListRectShape()                     .fill(Color.background)                     .frame(width: 83, height: 33)                     .border(Color.white)                     .padding(.leading, 225.0)                 Text("$109.08")                     .foregroundColor(Color.white)                     .padding(.leading, 225.0)                                                                }                  ZStack {             ListRectShape()                 .fill(Color.background)             .frame(width: 368, height: 75)             Image("Apple WC")                 .padding(.trailing, 280.0)             Text("Apple")                 .font(.title3)                 .fontWeight(.light)                 .foregroundColor(Color.white)                 .multilineTextAlignment(.leading)                 .padding(.top, -22.0)                 .padding(.trailing, 145.0)             Text("Augest 10 2022")                 .font(.body)                 .fontWeight(.light)                 .foregroundColor(Color.white)                 .padding(.trailing, 78.0)                 .padding(.top, 21.0)             ListRectShape()                 .fill(Color.background)                 .frame(width: 83, height: 33)                 .border(Color.white)                 .padding(.leading, 225.0)             Text("$1000.00")                 .foregroundColor(Color.white)                 .padding(.leading, 225.0)                               }                  } } struct List_View_Previews: PreviewProvider {     static var previews: some View {         List_View(Wallet: Wallet_App[0]) // here is were I'm getting an error     } } //this is my ModelData were I'm trying to load my json file import Foundation import Combine final class ModelData : ObservableObject{   var Wallet_App: [Wallet_Data] = load("Contents.json") } func load<T: Decodable>(_ filename: String) -> T {     let data: Data     guard let file = Bundle.main.url(forResource: filename, withExtension: nil)         else {             fatalError("Couldn't find (filename) in main bundle.")     }     do {         data = try Data(contentsOf: file)     } catch {         fatalError("Couldn't load (filename) from main bundle:\n(error)")     }     do {         let decoder = JSONDecoder()         return try decoder.decode(T.self, from: data)     } catch {         fatalError("Couldn't parse (filename) as (T.self):\n(error)")     } }
2
0
748
Aug ’22
Xcode Archive issue in NFS (Network Drive)
Hi All, Greeting of the day! We are facing frequent disk space issue in Mac mini. So we have mounted netapp file share in Mac mini for build the xcode. Now I am trying to archive xcode build in network drive(file share). But we unable to archive xcode build. Note: Same xcode build works fine in mac disk instead of network drive. I am very curious about why we facing issue if we use network drive I am getting multiple strange issues Please find the detailed information below Xcode version: V13.2 #1 - I have used below command for archive xcode build xcodebuild clean archive -workspace -scheme ${scheme} -configuration Release -archivePath -verbose -destination 'generic/platform=iOS' CODE_SIGN_STYLE=Manual PROVISIONING_PROFILE_SPECIFIER='XXXXXX' CODE_SIGN_IDENTITY='iPhone Distribution'" Error: error: /Applications/mnt/nfs/MyProject/assets/fonts/WhitneyBook.ttf: No such file or directory (in target 'Mydemo-dev' from project 'Mydemo') Above error seems like file (WhitneyBook.ttf) not found in /Applications/mnt/nfs/MyProject/assets/fonts directory. I have manually logged in and checked the path. Actual Path : /Applications/mnt/nfs/MyProject/assets/Fonts/WhitneyBook.ttf Build expecting path : /Applications/mnt/nfs/MyProject/assets/fonts/WhitneyBook.ttf These error only throws when we use network drive. same source code works fine in mac disk. I guess mac disk is not case sensitive. So It is successfully found the file in directory. But file share is case sensitive, we need to provide correct path. #2 - After fixed above issue, again i am tried archive command. In console output, It shows Archive is Succeed. But no files has been generated in archive path. Can someone please help me on this? I would appreciate if you share the steps to archive and export xcode build in file share (network drive) Thanks Mahi
1
0
1.2k
Aug ’22
Xcode server & bots
I need help with Xcode I have the latest release I need help with the Xcode server & bots I have tried every password that I could have think of here is what the message it was it want to configure SSL Certificate and then It pops to Type my xcsreciperunnner want to export key Bradens-MacBook-Pro.local from your keychain. To allow this enter the apache keychain password. so I do and It want work. I don't know what to do I remember my Apple ID password so that can not be the thing
1
0
1.1k
Aug ’22
Xcode Server bot internal-processing-error
I've been using Xcode Server for a few days for the continuous integration of our projects. Most of the time, it works as expected : the projects compiles, the unit tests are executed with success, then I have a post-integration script that compiles an archive and upload it to TestFlight (using Fastlane). It works. Most of the time... Once in a while, I get a "internal-processing-error" value (instead of "success" or "warnings") in XCS_INTEGRATION_RESULT variable, after the unit tests have passed. I've been trying to look into the bot logs to find any useful information, but no luck 'til now. Does anyone have an idea about what I could do to move forward on this issue ?
0
1
1.2k
Aug ’22
What's New Xcode Server, no longer supported? Why?
Our team always use Xcode Server, we love this tool with Xcode IDE. At this Xcode 14 beta 4, "Xcode Server is no longer supported. (73888675)" Why do this for us? Need we move to Xcode Cloud? How to figure out private CocoaPods? We have may lib 200+, how to move to Cloud? Please keep update Xcode Server, or Open Source it, how to integration with Xcode IDE, we love this feature. By the way, for Xcode Server new feature need update. The execution of multi-tasking(Xcode Bots) ensures that the machine will not hangs. Update couthDB and couthJS with M1.
0
1
1.5k
Aug ’22
Xcode Server incorrectly referencing local package checkouts
FB9967910 When attempting to create or edit a Xcode Bot, additional/associated source control repositories all indicate “The source control operation failed because the specified URL cannot be used.”. This appears to be caused by the bot referencing the local directory checkouts of swift packages rather than the originating source control URLs. The ‘Replace Repositories’ button does not correct this issue, and there appears to be no other mechanism in the UI to alter the URLs. The bad URLs causes and integration to fail as package dependencies could not be resolved. Anyone experiencing the same or have some sort of resolution?
3
1
1.7k
Jul ’22
Xcode Server no longer supported?
From the release notes of Xcode 14: "Xcode Server is no longer supported. (73888675)" I haven't read or heard that being mentioned somewhere else. Does anybody knows, what that means for Xcode Server users? What is the plan to support corporations, which can not share the code to other companies and thus can not use Xcode Cloud for testing. ...or the ones, that just can't (or do not want to) afford Xcode Cloud? Are we off to other CI/CD solutions?
4
5
2.2k
Jul ’22
Xcode: Could not launch “WebDriverAgentRunner_tvOS”
Hi I was facing this issue since a week, I tried all the options but no use, can someone help me please..!! I'm totally blocked. Could not launch “WebDriverAgentRunner_tvOS” Domain: IDEDebugSessionErrorDomain Code: 3 Failure Reason: The operation couldn’t be completed. Cound not find any application for open app system request &lt;FBSystemServiceOpenApplicationRequest: 0x282909e60; trusted: YES; bundleID: com.facebook.mm13.xcui.WebDriverAgentRunner.xctrunner; client: anon:664&gt; User Info: {     DVTErrorCreationDateKey = "2022-07-18 23:42:12 +0000";     DVTRadarComponentKey = 855031;     IDERunOperationFailingWorker = DBGLLDBLauncher;     RawUnderlyingErrorMessage = "The operation couldn\U2019t be completed. Cound not find any application for open app system request &lt;FBSystemServiceOpenApplicationRequest: 0x282909e60; trusted: YES; bundleID: com.facebook.mm13.xcui.WebDriverAgentRunner.xctrunner; client: anon:664&gt;"; } -- Analytics Event: com.apple.dt.IDERunOperationWorkerFinished : {     "device_model" = "AppleTV5,3";     "device_osBuild" = "15.4.1 (19L452)";     "device_platform" = "com.apple.platform.appletvos";     "launchSession_schemeCommand" = Test;     "launchSession_state" = 1;     "launchSession_targetArch" = arm64;     "operation_duration_ms" = 9344;     "operation_errorCode" = 3;     "operation_errorDomain" = IDEDebugSessionErrorDomain;     "operation_errorWorker" = DBGLLDBLauncher;     "operation_name" = IDEiPhoneRunOperationWorkerGroup;     "param_consoleMode" = 0;     "param_debugger_attachToExtensions" = 0;     "param_debugger_attachToXPC" = 1;     "param_debugger_type" = 4;     "param_destination_isProxy" = 0;     "param_destination_platform" = "com.apple.platform.appletvos";     "param_diag_MainThreadChecker_stopOnIssue" = 0;     "param_diag_MallocStackLogging_enableDuringAttach" = 0;     "param_diag_MallocStackLogging_enableForXPC" = 0;     "param_diag_allowLocationSimulation" = 1;     "param_diag_gpu_frameCapture_enable" = 3;     "param_diag_gpu_shaderValidation_enable" = 0;     "param_diag_gpu_validation_enable" = 1;     "param_diag_memoryGraphOnResourceException" = 0;     "param_diag_queueDebugging_enable" = 1;     "param_diag_runtimeProfile_generate" = 0;     "param_diag_sanitizer_asan_enable" = 0;     "param_diag_sanitizer_tsan_enable" = 0;     "param_diag_sanitizer_tsan_stopOnIssue" = 0;     "param_diag_sanitizer_ubsan_stopOnIssue" = 0;     "param_diag_showNonLocalizedStrings" = 0;     "param_diag_viewDebugging_enabled" = 1;     "param_diag_viewDebugging_insertDylibOnLaunch" = 0;     "param_install_style" = 2;     "param_launcher_UID" = 2;     "param_launcher_allowDeviceSensorReplayData" = 0;     "param_launcher_kind" = 0;     "param_launcher_style" = 0;     "param_launcher_substyle" = 0;     "param_runnable_appExtensionHostRunMode" = 0;     "param_runnable_productType" = "com.apple.product-type.application";     "param_runnable_type" = 1;     "param_testing_launchedForTesting" = 1;     "param_testing_suppressSimulatorApp" = 0;     "param_testing_usingCLI" = 0;     "sdk_canonicalName" = "appletvos15.4";     "sdk_osVersion" = "15.4";     "sdk_variant" = appletvos; } -- System Information macOS Version 12.4 (Build 21F79) Xcode 13.4.1 (20504) (Build 13F100) Timestamp: 2022-07-18T23:42:12Z
0
0
1.1k
Jul ’22
Appstore Uploading issue
Hi all my developer friends, Last few days i am facing some issues with uploading a build to appstore. The issue is following please help me to solve this issue This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html With error code STATE_ERROR.VALIDATION_ERROR.90101 for id af7a1ff5-d122-43fb-9c4e-3b8bf5e12f37
0
0
1.8k
Jul ’22
Xcode Cloud to use swift 5.7 (Xcode-14)
Overview I have an existing Xcode project that works fine with Xcode Cloud I have a separate branch on to which I have migrated and made changes for Xcode 14 On the same branch I have made some code changes that is supported by Swift 5.7 Example: var price: Int? = 100 guard let price else { return } Problem Xcode code build fails with the error Variable binding in a condition requires an initializer Question: Is it possible to build Xcode Cloud on Swift 5.7 or Xcode 14?
0
0
1.2k
Jul ’22
Tests are running twice even if only one Test Configuration is set in the Test Plan
Hello, Did anyone succeed to chose a specific Configuration from the Test Plan to be used for running tests using Test Plans on a Xcode Bot? I tried multiple possibilities with no success. We can pass to xcodebuild the following parameter and it will run the desired test plan "test -testPlan NameOfTheTestPlan", but if there is only one configuration under the test plan , all the tests will run twice because of the default "Share Configurations" Any ideas? Thanks!
1
1
1.7k
Jun ’22
problem with xproject
failed to read asset tags: The command (cd /Users/Stark/Downloads/hyundai_msrm && /usr/bin/actool --print-asset-tag-combinations --output-format xml1 /Users/Stark/Downloads/hyundai_msrm/hyundai_msrm/Assets.xcassets) exited with status 1. The command's output was: xcrun: error: invalid active developer path (/Applications/Xcode.app/Contents/Developer), missing xcrun at: /Applications/Xcode.app/Contents/Developer/usr/bin/xcrun i was wondering that matter if i have older or newest version of xcode ? or is there other error ?
1
0
916
Jun ’22
App Store Connect don't show build even Xcode can upload successfully.
App Store Connect webpage don't show build even Xcode is really upload success. Yesterday, I use Xcode to upload And it success. Then, today I try to upload the same build it show this I go to App Store Connect webpage and see TestFlight tab for this upload App. Then it show as following I hope my screen capture is helpful to you. I hope Apple's Xcode team and App Store Connect web team can try to find out my upload file. And research why Xcode can up load successfully and webpage don't show anything. The file I upload is Version=1.0.1 with build =2. My App ID is -> 5BX22E226C.com.meshub.fluWebrtcApp And the file I upload is Version=1.0.1 with Build=2. I upload it successfully at June 3rd. (Taipei Time). Thank you very much.
7
0
9.7k
Jun ’22
What is the best and pocket friendly Basic Server and Database for iOS app
Im extremely green when it comes to coding and creating applications and would love guidance. I have been doing research on possible databases for iOS apps, but Im not sure what are best for my type of application, just some backend im currency using JSON file for information. My application includes users logging in and creating profiles as well as reviewing and rating locations. Im looking for something that would work for this I was considering CloudKit, but im not sure it best for the reviews and rating of the locations, upon my research i saw it was best for thing such as longins and profiles. Also is Xcode Server still a thing? Im looking for server suggestions and database suggestions. thank you!
Replies
0
Boosts
0
Views
1.2k
Activity
Sep ’22
Value of type ' Module<Wallet_App>' has no subscript please check the below code
import SwiftUI struct List_View: View {     var Wallet : Wallet_Data     var body: some View {                      ZStack {                 ListRectShape()                     .fill(Color.background)                 .frame(width: 368, height: 75)                 Wallet.image                     .padding(.trailing, 280.0)                 Text("Amazon")                     .font(.title3)                     .fontWeight(.light)                     .foregroundColor(Color.white)                     .multilineTextAlignment(.leading)                     .padding(.top, -25.0)                     .padding(.trailing, 125.0)                 Text("Augest 10 2022")                     .font(.body)                     .fontWeight(.light)                     .foregroundColor(Color.white)                     .padding(.trailing, 78.0)                     .padding(.top, 21.0)                 ListRectShape()                     .fill(Color.background)                     .frame(width: 83, height: 33)                     .border(Color.white)                     .padding(.leading, 225.0)                 Text("$109.08")                     .foregroundColor(Color.white)                     .padding(.leading, 225.0)                                                                }                  ZStack {             ListRectShape()                 .fill(Color.background)             .frame(width: 368, height: 75)             Image("Apple WC")                 .padding(.trailing, 280.0)             Text("Apple")                 .font(.title3)                 .fontWeight(.light)                 .foregroundColor(Color.white)                 .multilineTextAlignment(.leading)                 .padding(.top, -22.0)                 .padding(.trailing, 145.0)             Text("Augest 10 2022")                 .font(.body)                 .fontWeight(.light)                 .foregroundColor(Color.white)                 .padding(.trailing, 78.0)                 .padding(.top, 21.0)             ListRectShape()                 .fill(Color.background)                 .frame(width: 83, height: 33)                 .border(Color.white)                 .padding(.leading, 225.0)             Text("$1000.00")                 .foregroundColor(Color.white)                 .padding(.leading, 225.0)                               }                  } } struct List_View_Previews: PreviewProvider {     static var previews: some View {         List_View(Wallet: Wallet_App[0]) // here is were I'm getting an error     } } //this is my ModelData were I'm trying to load my json file import Foundation import Combine final class ModelData : ObservableObject{   var Wallet_App: [Wallet_Data] = load("Contents.json") } func load<T: Decodable>(_ filename: String) -> T {     let data: Data     guard let file = Bundle.main.url(forResource: filename, withExtension: nil)         else {             fatalError("Couldn't find (filename) in main bundle.")     }     do {         data = try Data(contentsOf: file)     } catch {         fatalError("Couldn't load (filename) from main bundle:\n(error)")     }     do {         let decoder = JSONDecoder()         return try decoder.decode(T.self, from: data)     } catch {         fatalError("Couldn't parse (filename) as (T.self):\n(error)")     } }
Replies
2
Boosts
0
Views
748
Activity
Aug ’22
Could NOT sign-in my Apple id on Xcode(Your session has expired. Please log in.)
Try signing in again or contact Apple Developer Support to resolve account access issues. I tried my working account and myself account, and it always popup this one. I also tried sign-in on developer site, and it works fine.
Replies
3
Boosts
0
Views
1.1k
Activity
Aug ’22
Xcode Archive issue in NFS (Network Drive)
Hi All, Greeting of the day! We are facing frequent disk space issue in Mac mini. So we have mounted netapp file share in Mac mini for build the xcode. Now I am trying to archive xcode build in network drive(file share). But we unable to archive xcode build. Note: Same xcode build works fine in mac disk instead of network drive. I am very curious about why we facing issue if we use network drive I am getting multiple strange issues Please find the detailed information below Xcode version: V13.2 #1 - I have used below command for archive xcode build xcodebuild clean archive -workspace -scheme ${scheme} -configuration Release -archivePath -verbose -destination 'generic/platform=iOS' CODE_SIGN_STYLE=Manual PROVISIONING_PROFILE_SPECIFIER='XXXXXX' CODE_SIGN_IDENTITY='iPhone Distribution'" Error: error: /Applications/mnt/nfs/MyProject/assets/fonts/WhitneyBook.ttf: No such file or directory (in target 'Mydemo-dev' from project 'Mydemo') Above error seems like file (WhitneyBook.ttf) not found in /Applications/mnt/nfs/MyProject/assets/fonts directory. I have manually logged in and checked the path. Actual Path : /Applications/mnt/nfs/MyProject/assets/Fonts/WhitneyBook.ttf Build expecting path : /Applications/mnt/nfs/MyProject/assets/fonts/WhitneyBook.ttf These error only throws when we use network drive. same source code works fine in mac disk. I guess mac disk is not case sensitive. So It is successfully found the file in directory. But file share is case sensitive, we need to provide correct path. #2 - After fixed above issue, again i am tried archive command. In console output, It shows Archive is Succeed. But no files has been generated in archive path. Can someone please help me on this? I would appreciate if you share the steps to archive and export xcode build in file share (network drive) Thanks Mahi
Replies
1
Boosts
0
Views
1.2k
Activity
Aug ’22
Xcode Server's CouchJS Support M1
Use Xcode Server, but the core server is not support M1.
Replies
0
Boosts
0
Views
1k
Activity
Aug ’22
Xcode server & bots
I need help with Xcode I have the latest release I need help with the Xcode server & bots I have tried every password that I could have think of here is what the message it was it want to configure SSL Certificate and then It pops to Type my xcsreciperunnner want to export key Bradens-MacBook-Pro.local from your keychain. To allow this enter the apache keychain password. so I do and It want work. I don't know what to do I remember my Apple ID password so that can not be the thing
Replies
1
Boosts
0
Views
1.1k
Activity
Aug ’22
Xcode Server bot internal-processing-error
I've been using Xcode Server for a few days for the continuous integration of our projects. Most of the time, it works as expected : the projects compiles, the unit tests are executed with success, then I have a post-integration script that compiles an archive and upload it to TestFlight (using Fastlane). It works. Most of the time... Once in a while, I get a "internal-processing-error" value (instead of "success" or "warnings") in XCS_INTEGRATION_RESULT variable, after the unit tests have passed. I've been trying to look into the bot logs to find any useful information, but no luck 'til now. Does anyone have an idea about what I could do to move forward on this issue ?
Replies
0
Boosts
1
Views
1.2k
Activity
Aug ’22
What's New Xcode Server, no longer supported? Why?
Our team always use Xcode Server, we love this tool with Xcode IDE. At this Xcode 14 beta 4, "Xcode Server is no longer supported. (73888675)" Why do this for us? Need we move to Xcode Cloud? How to figure out private CocoaPods? We have may lib 200+, how to move to Cloud? Please keep update Xcode Server, or Open Source it, how to integration with Xcode IDE, we love this feature. By the way, for Xcode Server new feature need update. The execution of multi-tasking(Xcode Bots) ensures that the machine will not hangs. Update couthDB and couthJS with M1.
Replies
0
Boosts
1
Views
1.5k
Activity
Aug ’22
Error While Archive the Project
Dear All, We are able to run the flutter iOS on simulator. But while Archive the project we are getting this error Command PhaseScriptExecution failed with a nonzero exit code we have tried all possible combination. Can anybody help through it? Thanks in Advance
Replies
0
Boosts
0
Views
1.1k
Activity
Aug ’22
Xcode Server incorrectly referencing local package checkouts
FB9967910 When attempting to create or edit a Xcode Bot, additional/associated source control repositories all indicate “The source control operation failed because the specified URL cannot be used.”. This appears to be caused by the bot referencing the local directory checkouts of swift packages rather than the originating source control URLs. The ‘Replace Repositories’ button does not correct this issue, and there appears to be no other mechanism in the UI to alter the URLs. The bad URLs causes and integration to fail as package dependencies could not be resolved. Anyone experiencing the same or have some sort of resolution?
Replies
3
Boosts
1
Views
1.7k
Activity
Jul ’22
Xcode Server no longer supported?
From the release notes of Xcode 14: "Xcode Server is no longer supported. (73888675)" I haven't read or heard that being mentioned somewhere else. Does anybody knows, what that means for Xcode Server users? What is the plan to support corporations, which can not share the code to other companies and thus can not use Xcode Cloud for testing. ...or the ones, that just can't (or do not want to) afford Xcode Cloud? Are we off to other CI/CD solutions?
Replies
4
Boosts
5
Views
2.2k
Activity
Jul ’22
Xcode: Could not launch “WebDriverAgentRunner_tvOS”
Hi I was facing this issue since a week, I tried all the options but no use, can someone help me please..!! I'm totally blocked. Could not launch “WebDriverAgentRunner_tvOS” Domain: IDEDebugSessionErrorDomain Code: 3 Failure Reason: The operation couldn’t be completed. Cound not find any application for open app system request &lt;FBSystemServiceOpenApplicationRequest: 0x282909e60; trusted: YES; bundleID: com.facebook.mm13.xcui.WebDriverAgentRunner.xctrunner; client: anon:664&gt; User Info: {     DVTErrorCreationDateKey = "2022-07-18 23:42:12 +0000";     DVTRadarComponentKey = 855031;     IDERunOperationFailingWorker = DBGLLDBLauncher;     RawUnderlyingErrorMessage = "The operation couldn\U2019t be completed. Cound not find any application for open app system request &lt;FBSystemServiceOpenApplicationRequest: 0x282909e60; trusted: YES; bundleID: com.facebook.mm13.xcui.WebDriverAgentRunner.xctrunner; client: anon:664&gt;"; } -- Analytics Event: com.apple.dt.IDERunOperationWorkerFinished : {     "device_model" = "AppleTV5,3";     "device_osBuild" = "15.4.1 (19L452)";     "device_platform" = "com.apple.platform.appletvos";     "launchSession_schemeCommand" = Test;     "launchSession_state" = 1;     "launchSession_targetArch" = arm64;     "operation_duration_ms" = 9344;     "operation_errorCode" = 3;     "operation_errorDomain" = IDEDebugSessionErrorDomain;     "operation_errorWorker" = DBGLLDBLauncher;     "operation_name" = IDEiPhoneRunOperationWorkerGroup;     "param_consoleMode" = 0;     "param_debugger_attachToExtensions" = 0;     "param_debugger_attachToXPC" = 1;     "param_debugger_type" = 4;     "param_destination_isProxy" = 0;     "param_destination_platform" = "com.apple.platform.appletvos";     "param_diag_MainThreadChecker_stopOnIssue" = 0;     "param_diag_MallocStackLogging_enableDuringAttach" = 0;     "param_diag_MallocStackLogging_enableForXPC" = 0;     "param_diag_allowLocationSimulation" = 1;     "param_diag_gpu_frameCapture_enable" = 3;     "param_diag_gpu_shaderValidation_enable" = 0;     "param_diag_gpu_validation_enable" = 1;     "param_diag_memoryGraphOnResourceException" = 0;     "param_diag_queueDebugging_enable" = 1;     "param_diag_runtimeProfile_generate" = 0;     "param_diag_sanitizer_asan_enable" = 0;     "param_diag_sanitizer_tsan_enable" = 0;     "param_diag_sanitizer_tsan_stopOnIssue" = 0;     "param_diag_sanitizer_ubsan_stopOnIssue" = 0;     "param_diag_showNonLocalizedStrings" = 0;     "param_diag_viewDebugging_enabled" = 1;     "param_diag_viewDebugging_insertDylibOnLaunch" = 0;     "param_install_style" = 2;     "param_launcher_UID" = 2;     "param_launcher_allowDeviceSensorReplayData" = 0;     "param_launcher_kind" = 0;     "param_launcher_style" = 0;     "param_launcher_substyle" = 0;     "param_runnable_appExtensionHostRunMode" = 0;     "param_runnable_productType" = "com.apple.product-type.application";     "param_runnable_type" = 1;     "param_testing_launchedForTesting" = 1;     "param_testing_suppressSimulatorApp" = 0;     "param_testing_usingCLI" = 0;     "sdk_canonicalName" = "appletvos15.4";     "sdk_osVersion" = "15.4";     "sdk_variant" = appletvos; } -- System Information macOS Version 12.4 (Build 21F79) Xcode 13.4.1 (20504) (Build 13F100) Timestamp: 2022-07-18T23:42:12Z
Replies
0
Boosts
0
Views
1.1k
Activity
Jul ’22
Appstore Uploading issue
Hi all my developer friends, Last few days i am facing some issues with uploading a build to appstore. The issue is following please help me to solve this issue This bundle does not support one or more of the devices supported by the previous app version. Your app update must continue to support all devices previously supported. You declare supported devices in Xcode with the Targeted Device Family build setting. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html With error code STATE_ERROR.VALIDATION_ERROR.90101 for id af7a1ff5-d122-43fb-9c4e-3b8bf5e12f37
Replies
0
Boosts
0
Views
1.8k
Activity
Jul ’22
Xcode Cloud to use swift 5.7 (Xcode-14)
Overview I have an existing Xcode project that works fine with Xcode Cloud I have a separate branch on to which I have migrated and made changes for Xcode 14 On the same branch I have made some code changes that is supported by Swift 5.7 Example: var price: Int? = 100 guard let price else { return } Problem Xcode code build fails with the error Variable binding in a condition requires an initializer Question: Is it possible to build Xcode Cloud on Swift 5.7 or Xcode 14?
Replies
0
Boosts
0
Views
1.2k
Activity
Jul ’22
Build uploading issue
Hi, I am trying to upload my app in testflight, i got apple servers error every time. Thanks in Advance
Replies
1
Boosts
1
Views
708
Activity
Jun ’22
Waiting for response...upload app.ipa in App Store Connect
Hi, community, when I try to upload a *.ipa in the App Store Connect, I lose too much time because XCode is waiting for a response... On avg, I lost 10 minutes every build. I have a fiber connection. It's correct?
Replies
8
Boosts
0
Views
6.6k
Activity
Jun ’22
Tests are running twice even if only one Test Configuration is set in the Test Plan
Hello, Did anyone succeed to chose a specific Configuration from the Test Plan to be used for running tests using Test Plans on a Xcode Bot? I tried multiple possibilities with no success. We can pass to xcodebuild the following parameter and it will run the desired test plan "test -testPlan NameOfTheTestPlan", but if there is only one configuration under the test plan , all the tests will run twice because of the default "Share Configurations" Any ideas? Thanks!
Replies
1
Boosts
1
Views
1.7k
Activity
Jun ’22
problem with xproject
failed to read asset tags: The command (cd /Users/Stark/Downloads/hyundai_msrm && /usr/bin/actool --print-asset-tag-combinations --output-format xml1 /Users/Stark/Downloads/hyundai_msrm/hyundai_msrm/Assets.xcassets) exited with status 1. The command's output was: xcrun: error: invalid active developer path (/Applications/Xcode.app/Contents/Developer), missing xcrun at: /Applications/Xcode.app/Contents/Developer/usr/bin/xcrun i was wondering that matter if i have older or newest version of xcode ? or is there other error ?
Replies
1
Boosts
0
Views
916
Activity
Jun ’22
App Store Connect don't show build even Xcode can upload successfully.
App Store Connect webpage don't show build even Xcode is really upload success. Yesterday, I use Xcode to upload And it success. Then, today I try to upload the same build it show this I go to App Store Connect webpage and see TestFlight tab for this upload App. Then it show as following I hope my screen capture is helpful to you. I hope Apple's Xcode team and App Store Connect web team can try to find out my upload file. And research why Xcode can up load successfully and webpage don't show anything. The file I upload is Version=1.0.1 with build =2. My App ID is -> 5BX22E226C.com.meshub.fluWebrtcApp And the file I upload is Version=1.0.1 with Build=2. I upload it successfully at June 3rd. (Taipei Time). Thank you very much.
Replies
7
Boosts
0
Views
9.7k
Activity
Jun ’22
Xcode 13.4 --Could not find module XXXXX for target 'x86_64-apple-ios-simulator';
Could not find module XXXXX for target 'x86_64-apple-ios-simulator'; found: arm64-apple-ios-simulator, Does anyone have this problem thank you
Replies
1
Boosts
0
Views
1.5k
Activity
May ’22