본문 바로가기

Flutter

Flutter iOS 시뮬레이터가 DVTPortal Error Code=1100 "Your session has expired. Please log in." 에러와 함께 안 열릴 때

반응형

플러터 첫 포스팅! 

더디지만 차근차근 플러터 공부를 하고 있는데 익숙하지 않다 보니 에러 팡팡

 

잘 실행되던 iOS Simulator 가 아래와 같은 빌드 실패 메시지와 함께 갑자기 안된다.

Failed to build iOS app
Error output from Xcode build:
↳
    xcodebuild DVTPortal: Service '<DVTPortalViewDeveloperService: 0x600002b98880; action='viewDeveloper'>' 
     encountered an unexpected result code from the portal ('1100')
    xcodebuild DVTPortal: Error: Error Domain=DVTPortalServiceErrorDomain Code=1100 
    "Your session has expired. Please log in." 
    UserInfo={payload={
        creationTimestamp = "2023-03-06T04:14:09Z";
        httpCode = 200;
        protocolVersion = QH65B2;
        requestUrl = "https://developerservices2.apple.com/services/QH65B2/viewDeveloper.action";
        responseId = "67072d2d-a85c-49a0-b6f0-35aaeb753dbf";
        resultCode = 1100;
        resultString = "Your session has expired. Please log in.";
        userLocale = "en_US";
        userString = "Your session has expired. Please log in.";
    }, NSLocalizedDescription=Your session has expired. Please log in.}

Your session has expired. Please log in. 아니 갑자기 뭔 세션이 익스파이어 되었대? 그쪽 관련해서는 건드리지도 않았는데 ;;; 

 

검색해봐도 뭐가 문제인지 잘 모르겠고 

이전 프로젝트랑 어느 부분이 다른지 확인하다 보니 ... 원인은 ...

  # To add assets to your application, add an assets section, like this:
  assets:
    - asset/img

- asset/img 를 - asset/img/ 로 수정하니 잘 된다. 하하하.

찾느라 한시간은 날린듯! 이러니 공부가 더디지 ...

 

잊지 않기 위해 포스팅 해봅니다!

 

반응형