bug-fix: main-profile processing should account for the effective AppID which is in context.bundleIdentifier

This commit is contained in:
mahee96
2026-02-22 05:30:39 +05:30
parent 146b69944a
commit 786f06800f

View File

@@ -1533,7 +1533,7 @@ private extension AppManager
return return
} }
if let app = context.app, let profile = context.provisioningProfiles?[app.bundleIdentifier] { if let app = context.app, let profile = context.provisioningProfiles?[context.bundleIdentifier] {
var appexBundleIds: [String: String] = [:] var appexBundleIds: [String: String] = [:]
for appex in app.appExtensions { for appex in app.appExtensions {
appexBundleIds[appex.bundleIdentifier] = appex.bundleIdentifier.replacingOccurrences(of: app.bundleIdentifier, with: profile.bundleIdentifier) appexBundleIds[appex.bundleIdentifier] = appex.bundleIdentifier.replacingOccurrences(of: app.bundleIdentifier, with: profile.bundleIdentifier)