Misc/iOS Dev.2014. 3. 9. 20:09

- Nib file 'Main-iPad~ipad.nib' was not found. Please ensure....

http://stackoverflow.com/questions/21848740/iphone-app-converted-to-universal-works-fine-on-device-but-validation-fails-wi


I finally fixed it.

  • I created another Universal App Project. It created 2 storyboards, each for iPhone and iPad.
  • Copied the iPad storyboard file to my original project to Base.lproj folder.
  • Dragged and dropped the storyboard file (Main-iPad.storyboard) to my project.
  • Created Archive and ran the validation. Everything worked fine, uploaded it to App Store, and waiting for approval.

The reason I didn't create a new storyboard on my original project was that it creates a blank storyboard with 'no scenes' message. I didn't want to deal with the hassle of figuring out how to fix that issue. So I gave a shot with my above solution, it worked.



Posted by GNUPart
Dev.2012. 9. 17. 09:50

 

프로젝트 생성

 

 

 

프로젝트 폴더 구성

 

 

라이브러리 링크 ( "lib는 제거" )

 

 

Application.mk / Android.mk 구성

 

Posted by GNUPart
Dev.2012. 6. 20. 15:48

*  warning LNK4017: 대상 플랫폼에는 DESCRIPTION 문이 지원되지 않습니다. 무시됩니다.

>> <project_name>.def 파일내 DESCRIPTION 삭제

 

LIBRARY      "BTDWin"
;DESCRIPTION  'BTDWin Windows Dynamic Link Library'

EXPORTS
    ; Explicit exports can go here

 

 

 

Posted by GNUPart