Reputation: 4261
As the new Flex SDK 4.5 has become a stable release, I want to upgrade my apps to the new SDK. But without losing compilation with SDK 4.0 with which they are working perfectly well. I used Flash Builder 4.0 to build them. Is there a way in Flash Builder to conditionally compile with 4.0 and 4.5 and create two release versions in separate bin-debug folders?
Upvotes: 2
Views: 1951
Reputation: 39408
Flash Builder supports multiple SDKs; but you can only use a single SDK per project. You have a few options:
For Flextras components, I keep a different branch of the code for each SDK. This is because due to SDK changes, we often need different versions of code. As one example, with our Spark AutoComplete component, Flex 4.5 introduced a bug that was not there in Flex 4 or Flex 4.1. So we have a Flex 4 version and a Flex 4.5 version.
In most traditional application development, I would not expect it was important to support multiple SDKs w/ the same code base.
Upvotes: 6
Reputation: 14221
The short answer is Flash Builder hasn't possibility to build against multiply SDK versions simultaneously. But you can switch SDKs if you plan to build release versions not so often.
Upvotes: 0