Search results for

build disappears

49,241 results found

Post

Replies

Boosts

Views

Activity

Passed argument is disappeared in Release Configuration build(LLVM)
I have a trouble about the different behavior with 'Debug' and 'Release' Build Configuration.In my application, there is a implementation like below.In 'Release' build, the argument is disappeared(as null) in 'functionB'. I can't understand the reason.- (void)functionA { ... Arg1* arg1 = nil; arg1 = [[Arg1 alloc] init]; arg1.porperty1 = a; arg1.property2 = b; arg1.property3 = c; ... [ObjX functionB: ... :(Arg1*)arg1, ...]; ... arg1 release]; } - (void)functionB: ... :(Arg1*)aArg1, ... { NSLog(@aArg1.propperty1=%@, aArg1.property1); NSLog(@aArg1.propperty2=%@, aArg1.property2); NSLog(@aArg1.propperty3=%@, aArg1.property3); // -> In Debug Build, the output is a, b and c. // -> But in Release Build the output is (null) (null) (null) }In 'Debug' build, I can get the correct value of the argument(a, b and c).I tried changing 'Optimization Level' of LLVM(Compiler) for 'Release' build, from 'Fastest, Smallest [-Os]' to 'None [-O0]'(same as 'Debug'
0
0
252
Aug ’15
Reply to Testflight Build missing
Had this issue twice for past few days.First time, 1st build disappeared after processing, tho we eventually got warning email day after that. Right after uploading 1st build, we fixed missing Privacy Usage Description in Info.plist (it was a demo build), and it worked.Second time, last night, first 4 builds were eaten alive by Testflight 😟 , no warning email, nothing, and we were in the middle of emergence release.Eventually, issue got resolved, by updating Capabilities in Developer Portal to match with what's in our project (we use manaual signing).And this morning, all those eaten builds were ruminated by Testflight 😕, and all stuck in processing.I guess if you are still facing this issue, try:1. Update Info.plist to include all necessary fields (for our first encounter, it was appicon and Privacy Usage Description)2. Update Capabilities to match with what's in your project, and provisioning profiles
Jun ’19
Build just disappears from iTunes Connect after Processing. No Warning!
Hi,Anybody else noticing this error?After a build is submitted to the iTunes Connect, The build just disappears after processing.If i try to do it again i get this error eventhough the build is NOT present inGetting ITMS-4238 “Redundant Binary Upload” error no mater what I change the build version or app version .ERROR ITMS-9000: Redundant Binary Upload. There already exists a binary upload with build versionThanksAnand
1
0
778
Apr ’17
Contact Note Entitlement Disappearing For 'Release' Build Configuration
A few months ago I requested access to the com.apple.developer.contacts.notes entitlement, which I now have access to. While running on 'Debug' build configuration, everything works as expected. When creating a 'Release' build, however, the entitlement does not appear to be included with the app, as the console reports that fetching the note for each contact fails. When I try to add the Contact Notes capability in Xcode, under the 'Release' tab in the project settings, the capability appears for a few seconds, then disappears when I move to a different tab and return. This does not happen for the 'Debug' configuration. Attempted Resolutions: Changing the signing configuraiton from 'Automatic' to 'Manual', using a manually generated provisioning profile. I manually inspected the provisioning profile using the terminal to ensure it included the entitlement. Creating a separate entitlement file with com.apple.developer.contacts.notes, adding it to the root of the project. Ensuring that
4
0
1.1k
Jun ’24
I have uploaded my new builds in iTunesConnect. But after few seconds it disappears from my Activity -> All Builds -> iOS Build tab. I am not even seeing my build now. What might be the cause? How to solve this issue?
I have uploaded my new builds in iTunesConnect. But after few seconds it disappears from my Activity -> All Builds -> iOS Build tab. I am not even seeing my build now. What might be the cause? How to solve this issue?
1
0
471
Feb ’18
Build submitted in App Store Connect via altool has been disappeared
Hello!Our team use altool to upload new builds of our app in App Store Connect (ASC). We've noticed that sometimes (not so often) a regular build may be successfully uploaded to ASC but then we can't find it in 'Builds' and even in 'Activity' section of ASC. When we try to upload the same version again we get an error You've already uploaded a build with build number '$BUILDNUM_HERE' for version number '$VER_HERE'so we need to increment build number for the same version and rebuild it to be able to upload our app.altool don't output any error and exits with exit code 0 on the first uploading.This issue affects our automation so I'll be glad for any help 🙂
0
0
511
Feb ’20
Xcode 15: MacOSX SDK headers disappear during heavy build
I am facing very strange issue on the last version of Xcode. At some point during heavy build (like building QtWebEngine from the sources) some headers from MacOSX SDK may disappear for the compiler, what leads to the errors. The issue happens build to build. I haven't found any other issue even close to be similar anywhere. The errors during the build looks like this: ../../../../../../../../../../../Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -MMD -MF obj/pdf/internal/pdfium_permissions.o.d -DOFFICIAL_BUILD -DTOOLKIT_QT -D_LIBCPP_HAS_NO_ALIGNED_ALLOCATION -DCR_XCODE_VERSION=1510 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0 -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -DWEBP_EXTERN=extern -DUSE_EGL -DU_USING_ICU_NAMESPACE=0 -DU_ENABLE_DYLOAD=0 -DUSE_CHROMIUM_ICU=1 -DU_ENABLE_TRACING=1 -DU_ENABLE_RESOURCE_TRACING=0 -DU_STATIC_IMPLEMENTATION
0
0
1k
Dec ’23