Tagged Questions
The release-builds tag has no wiki summary.
4
votes
2answers
498 views
Releasing an ios mobile app built in flash builder 4.5 without apple certificate
I have a jailbroken iphone 4, and I want to create a release, an ipa file from a flex project I've written in flash builder 4.5.1, For testing purposes (on my device). Can it be done without buying ...
4
votes
2answers
414 views
Selecting the certain resource files into WAR from the default src/main/resources location with Maven
I am trying to control which files make into the WAR package that is created by mvn package goal. Specifically, I want to exclude some files from the default src/main/resources folder for each package ...
4
votes
6answers
619 views
Partial builds versus full builds in Visual C++
For most of my development work with Visual C++, I am using partial builds, e.g. press F7 and only changed C++ files and their dependencies get rebuilt, followed by an incremental link. Before ...
2
votes
2answers
194 views
Release build problems; Passing a std::string object to a static library function
This is the first time I've tried to use the release build with Visual C++ 2005 and it seems there's definitely some differences.
My current error is:
Unhandled exception at 0x6ef7d628 ...
2
votes
3answers
775 views
Exporting release build - Flex through Intellij Idea
How do I generate release build of my Flex Application
through IntelliJ Idea, like I do in Flex Builder?
1
vote
5answers
734 views
How can I link against the debug/release libraries automatically in VC++ 6.0?
I am trying to maintain a program written 5 years ago in VC++ 6.0. It uses our 'common' libraries. The trouble I have is that it either links against the debug version of these libraries or the ...
0
votes
2answers
82 views
Creating Release build of dojo to a custom folder
I need to create a release build of Dojo. I'm able to do that using the profile that I created. The release build is getting generated inside release folder of Dojo source. Is it possible to move that ...
0
votes
2answers
188 views
TRACE Macro Not Compiled Out Properly in Release Build - C++
When I do a Release build of my Visual Studio 2008 solution I get a bunch of errors like this:
error C2059: syntax error : ','
This is how I typically use TRACE:
TRACE(_T("My error ...
0
votes
1answer
1k views
Flex doesn't export resources to release build
I'm trying to set image source conditionaly using the following line:
source="{data.muted ? '/assets/audioMuted.gif' : '/assets/audio.gif'}"
Apps run fine when run from Flex builder, but when I try ...