You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2014/02/08 05:56:47 UTC

[1/6] git commit: [flex-sdk] [refs/heads/develop] - fix usage message

Updated Branches:
  refs/heads/develop 26ddb65ef -> 5bbcb899c


fix usage message


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/b7c25e95
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/b7c25e95
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/b7c25e95

Branch: refs/heads/develop
Commit: b7c25e95d56006ff32e61152cef8093fe40be262
Parents: 26ddb65
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 8 14:23:07 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 8 14:23:07 2014 +1100

----------------------------------------------------------------------
 build/check_sigs.sh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b7c25e95/build/check_sigs.sh
----------------------------------------------------------------------
diff --git a/build/check_sigs.sh b/build/check_sigs.sh
index 0716308..2f8e2c8 100755
--- a/build/check_sigs.sh
+++ b/build/check_sigs.sh
@@ -21,7 +21,7 @@
 
 if [ $# -ne 2 ]
 then
-    echo "Usage: deploy_release_branch flex_version ([0-99].[0-99].[0-999]) release_candidate ([0-100])"
+    echo "Usage: check_sigs flex_version ([0-99].[0-99].[0-999]) release_candidate ([0-100])"
     exit 1
 fi
 
@@ -68,10 +68,10 @@ function checkFile() {
 
 }
 
-checkFile "${RC_DIR}/apache-flex-sdk-4.11.0-src.tar.gz"
-checkFile "${RC_DIR}/apache-flex-sdk-4.11.0-src.zip"
+checkFile "${RC_DIR}/apache-flex-sdk-${FLEX_VERSION}-src.tar.gz"
+checkFile "${RC_DIR}/apache-flex-sdk-${FLEX_VERSION}-src.zip"
 
-checkFile "${BIN_DIR}/apache-flex-sdk-4.11.0-bin.tar.gz"
-checkFile "${BIN_DIR}/apache-flex-sdk-4.11.0-bin.zip"
+checkFile "${BIN_DIR}/apache-flex-sdk-${FLEX_VERSION}-bin.tar.gz"
+checkFile "${BIN_DIR}/apache-flex-sdk-${FLEX_VERSION}-bin.zip"
 
-checkFile "${DOC_DIR}/apache-flex-sdk-4.11.0-asdocs.zip"
+checkFile "${DOC_DIR}/apache-flex-sdk-${FLEX_VERSION}-asdocs.zip"


[6/6] git commit: [flex-sdk] [refs/heads/develop] - changed to only check screen dimensions when on an iPad

Posted by jm...@apache.org.
changed to only check screen dimensions when on an iPad


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/5bbcb899
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/5bbcb899
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/5bbcb899

Branch: refs/heads/develop
Commit: 5bbcb899c139d731ea44c48f6a5f225f515589f5
Parents: d481fbc
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 8 15:56:13 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 8 15:56:13 2014 +1100

----------------------------------------------------------------------
 .../framework/src/mx/core/RuntimeDPIProvider.as    |  4 ++--
 .../projects/framework/src/mx/utils/Platform.as    | 17 +++++++++++++++++
 2 files changed, 19 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5bbcb899/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as b/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
index d9b7e50..48d9ee9 100644
--- a/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
+++ b/frameworks/projects/framework/src/mx/core/RuntimeDPIProvider.as
@@ -119,10 +119,10 @@ public class RuntimeDPIProvider
 
     public function get runtimeDPI():Number
     {
-        var isIOS:Boolean = Platform.isIOS;
+        var isIPad:Boolean = Platform.isIPad;
         var screenDPI:Number = Capabilities.screenDPI;
 
-        if (isIOS)
+        if (isIPad)
 		{
             var root:DisplayObject = SystemManager.getSWFRoot(this);
             if (root != null )  {

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5bbcb899/frameworks/projects/framework/src/mx/utils/Platform.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/utils/Platform.as b/frameworks/projects/framework/src/mx/utils/Platform.as
index 8c9d65f..6c89078 100644
--- a/frameworks/projects/framework/src/mx/utils/Platform.as
+++ b/frameworks/projects/framework/src/mx/utils/Platform.as
@@ -38,6 +38,7 @@ public class Platform
 	protected static var _initilised:Boolean;
 	protected static var _isAndroid:Boolean;
 	protected static var _isIOS:Boolean;
+	protected static var _isIPad:Boolean;
 	protected static var _isBlackBerry:Boolean;
 	protected static var _isMobile:Boolean;
 	protected static var _isMac:Boolean;
@@ -63,6 +64,21 @@ public class Platform
 	}
 	
 	/**
+	 *  Returns true if the applciation is runing on an iPad.
+	 *
+	 *  @langversion 3.0
+	 *  @playerversion Flash 10
+	 *  @playerversion AIR 2.0
+	 *  @productversion Flex 4.12
+	 */
+	public static function get isIPad():Boolean
+	{
+		getPlatforms();
+		
+		return _isIPad;
+	}
+	
+	/**
 	 *  Returns true if the applciation is runing on a BlackBerry.
 	 *
 	 *  @langversion 3.0
@@ -208,6 +224,7 @@ public class Platform
 			_isMac = Capabilities.os.indexOf("Mac OS") != -1;
 			_isWindows = Capabilities.os.indexOf("Windows") != -1;
 			_isLinux = Capabilities.os.indexOf("Linux") != -1; // note that Android is also Linux
+			_isIPad = Capabilities.os.indexOf('iPad') > -1;
 			_isDesktop = !_isMobile;
 			
 			_isAir = Capabilities.playerType == "Desktop";


[5/6] git commit: [flex-sdk] [refs/heads/develop] - update version to 4.12 and update Flash Player and AIR versions where needed. Changed intro as information was out of date.

Posted by jm...@apache.org.
update version to 4.12 and update Flash Player and AIR versions where needed. Changed intro as information was out of date.


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/d481fbc9
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/d481fbc9
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/d481fbc9

Branch: refs/heads/develop
Commit: d481fbc9c37b2b1397684f14b02a07a2da734d5b
Parents: baaaa84
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 8 15:28:18 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 8 15:28:18 2014 +1100

----------------------------------------------------------------------
 README | 41 ++++++++++++++++++++++++-----------------
 1 file changed, 24 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/d481fbc9/README
----------------------------------------------------------------------
diff --git a/README b/README
index 8f35fd0..a8cde49 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@ Apache Flex (Flex)
     Apache Flex is an application framework for easily building Flash-based applications 
     for mobile devices, the browser and desktop.
 
-    Apache Flex 4.11 is a follow up release to Apache Flex 4.10. This version adds new
+    Apache Flex 4.12 is a follow up release to Apache Flex 4.11. This version adds new
     features and implements bug fixes that were unavailable in previous versions.  It is
     compatible with most code written to target Adobe Flex 4.6.
 
@@ -26,8 +26,11 @@ Apache Flex (Flex)
     Apache Flex is the software evolution of the popular Adobe Flex SDK project.
     
     The community surrounding Flex is vast, diverse, distributed globally, and with all 
-    levels of proficiency in software development. It is estimated that there are between 
-    350,000 and 500,000 Flex developers worldwide. 
+    levels of proficiency in software development.
+    
+    There has been more that 30,000 installs of Apache Flex. The Apache Flex web site
+    gets 3 quarters of a million page views a year and more than 250,000 unique visitors
+    a year.
 
 
 Getting the convenience packages for Apache Flex
@@ -85,7 +88,7 @@ Getting the latest sources via git
 
     For further information visit http://flex.apache.org/download-source.html
     
-Building Apache Flex 4.11
+Building Apache Flex 4.12
 =========================
 
     Apache Flex is a large project. It requires some build tools which must be installed
@@ -166,15 +169,15 @@ Install Prerequisites
          you will get compile errors.
         
     *3) The Adobe AIR integration kit for Windows can be downloaded from:
-           http://airdownload.adobe.com/air/win/download/3.9/AdobeAIRSDK.zip
+           http://airdownload.adobe.com/air/win/download/4.0/AdobeAIRSDK.zip
         
          The Adobe AIR integration kit for Mac can be downloaded from:
-            http://airdownload.adobe.com/air/mac/download/3.9/AdobeAIRSDK.tbz2
+            http://airdownload.adobe.com/air/mac/download/4.0/AdobeAIRSDK.tbz2
             
           The Adobe AIR integration kit for Linux can be downloaded from:
             http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRSDK.tbz2        
 
-        This version of Apache Flex was certified for use with AIR 3.9, and should
+        This version of Apache Flex was certified for use with AIR 4.0, and should
         be compatible with other versions of AIR newer than 3.1. However it hasn't
         been fully tested on AIR 3.2, 3.3, 3.5, 3.6 or 3.7.
 
@@ -185,8 +188,8 @@ Install Prerequisites
             http://www.adobe.com/support/flashplayer/downloads.html
 
         This version of Apache Flex was certified for use with Adobe Flash Player 11.1,
-        and is compatible with versions 10.2 through 11.9. It has been tested with
-        versions 11.1, 11.7, 11.8 and 11.9 on Windows and Mac. It has been compiled
+        and is compatible with versions 10.2 through 13.0. It has been tested with
+        versions 11.1, 11.7, 11.8, 11.9 and 12.0 on Windows and Mac. It has been compiled
         against other Adobe Flash Player versions but has not been fully tested. It has
         not been fully tested on Linux.
             
@@ -235,8 +238,9 @@ Install Prerequisites
             http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_7.swc
             http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_8.swc
             http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_9.swc
+            http://download.macromedia.com/get/flashplayer/updaters/12/playerglobal12_0.swc
             
-        These can be used with Apache Flex but have not been fully tested.
+        These can be used with Apache Flex but not all have not been fully tested.
         
     *7) The Adobe Extension Manager is only required for those creating releases or
         testing changes to the flash-integration swc.  Note that if you change APIs on
@@ -305,7 +309,7 @@ Adobe Flash Player Version Support
 
     The Apache Flex SDK defaults to using the Adobe Flash Player 11.1. The SDK can be
     used with Flash Player versions 10.2, 10.3, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5,
-    11.6, 11.7, 11.8 and 11.9.
+    11.6, 11.7, 11.8, 11.9, 12.0 and 13.0.
     
     It is recommended that you update to the latest version of Adobe Flash Player.
     Newer versions of the Adobe Flash player address security vulnerabilities, fix
@@ -348,6 +352,7 @@ Adobe Flash Player Version Support
     http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_7.swc
     http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_8.swc
     http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_9.swc
+    http://download.macromedia.com/get/flashplayer/updaters/12/playerglobal12_0.swc
      
     Copy the target playerglobal.swc to the directory:
     
@@ -386,9 +391,11 @@ Adobe Flash Player Version Support
                          /playerglobal.swc  
                     /11.9
                          /playerglobal.swc  
+                    /12.0
+                         /playerglobal.swc                          
     
-    Apache Flex has been tested with Adobe Flash Player 11.1, 11.5, 11.7, 11.8 and
-    11.9 on Windows and Mac.
+    Apache Flex has been tested with Adobe Flash Player 11.1, 11.5, 11.7, 11.8, 11.9
+    and 12.0 on Windows and Mac.
     
     Apache Flex has not been tested on Linux so some issue may exist in this release.
     
@@ -486,7 +493,7 @@ Using the Binary Distribution
 		/ide/constructFlexForIDE.sh (on Mac and Linux)
 		/ide/constructFlexForIDE.bat (on Windows)
 		
-	This will create an Apache Flex 4.11 SDK that can be used with Flash Builder by
+	This will create an Apache Flex 4.12 SDK that can be used with Flash Builder by
 	copying the required files from the Adobe Flex 4.6 SDK.
 	
 	To create an SDK for other IDE or if you want to use Adobe AIR 3.9 (rather than
@@ -495,8 +502,8 @@ Using the Binary Distribution
 		/ide/flashbuilder/makeApacheFlexForIDE.sh (on Mac and Linux)
 		/ide/flashbuilder/makeApacheFlexForIDE.bat (on Windows)
 		
-	This will create an Apache Flex 4.11 SDK that can be used by an IDE by downloading
-	Adobe Flex 4.6 SDK and Adobe AIR 3.9.
+	This will create an Apache Flex 4.12 SDK that can be used by an IDE by downloading
+	Adobe Flex 4.6 SDK and Adobe AIR 4.0.
     
 Building the Framework in a Binary Distribution
 -----------------------------------------------
@@ -565,7 +572,7 @@ Building the Source in the Source Distribution
         
     To generate a source distribution package and a binary distribution package use
         
-        ant -Dbuild.number=<YYYYMMDD> -Dbuild.noprompt=  release
+        ant -Dbuild.number=<YYYYMMDD> -Dbuild.noprompt= release
 
     The packages can be found in the "out" subdirectory.
             


[2/6] git commit: [flex-sdk] [refs/heads/develop] - update RSL versions to 4.12

Posted by jm...@apache.org.
update RSL versions to 4.12


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/95e9566c
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/95e9566c
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/95e9566c

Branch: refs/heads/develop
Commit: 95e9566c118eb3126f475c4e3daf59e4fa962684
Parents: b7c25e9
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 8 14:24:26 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 8 14:24:26 2014 +1100

----------------------------------------------------------------------
 ide/flashbuilder/config/flex-config.xml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/95e9566c/ide/flashbuilder/config/flex-config.xml
----------------------------------------------------------------------
diff --git a/ide/flashbuilder/config/flex-config.xml b/ide/flashbuilder/config/flex-config.xml
index 5ae763a..97b99a9 100644
--- a/ide/flashbuilder/config/flex-config.xml
+++ b/ide/flashbuilder/config/flex-config.xml
@@ -357,7 +357,7 @@
       <!-- Framework SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/framework.swc</path-element>
-		<rsl-url>framework_4.11.0.0.swf</rsl-url>
+		<rsl-url>framework_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	  
 	  <!-- TextLayout SWC -->
@@ -367,37 +367,37 @@
     -->
     <runtime-shared-library-path>
 		<path-element>libs/textLayout.swc</path-element>
-		<rsl-url>textLayout_4.11.0.0.swf</rsl-url>
+		<rsl-url>textLayout_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
     
       <!-- Spark SWC-->
    	<runtime-shared-library-path>
 		<path-element>libs/spark.swc</path-element>
-		<rsl-url>spark_4.11.0.0.swf</rsl-url>
+		<rsl-url>spark_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	
       <!-- Sparkskins SWC-->
    	<runtime-shared-library-path>
 		<path-element>libs/sparkskins.swc</path-element>
-		<rsl-url>sparkskins_4.11.0.0.swf</rsl-url>
+		<rsl-url>sparkskins_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	 
 	  <!-- RPC SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/rpc.swc</path-element>
-		<rsl-url>rpc_4.11.0.0.swf</rsl-url>
+		<rsl-url>rpc_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
     	
       <!-- Charts SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/charts.swc</path-element>
-		<rsl-url>charts_4.11.0.0.swf</rsl-url>
+		<rsl-url>charts_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- Spark_dmv SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/spark_dmv.swc</path-element>
-		<rsl-url>spark_dmv_4.11.0.0.swf</rsl-url>
+		<rsl-url>spark_dmv_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- OSMF SWC -->
@@ -407,19 +407,19 @@
     -->
     <runtime-shared-library-path>
 		<path-element>libs/osmf.swc</path-element>
-		<rsl-url>osmf_4.11.0.0.swf</rsl-url>
+		<rsl-url>osmf_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
       
       <!-- MX SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/mx/mx.swc</path-element>
-		<rsl-url>mx_4.11.0.0.swf</rsl-url>
+		<rsl-url>mx_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
    
       <!-- Advancedgrids SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/advancedgrids.swc</path-element>
-		<rsl-url>advancedgrids_4.11.0.0.swf</rsl-url>
+		<rsl-url>advancedgrids_4.12.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	
 	<!-- static-link-runtime-shared-libraries: statically link the libraries specified by the -runtime-shared-libraries-path option.-->


[4/6] git commit: [flex-sdk] [refs/heads/develop] - add missing config files so we can easily see and track changes / more easily know if a RC is broken

Posted by jm...@apache.org.
add missing config files so we can easily see and track changes / more easily know if a RC is broken


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/baaaa848
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/baaaa848
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/baaaa848

Branch: refs/heads/develop
Commit: baaaa848703ec86a8286da42e7c01916683046ce
Parents: 454818d
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 8 14:27:38 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 8 14:27:38 2014 +1100

----------------------------------------------------------------------
 frameworks/air-config.xml       | 4 ++--
 frameworks/airmobile-config.xml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/baaaa848/frameworks/air-config.xml
----------------------------------------------------------------------
diff --git a/frameworks/air-config.xml b/frameworks/air-config.xml
index 70ea434..1f50b0e 100644
--- a/frameworks/air-config.xml
+++ b/frameworks/air-config.xml
@@ -21,8 +21,8 @@
 
 <flex-config>
     <!-- Specifies the minimum player version that will run the compiled SWF. -->
-     <target-player>11.1</target-player>
-     
+    <target-player>11.1</target-player>
+
     <!-- Specifies the version of the compiled SWF -->
     <swf-version>14</swf-version>
     

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/baaaa848/frameworks/airmobile-config.xml
----------------------------------------------------------------------
diff --git a/frameworks/airmobile-config.xml b/frameworks/airmobile-config.xml
index a93546b..866d7a1 100644
--- a/frameworks/airmobile-config.xml
+++ b/frameworks/airmobile-config.xml
@@ -21,7 +21,7 @@
 
 <flex-config>
     <!-- Specifies the minimum player version that will run the compiled SWF. -->
-     <target-player>11.1</target-player>
+    <target-player>11.1</target-player>
 
     <!-- Specifies the version of the compiled SWF -->
     <swf-version>14</swf-version>


[3/6] git commit: [flex-sdk] [refs/heads/develop] - update version to RC1 date

Posted by jm...@apache.org.
update version to RC1 date


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/454818d1
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/454818d1
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/454818d1

Branch: refs/heads/develop
Commit: 454818d130247a1a4393a455046b246e3f8e28c4
Parents: 95e9566
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 8 14:26:18 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 8 14:26:18 2014 +1100

----------------------------------------------------------------------
 flex-sdk-description.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/454818d1/flex-sdk-description.xml
----------------------------------------------------------------------
diff --git a/flex-sdk-description.xml b/flex-sdk-description.xml
index ec0ae7f..c8da755 100644
--- a/flex-sdk-description.xml
+++ b/flex-sdk-description.xml
@@ -20,6 +20,6 @@
 <flex-sdk-description>
 <name>Apache Flex 4.12.0 FP11.1 AIR3.9 en_US</name>
 <version>4.12.0</version>
-<build>20131022</build>
+<build>20140208</build>
 </flex-sdk-description>
         
\ No newline at end of file