I am using HelloPhotogrammetry in Xcode
I can make one model with something like
HelloPhotogrammetry.main([path_to_folder_of images, path_to_output/model.usdz, "-d", "medium", "-o", "unordered", "-f", "high" ])
But how would I request several models simultaneously? I only want to vary the detail.
[
("/Users/you/Desktop/model_medium.usdz", detail: .medium),
("/Users/you/Desktop/model_full.usdz", detail: .full),
("/Users/you/Desktop/model_raw.usdz", detail: .raw
]
Apple Developers
RSS for tagThis is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and foster a supportive community.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Immediately post iOS 18.4 upgrade yesterday 2023 MacBook Pro 14″ battery level dropped to zero and indicates "Service Recommended". System report shows battery charge cycles at "0". Wondering if others have seen this occurance on other laptops?
I was experimenting with the screen time controls to see how it affected an app I am working on and I created a screen time passcode that I later forgot. Any fix? I can't find the "forgot passcode" button anywhere and I am now unable to turn off find my as a result.
14Pro can not delete any application after upgrade system18.4
i am using this code
public static bool CheckForForceUpdate()
{
try
{
Version latestVersion = new(GetLatestVersion());
Version currentVersion = new(AppInfo.VersionString);
if (latestVersion != null && currentVersion < latestVersion)
{
NSUserDefaults.StandardUserDefaults.SetBool(true, StorageKey.IsForceUpdate);
return true;
}
else
{
NSUserDefaults.StandardUserDefaults.SetBool(false, StorageKey.IsForceUpdate);
return false;
}
}
catch (Exception ex)
{
Console.WriteLine("CheckForForceUpdate....." + ex.Message);
return false;
}
}
public static string GetLatestVersion()
{
try
{
string appId = "1586153397"; // Replace with your App Store app ID
string url = $"https://itunes.apple.com/lookup?id={appId}";
using (HttpClient client = new HttpClient())
{
var response = client.GetStringAsync(url).GetAwaiter().GetResult();
var json = JObject.Parse(response);
var latestVersion = json["results"]?[0]?["version"]?.ToString();
return latestVersion;
}
}
catch (Exception ex)
{
Console.WriteLine("GetLatestVersion..." + ex.Message);
return null;
}
}
The value of latestVersion should 2.1 in my production app i am not able to get this
hence i am not able to achieve Force Update functionality
Topic:
Community
SubTopic:
Apple Developers
Created an ios app and try to scan for nearby bluetooth devices but didn't manage to find my Macbook (M1 Pro, Sequoia).
How can it be done?
Trying to match the peripheral name but didn't get it.
The purpose of this is to try to see if the App can act as a FIDO2 Token to have the close proximity feature.
I am facing iOS app crash on app start, below is stack trace of crashed thread
OS Version: iOS 18.3.2 (22D82)
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Crashed Thread: 28
Application Specific Information:
*** -[__NSDictionaryM setObject:forKey:]: key cannot be nil
Thread 28 Crashed:
0 CoreFoundation 0x323b575fc
1 libobjc.A.dylib 0x31e649244 objc_exception_throw
2 CoreFoundation 0x323b3f224
3 libloader 0x10651eba4
4 libloader 0x10653f3b4
5 libdispatch.dylib 0x3336a8248
6 libdispatch.dylib 0x3336a9fa8
7 libdispatch.dylib 0x3336b15cc
8 libdispatch.dylib 0x3336b2124
9 libdispatch.dylib 0x3336bd38c
10 libdispatch.dylib 0x3336bcbd8
11 libsystem_pthread.dylib 0x43965d680 _pthread_wqthread
12 libsystem_pthread.dylib 0x43965b474 start_wqthread
We have an Angular web application which gets installed as a webclip on client iPads. The web application has buttons that will take the user directly to our native iOS application. We also would like a way for our webclip application when opened to perform some data lookups and if certain conditions are met, then take the user directly to our native iOS app.
We're using vanilla JS window.open. This works well when the user manually taps button. However, this does not work when the webclip application tries to open the native iOS app without user interaction. In that case the window.open does nothing. The window.open target URL is the exact same in both cases.
We tried using URL Schemes instead of Universal Links but with this the iPad displays a modal asking "Do you want to open ?". For our use case, this is unacceptable. Is there any way for us to skip this prompt? We'd like there to be no additional action needed from the user to be able to get from webclip to native iOS app beyond simply opening the webclip.
Hello Apple Developer Community,
I'm hoping someone can advise me on a serious issue. Our organization's Apple Developer Program account has been effectively locked because our Account Holder's Apple ID is inaccessible. I need to unlock that Apple ID so we can manage our apps.
I've already reached out to Apple Developer Support, but so far, I haven't received a response. This situation is critical because our clients rely on us to maintain and update our apps.
Key details (some info is masked for privacy): • We're enrolled as an Organization/Company. • The current Account Holder's Apple ID is locked and cannot perform any actions. • No other accounts have admin access.
If anyone has encountered a similar issue or knows a more efficient route to escalate, I'd be extremely grateful for your insights.
Thanks in advance for any advice you can share. This is critical to our organization, and we'd appreciate any pointers on how to navigate or expedite the support process.
Topic:
Community
SubTopic:
Apple Developers
Hello,
While we are uploading our App in TestFlight for external testing then after 1 minute we are getting invalid binary issue. Issues have been mentioned below.
ITMS-91061: Missing privacy manifest - Your app includes “Frameworks/Capacitor.framework/Capacitor”, which includes Capacitor, an SDK that was identified in the documentation as a commonly used third-party SDK. If a new app includes a commonly used third-party SDK, or an app update adds a new commonly used third-party SDK, the SDK must include a privacy manifest file. Please contact the provider of the SDK that includes this file to get an updated SDK version with a privacy manifest. For more details about this policy, including a list of SDKs that are required to include signatures and manifests, visit: https://developer.apple.com/support/third-party-SDK-requirements.
ITMS-91061: Missing privacy manifest - Your app includes “Frameworks/Cordova.framework/Cordova”, which includes Cordova, an SDK that was identified in the documentation as a commonly used third-party SDK. If a new app includes a commonly used third-party SDK, or an app update adds a new commonly used third-party SDK, the SDK must include a privacy manifest file. Please contact the provider of the SDK that includes this file to get an updated SDK version with a privacy manifest. For more details about this policy, including a list of SDKs that are required to include signatures and manifests, visit: https://developer.apple.com/support/third-party-SDK-requirements.
we are using ionic6 with capacitor 4. We are using camera , location, calendar , push notification with firebase.
How to resolve it?
Topic:
Community
SubTopic:
Apple Developers
.fullScreenCover(isPresented: $isShow) {
Button(action : {
isPresented.toggle()
}){
Text("Choose")
}
.familyActivityPicker(
isPresented: $isPresented,
selection: $selection)
.onChange(of: selection){ value in
}
}
In the official version of iOS 18, when I click the Done button of familyActivityPicker, the fullScreenCover pop-up box will disappear.
Hi!I‘ve bought my iphone in june 2024 and battery health was at 100% untill March this year.Now its April its at 94%.I’ve been always charging my phone to 80% and would never let it drop below 20%. Is this good or bad?
Topic:
Community
SubTopic:
Apple Developers
I submitted my ID for review over a week ago, and it's still the same, I can't log in App Store Connect?
How long have you been waiting?
Have a nice day.
The latest Beta update 18.5.4 has caused connectivity problems with my car (Skoda Enyaq) whereby there is no connection via Bluetooth or the cars internal WiFi.
Also contacts will not download to the care which is very frustrating.
Topic:
Community
SubTopic:
Apple Developers
Hi everyone,
We're hoping someone here can help us out.
We've run into a consistent issue when trying to enroll a new Apple Developer account as an organisation using our DUNS number. Here's what we've experienced:
Individual enrollment through the Developer app works perfectly with a new Apple ID.
However, when using an existing Apple ID and selecting organization enrollment, the process gets stuck:
The payment button is greyed out in the Developer app.
We're then locked out of enrolling through the app entirely.
4. When trying to complete the enrollment via the Developer website, there’s no valid payment method available (e.g., VISA option missing CVV field), and any attempts to proceed just loop without success.
We're essentially stuck in a limbo state where we can’t proceed.
We’ve gone through all the support channels:
The automated assistant (Gaby) is unable to resolve the issue or understand the full context.
Live chat support for both individual and business accounts told us they can’t assist and referred us back to the developer support system—which leads us back to square one.
All members of our team were able to enroll individually without issue, but organisation enrollment consistently failed.
Business support and Commercial support (spoken to supervisors) are unable to assist. They really tried and made an effort.
Has anyone experienced this before? Is there a way to get in touch with a real person at Apple who can actually resolve this? What are our next steps?
Any advice would be greatly appreciated.
Thanks!
Topic:
Community
SubTopic:
Apple Developers
When changing the app's alternate icon using UIApplication.setAlternateIconName(_:completionHandler:), the icon is updated correctly on the Home Screen and App Switcher. However, in Notification Center, the old app icon is still shown for notifications, even after the change has completed. Rebooting or change the device's language causes the correct icon to appear.
This issue only occurs on iOS 18.1 and later. In iOS 18.0 and earlier, Notification Center correctly reflects the updated icon.
Could you provide insights into how iOS caches notification icons and how we can force a refresh for all users?
Regarding the Issue with URL Scheme Not Working。
Hello, our app on the App Store has the following CFBundleURLTypes configuration:
We've discovered that the qmkege:// URL scheme is failing to open the app.
Steps to Reproduce:
1、We downloaded the installation package from the App Store
2、Entered qmkege:// in Safari, but it fails to launch our app。
The system logs show the following:
Key Observation:
This issue is not consistently reproducible. In most cases, when we install the app directly from the App Store (without VPN), it works fine. However, the problem occurs when downloading the app through the App Store while connected via VPN.
Looking forward to your feedback.
Topic:
Community
SubTopic:
Apple Developers
i am seeing a call icon on CallKit incoming call screen for a PushKit-initiated call (without caller information like name or number)
我们App的搜索功能,以前使用系统键盘进行输入中文搜索时,只有当输入完整,点击键盘上的对应词后,才会开始搜索, 现在没按下一个字母,就会触发搜索。
Topic:
Community
SubTopic:
Apple Developers
My team and I are currently working on an app, that enable user especially in Nigeria who are having issues with crediting thier Apple account in other to carry out some transactions such as Apple Music subscription and co. This project wI’ll grant user easy access.
We are currently seeking assist and API Support