UNITY3D에서 Android Build 할때 이런 오류가 발생..
Error building Player: Win32Exception:
ApplicationName='.../.../.../.../adt-bundle-mac-x86_64-20140624/sdk/tools/zipalign',
CommandLine='4"/.../.../.../.../Asteroid2(2)/Temp/StagingArea/Package.apk'".
CurrentDirectory='Temp/StagingArea'
내용인 즉은 해당 경로에 "zipalign.exe"가 없다는 얘기..
그래서 아래와 같이 처리 하면 됨..
- Android SDK 디렉토리를 확인
버전에 맞는 build-tools 디렉토리로 이동
(e.g.build-tools19.1.0
)zipalign.exe 화일을 복사
build-tools 디렉토리를 나와서
tools 디렉토리로 이동 후 복사
이상..