0xe8008018 (The identity used to sign the executable is no longer valid.)

I created a new App project, I didn't write any my code, I just built it and install it to my iPhone, then I got the error as below:

无法安装“test”
Domain: IXUserPresentableErrorDomain
Code: 14
Recovery Suggestion: Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.X9zsVD/extracted/test.app : 0xe8008018 (The identity used to sign the executable is no longer valid.)

Please ensure that the certificates used to sign your app have not expired. If this issue persists, please attach an IPA of your app when sending a report to Apple.
User Info: {
    DVTErrorCreationDateKey = "2025-04-13 03:40:21 +0000";
    IDERunOperationFailingWorker = IDEInstallCoreDeviceWorker;
}
--
Failed to install the app on the device.
Domain: com.apple.dt.CoreDeviceError
Code: 3002
User Info: {
    NSURL = "file:///Users/ltf/Library/Developer/Xcode/DerivedData/test-fnnhrmtlclvfdnennxoorbywbuze/Build/Products/Debug-iphoneos/test.app";
}
--
Can't install “test”
Domain: IXUserPresentableErrorDomain
Code: 14
Failure Reason: 无法安装此App,因为无法验证其完整性。
Recovery Suggestion: Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.X9zsVD/extracted/test.app : 0xe8008018 (The identity used to sign the executable is no longer valid.)
--
Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.X9zsVD/extracted/test.app : 0xe8008018 (The identity used to sign the executable is no longer valid.)
Domain: MIInstallerErrorDomain
Code: 13
User Info: {
    FunctionName = "+[MICodeSigningVerifier _validateSignatureAndCopyInfoForURL:withOptions:error:]";
    LegacyErrorString = ApplicationVerificationFailed;
    LibMISErrorNumber = "-402620392";
    SourceFileLine = 79;
}
--

Event Metadata: com.apple.dt.IDERunOperationWorkerFinished : {
    "device_identifier" = "00008120-001E51C011F9A01E";
    "device_isCoreDevice" = 1;
    "device_isWireless" = 1;
    "device_model" = "iPhone15,5";
    "device_osBuild" = "18.3.2 (22D82)";
    "device_platform" = "com.apple.platform.iphoneos";
    "device_thinningType" = "iPhone15,5";
    "dvt_coredevice_version" = "443.19";
    "dvt_coresimulator_version" = "1010.10";
    "dvt_mobiledevice_version" = "1784.120.2";
    "launchSession_schemeCommand" = Run;
    "launchSession_state" = 1;
    "launchSession_targetArch" = arm64;
    "operation_duration_ms" = 2527;
    "operation_errorCode" = 14;
    "operation_errorDomain" = IXUserPresentableErrorDomain;
    "operation_errorWorker" = IDEInstallCoreDeviceWorker;
    "operation_name" = IDERunOperationWorkerGroup;
    "param_debugger_attachToExtensions" = 0;
    "param_debugger_attachToXPC" = 1;
    "param_debugger_type" = 3;
    "param_destination_isProxy" = 0;
    "param_destination_platform" = "com.apple.platform.iphoneos";
    "param_diag_113575882_enable" = 0;
    "param_diag_MainThreadChecker_stopOnIssue" = 0;
    "param_diag_MallocStackLogging_enableDuringAttach" = 0;
    "param_diag_MallocStackLogging_enableForXPC" = 1;
    "param_diag_allowLocationSimulation" = 1;
    "param_diag_checker_tpc_enable" = 1;
    "param_diag_gpu_frameCapture_enable" = 0;
    "param_diag_gpu_shaderValidation_enable" = 0;
    "param_diag_gpu_validation_enable" = 0;
    "param_diag_guardMalloc_enable" = 0;
    "param_diag_memoryGraphOnResourceException" = 0;
    "param_diag_mtc_enable" = 1;
    "param_diag_queueDebugging_enable" = 1;
    "param_diag_runtimeProfile_generate" = 0;
    "param_diag_sanitizer_asan_enable" = 0;
    "param_diag_sanitizer_tsan_enable" = 0;
    "param_diag_sanitizer_tsan_stopOnIssue" = 0;
    "param_diag_sanitizer_ubsan_enable" = 0;
    "param_diag_sanitizer_ubsan_stopOnIssue" = 0;
    "param_diag_showNonLocalizedStrings" = 0;
    "param_diag_viewDebugging_enabled" = 1;
    "param_diag_viewDebugging_insertDylibOnLaunch" = 1;
    "param_install_style" = 2;
    "param_launcher_UID" = 2;
    "param_launcher_allowDeviceSensorReplayData" = 0;
    "param_launcher_kind" = 0;
    "param_launcher_style" = 99;
    "param_launcher_substyle" = 0;
    "param_runnable_appExtensionHostRunMode" = 0;
    "param_runnable_productType" = "com.apple.product-type.application";
    "param_structuredConsoleMode" = 1;
    "param_testing_launchedForTesting" = 0;
    "param_testing_suppressSimulatorApp" = 0;
    "param_testing_usingCLI" = 0;
    "sdk_canonicalName" = "iphoneos18.4";
    "sdk_osVersion" = "18.4";
    "sdk_variant" = iphoneos;
}
--


System Information

macOS Version 15.5 (Build 24F5042g)
Xcode 16.3 (23785) (Build 16E140)
Timestamp: 2025-04-13T11:40:21+08:00

Contentview.swift

import SwiftUI

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "globe")
                .imageScale(.large)
                .foregroundStyle(.tint)
            Text("Hello, world!")
        }
        .padding()
    }
}

#Preview {
    ContentView()
}

testApp.swift

import SwiftUI

@main
struct testApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

I can't upload zip file, so I can't post files in the test.xcodeproj folder.

Subject: Urgent Follow-Up on Unresolved Code Signing Issue (Case ID: 13121470)

Dear Apple Developer Support Team,

I am writing to formally express my concern and frustration regarding an unresolved issue that has been severely impacting my development work.

Since April 10th, I have been encountering the following error when trying to install my app “Find Molly” using Xcode 16C5032a:

Error 0xe8008018: Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.vNomEg/extracted/c_mll.app : 0xe8008018 (The identity used to sign the executable is no longer valid.)

To resolve this, I submitted a bug report via Apple’s Feedback Assistant (FB17192041 and FB17182244) and followed up with a Code-Level Support request on April 13th (Case ID: 13121470). As instructed, I promptly provided all requested diagnostic and supplementary information through both Developer Support and Feedback Assistant.

However, as of today, over a month later, the issue remains unresolved. More concerningly, I have sent two follow-up emails in the past week, and received no response.

This delay and lack of communication have caused significant disruption to my development timeline. I respectfully request: 1. A status update on the resolution of Case ID: 13121470, 2. Confirmation that my submitted information has been reviewed, 3. An estimated timeframe for resolution or next steps.

I appreciate your urgent attention to this matter and look forward to a timely response.

Best regards, Tony

0xe8008018 (The identity used to sign the executable is no longer valid.)
 
 
Q