Search results for

apple pencil battery life

146,242 results found

Post

Replies

Boosts

Views

Activity

Reply to LibGDX/MobiVM App refuses to launch on iOS 26.0.1
It’s hard to offer specific insight into this because I don’t maintain expertise in third-party tooling. I usually recommend that folks in your situation ask for help via the support channel for the tools they’re using. However, I can offer some general advice. My experience is that, when an app fails to launch like this, without generating a crash report, it’s usually because the third-party runtime has detected a problem and called exit. That’s fine during debugging, because you can get a breakpoint on exit and look at the backtrace. However, it’s problematic when the app is Distribution signed, because you can’t attach with the debugger. My usual advice here is to use Xcode to export a Development signed app from the same Xcode archive that you submitted to TestFlight. See Isolating Code Signing Problems from Build Problems. I’m not sure how well that’ll map to your third-party tooling. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple
2w
Reply to is com.apple.developer.usb.host-controller-interface managed?
[quote='802495021, ssmith_c, /thread/802495, /profile/ssmith_c'] Is this a managed entitlement? [/quote] Yes. It’s certainly restricted, in the sense that it must be authorised by a profile. TN3125 Inside Code Signing: Provisioning Profiles talks about that. And given that it’s not listed under Capabilities in the App ID editor on the Developer website, you can’t assign it to to yourself, so it’s not simply restricted but also managed. Normally we have some sort of application form for managed capabilities, but I’m unable to track that down here. I’ve seen requests for this go by in the past, and I think I know the right process, but this is definitely more of a Kevin thing than a me thing. I’m gonna run this past him before I say anything definitive. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Entitlements Tags:
2w
Reply to Notary Request Stuck In Pending
[quote='860350022, Michael8619, /thread/802183?answerId=860350022#860350022, /profile/Michael8619'] after 3.5 days of waiting. [/quote] Blergh. Lemme know if you see such a long delay in your subsequent notarisation requests. Normally I see follow-up requests go through quickly, but that’s after a successful notarisation. I’m curious to see if your unsuccessful notarisation still allowed the system to ‘learn’. [quote='860350022, Michael8619, /thread/802183?answerId=860350022#860350022, /profile/Michael8619'] I must have missed some files in mine as I just received invalid on all my files [/quote] OK. If you’re unable to resolve this, I’d be happy to take a look. My only ask is that you start a new thread with the details, so we can leave this thread focused on the “in-depth analysis” issue. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Notarization Tags:
2w
Notarization taking hours??
I started a notarization run a few hours ago. (and used --wait) Conducting pre-submission checks for Metrix Installer.dmg and initiating connection to the Apple notary service... Submission ID received id: dd77be4c-0cb6-4913-a846-d4025ede37fd Successfully uploaded file id: dd77be4c-0cb6-4913-a846-d4025ede37fd path: /Users/johnluss/Work/Metrix Installer.dmg Waiting for processing to complete. Current status: In Progress................................................................................................................................. I finally ctrl-c out of it (PAGES of ....) and tried getting the log Submission log is not yet available or submissionId does not exist id: dd77be4c-0cb6-4913-a846-d4025ede37fd The Apple System Status page shows all servers up and running. Any suggestions on what might be going wrong?
7
0
3.2k
2w
Reply to Click on UITextView or UITextField to crash
Please please please don’t do this. The crash you’re seeing is caused by a memory management problem. The most common cause of such problems is an over-release bug. That is, some code has over-released an NSDate object, that same memory has been re-used as an NSString object, and then some other code has using the original object pointer thinking it’s date when it’s now actually a string, and hence this exception. You’re ‘fixing’ the crash by using an Objective-C category to add date methods to string objects, and string objects have no business having those methods. This is the wrong approach. Rather, you need to find the underlying memory management bug and resolve that. My advice is that your run your app under the standard memory debugging tools. Specifically, Zombies is the tool of choice when debugging over-release problems. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
2w
Missing a functional link to the Terms of Use (EULA)
I wanted to add subscription plan into my app for a new release. I have bottom sheet showing promotional text for this subscription like below They rejected my app because We were unable to find the following required information in your app's binary: – A functional link to the Terms of Use (EULA) – A functional link to the privacy policy So I added both links for terms and privacy policy in the promotional text. I use the standard Apple EULA for the link. And I still get rejected on the latest review because Specifically, We were unable to find the following required item(s) in your app's metadata: – A functional link to the Terms of Use (EULA) WHY? is it because I should put this link in my App Description page instead of the promotional text? Then why they didn't make noise about the link to privacy policy?
9
0
10k
2w
Reply to Missing a functional link to the Terms of Use (EULA)
In my case Apple rejected subscriptions, the answer from Apple was: We were unable to find the following required item(s) in your app's metadata: – A functional link to the Terms of Use (EULA) What helped in my case: Created custom Terms of Use (insread of standart Apple EULA). Added links to Terms of Use and Privacy Policy to App Description field: appstoreconnect / app / Distribution / iOS App / version / Description (or just https://appstoreconnect.apple.com/apps/[appid]/distribution/ios/version/inflight -> Description) My links in Description field look like that: ... Terms of Use: https://... Privacy Policy: https://... Added a plain text of License Agreement instead of it's url to Custom License Agreement field: appstoreconnect / app / Distribution / General / App Information (or just https://appstoreconnect.apple.com/apps/[appid]/distribution/info) / General Information / License Agreement / Edit / choose Apply a custom EULA ... / Custom License Agreement Instructions for
2w
Reply to How to accurately query HKWorkout segment data
Thank you for sharing this article — it directly touches on the issue I’m currently facing. I have actually tried both approaches mentioned: 1.Using .distanceWalkingRunning or .distanceCycling samples to accumulate distance and determine per-kilometer (or per-mile) ranges. This is a reasonable suggestion, but it comes with a major drawback. For example, processing a 100 km cycling workout produces a very large number of samples, and the overhead becomes even greater when handling multiple workouts in bulk. In other words, this method is valid but not efficient. 2.As edorphy pointed out, Apple Watch’s Activity app does record per-kilometer and per-mile split points as HKWorkoutEvents. In my own testing, these event markers are actually more accurate than the splits derived from accumulating .distanceWalkingRunning or .distanceCycling samples. This leads to a simple but important question: how can developers make effective use of the HKWorkoutEvents that Apple Watch already records and stores
2w
Unable to Accept Invite
I am getting this issue when trying to accept an invite to a new test version of our app. ****Unable to Accept invite This invitation cannot be accepted because your Apple Account, xxxxxxxx.me.com, has already been associated to this app.**** Can you help please?
5
0
956
2w
Reply to Unable to Accept Invite
Same here, this is very frustrating. Not working either in iOS TF or Mac TF. Error: Unable to Accept Invite The Apple Account you're currently signed in with, d*****@gmail.com, doesn't match the one associated to this invitation. You can sign in to TestFlight with the original Apple Account, d*****@gmail.com, or request a new invitation from the developer.
2w