Search results for

build disappears

49,306 results found

Post

Replies

Boosts

Views

Activity

App intermittently disappearing after installation
We're build a pkg with three apps in it from the command line. There is one primary app and two supporting apps. We build a folder structure inside a temp directory like below (some folder names replaced with generic ones): mkdir -p ./tmp/Applications/.hiddenfolder/ mkdir -p ./tmp/Library/Application Support/Company/ mkdir -p ./tmp/Library/Preferences/ mkdir -p ./tmp/Library/Logs/Company/ mkdir -p ./tmp/Library/LaunchAgents/ mkdir -p ./tmp/Library/Company/ mkdir -p ./tmp/Library/LaunchDaemons/ #Grant Logs Folder Read-Write Access to All chmod a+rw ./tmp/Library/Logs/Company/ chmod a+rw ./tmp/Library/Application Support/Company/ We then build and sign each app dependency and place them into the temporary folder. For each app we're calling: xcodebuild -workspace $PROJECT -scheme $TARGET -configuration Release -derivedDataPath $WORKING clean build codesign --force --deep -o runtime --entitlements ../$TARGET/$APPLICATION.entitlements --sign $DEVKEY $WORKING/Build/Produ
1
0
323
Nov ’24
Reviews disappeared from sticker pack after we submitted an update?
Hi,We recently did some tweaks to our sticker pack, so submitted it as an update. This seems to have caused out reviews to disappear (we had one in each);https://itunes.apple.com/gb/app/id1171329618https://itunes.apple.com/us/app/id1171329618Is this normal? Seems a bit stupid if the reviews disappear every time you make an update / upgrade to the pack!ThanksAndy
0
0
255
Dec ’16
App ID disappeared from our account
Hi We have been building an app in Xcode using a bundle identifier we created months ago. No problems. Until today when we wanted to add capabilities. All of a sudden the App ID is nowhere to be found in the developer account and we cannot re-create it because apparently it still exists – its just, you know, invisible or something. Hmpf. Has anyone else experienced this? How does one get the App ID back?
Topic: Code Signing SubTopic: General Tags:
1
0
479
Aug ’20
NSFileProviderExtension - downloaded file disappears
Hi there, I am in the process of writing a macOS app using NSFileProviderExtension so that I can map my customer's data in Finder. I am in the process of building it out. But one thing I notice is that once the file is downloaded and I save it to the cache folder, I see it disappear from the folder. It looks like the system removed the downloaded file a few seconds later. How do I go about tracking this? I have added the log stream messages from the point where it is downloaded to the point where it is gone missing. Any pointers greatly appreciated. 2025-07-15 16:10:41.989915-0700 0x138326 Default 0x0 989 0 filecoordinationd: (Foundation) [com.apple.foundation.filecoordination:provider] Provider radwar.Drive.DriveFileProviderExtension finished providing for 44FB3A4A-CA50-4EE2-9DC8-1C96FE584DF5 2025-07-15 16:10:41.989974-0700 0x138326 Default 0x0 989 0 filecoordinationd: (Foundation) [com.apple.foundation.filecoordination:claims] Provider radwar.Drive.DriveFileProviderExtension finished, unbl
4
0
125
Jul ’25
iPhone app disappears after launch
Hi.I made a simple iOS app which does one simple calculation with the input, stores nothing.I deployed the app for preview on my iPhone 7. It worked perfectly fine.However after a couple of days, when I launch the app on iPhone 7, it disappears after launch. I can see it in task switcher, however it won't come to front.If i redeploy it, then it works fine.iOS version: 13.3.1MacOS: 10.15.3XCode: 11.3.1Any tip would be helpful. Thank you.
1
0
647
Feb ’20
Reply to In-App Purchase
I'm sorry to bother you again but it's actually not working I just tried it in the simulator, and when I choose the type of ride and the duration, then I tap the continue button to go to the next screen the simulator just goes white and the simulator will disappear or the app will freeze and the simulator will disappear. Then takes me to the app delegate window in XCode, and in the debug area it tells me terminating with uncaught exception of type NSException (lldb). However, I am not getting any errors before I run the simulator and the build is successful.
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’18
Reply to iOS build not showing in Testflight
Facing the same issue since 20th Jan, 2023. Uploaded builds from Xcode successfully, but in appstore connect can able to see the uploaded builds under the version name. The new version name also disappears after some time. Raised a Feedback - FB11965770 (Appstore connect TestFlight section shows the version but doesn't contain the latest uploaded builds) for the same and also contacted Apple Support but can't find any solution to this.
Jan ’23
Disappear the text and press the cell
I have been using the UICollectionviewController. So , we try to make a transition to another screen by pressing the cell . But , the text that has been put in a cell will want to disappear when you press the cell . Could you tell me the reason for this ?・ViewController func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { let cell:CustomCell = collectionView.dequeueReusableCellWithReuseIdentifier(cell, forIndexPath: indexPath) as! CustomCell cell.category.text = BBBBBB ; cell.category.backgroundColor = UIColor.blueColor(); cell.date.text = 2016-03-26; cell.title.text = AAAAAAAAAAAA; cell.imgSample.image = UIImage(named: CCCCC.png) cell.backgroundColor = UIColor.whiteColor() / cell.layer.masksToBounds = false; cell.layer.shadowOffset = CGSizeMake(0.0, 0.3); cell.layer.shadowOpacity = 0.2; cell.layer.shadowRadius = 0.5; return cell } func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollecti
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
258
Apr ’16