Search Unity

Unity 4.5 -post process build player, iPhone_View.m

Discussion in 'iOS and tvOS' started by patch24, May 27, 2014.

  1. patch24

    patch24

    Joined:
    Mar 29, 2009
    Posts:
    120
    I'm having issues after upgrading from Unity 4.3.4 to 4.5 with my postprocessbuildplayer no longer being executed (it is still an executable file and was working fine in 4.3.4)
    Also it seems that iPhone_View.m and .h are no longer used. Has iphone_view been deprecated? I have some plugins that no longer work without it.
    Thanks,
    -p
     
  2. Alexey

    Alexey

    Unity Technologies

    Joined:
    May 10, 2010
    Posts:
    1,624
    yes it was killed. It is easy to fix plugins though: most of the time you need to just change include to be #include "UI/UnityViewControllerBase.h" and that's it.
    essentially only two files were included (and might be missed) UI/UnityViewControllerBase.h and Unity/GlesHelper.h but latter one was rarely used and usually is included directly instead of going from here