+3  A: 

Try ordering the Copy Files phase above the link phase.

When i debug my Project, its all right, but if i change the Version to "Release" and than Build -> there is the Red "1" on my XCode icon in the Dock,

Well, what does the error say?

Peter Hosey
The error is not visible, in the Debugger, there is no error just the 1 on my Icon
ahmet2106
The error is a build error, not a run error. Thus, you need to look in the Build Log, not the Debugger.
Peter Hosey
Sorry, forgot it:pbxcp: warning: couldn't strip: /Users/ahmet/Desktop/Release/TaskApp.app/Contents/Frameworks/Growl.framework/Versions/A/Growl: No such file or directory
ahmet2106
That's a warning, not an error. Even so, like I said, move the Copy Files phase above the Link Binary with Libraries phase.
Peter Hosey
The error is still coming, but heres the error now: http://qkpic.com/95cec
ahmet2106
and: Error (X) Command: /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp failed with exit code 1
ahmet2106
“malformed object”? That's interesting. What version of Xcode are you using?
Peter Hosey
A: 

I can manually copy the growl.framework into the /Frameworks/ folder in my .app File, but is this a good way?

Or should i research this Problem again? But then I can Build the Release Version...

ahmet2106
No. You'll find manually copying the Growl framework for every clean build to be a pain in the butt.
Peter Hosey
+3  A: 

alt text

"malformed object: Unknown load command 5"

This usually indicates that you have a binary that was built on a later version of Mac OS X (e.g. SnowLeopard) and you're trying to link it on an earlier version of Mac OS X (e.g. 10.5 Leopard).

Ensure you have a correct version of the Growl framework for your development environment and OS.

cdespinosa
Reading your answer reminded me that there were, indeed, problems using version 1.2 of the Growl framework on Leopard, because we had its deployment target set to 10.6 for x86_64 (oops). We fixed it and released a 1.2.1 version last month: http://code.google.com/p/growl/downloads/detail?name=Growl-1.2.1-Framework.tbz @ahmet2106: use that.
Peter Hosey
@Peter Hosey This does not realy change something. But I think you both are right, it must be something with my Version: XCode 3.1.4 and Mac 10.5.6 For this I will buy me Snow Leopard -.- I've no other chance becaute the Framework 1.2.1 doesn't change anything in my Project, dont know why...
ahmet2106