- Updated the project to be buildable with flexmojos 7.0.0 (Not intended on being merged back, but might be useful for others as the original had to be setup first)
diff --git a/tourdeflexmobile/pom.xml b/tourdeflexmobile/pom.xml
new file mode 100644
index 0000000..df55af3
--- /dev/null
+++ b/tourdeflexmobile/pom.xml
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.apache.flex.examples</groupId>
+    <artifactId>tour-de-flex-mobile</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <packaging>swf</packaging>
+
+    <properties>
+        <flex.version>4.12.1.20140427</flex.version>
+        <air.version>13.0</air.version>
+        <flexmojos.version>7.0.0</flexmojos.version>
+    </properties>
+
+    <build>
+        <sourceDirectory>src/main/flex</sourceDirectory>
+        <plugins>
+            <plugin>
+                <groupId>net.flexmojos.oss</groupId>
+                <artifactId>flexmojos-maven-plugin</artifactId>
+                <version>${flexmojos.version}</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <sourceFile>TourDeFlexMobile.mxml</sourceFile>
+                    <descriptorTemplate>${basedir}/src/main/resources/TourDeFlexMobile-app.xml</descriptorTemplate>
+                    <!--
+                        As we took the dummy sign.p12 from the flexmojos testsuite,
+                        we have to use the same password
+                    -->
+                    <storepass>flexmojos</storepass>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>sign-air</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <!-- This handles a bug in maven which causes problems with flex resources -->
+                    <dependency>
+                        <groupId>net.flexmojos.oss</groupId>
+                        <artifactId>flexmojos-threadlocaltoolkit-wrapper</artifactId>
+                        <version>${flexmojos.version}</version>
+                    </dependency>
+                    <!-- Without this FM will use the compiler configured in its master pom, which will result in version conflicts -->
+                    <dependency>
+                        <groupId>org.apache.flex</groupId>
+                        <artifactId>compiler</artifactId>
+                        <version>${flex.version}</version>
+                        <type>pom</type>
+                    </dependency>
+                    <dependency>
+                        <groupId>com.adobe.air.compiler</groupId>
+                        <artifactId>adt</artifactId>
+                        <version>${air.version}</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <!-- General Flex SDK dependencies -->
+        <dependency>
+            <groupId>org.apache.flex</groupId>
+            <artifactId>framework</artifactId>
+            <version>${flex.version}</version>
+            <type>pom</type>
+        </dependency>
+
+        <!-- Add the components optimized for mobile use -->
+        <dependency>
+            <groupId>org.apache.flex.framework</groupId>
+            <artifactId>mobile</artifactId>
+            <version>${flex.version}</version>
+            <type>pom</type>
+        </dependency>
+
+        <!-- Add the default mobile skin -->
+        <dependency>
+            <groupId>org.apache.flex.framework.themes</groupId>
+            <artifactId>mobile</artifactId>
+            <version>${flex.version}</version>
+            <type>swc</type>
+            <scope>theme</scope>
+        </dependency>
+
+        <!-- Air runtime dependencies -->
+        <dependency>
+            <groupId>com.adobe.air.framework</groupId>
+            <artifactId>airglobal</artifactId>
+            <version>${air.version}</version>
+            <type>swc</type>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file
diff --git a/tourdeflexmobile/src/AIRViews/AccelerometerView.mxml b/tourdeflexmobile/src/main/flex/AIRViews/AccelerometerView.mxml
similarity index 89%
rename from tourdeflexmobile/src/AIRViews/AccelerometerView.mxml
rename to tourdeflexmobile/src/main/flex/AIRViews/AccelerometerView.mxml
index 50b8553..fbb7c5b 100644
--- a/tourdeflexmobile/src/AIRViews/AccelerometerView.mxml
+++ b/tourdeflexmobile/src/main/flex/AIRViews/AccelerometerView.mxml
@@ -22,14 +22,10 @@
 	
 	<fx:Script>
 		<![CDATA[
-			import flash.display.Sprite;
-			import flash.events.AccelerometerEvent;
-			import flash.events.Event;
 			import flash.sensors.Accelerometer;
 			
 			import spark.events.ViewNavigatorEvent;
-			import spark.skins.mobile.TextAreaSkin;		
-			
+
 			private var ball:Sprite;
 			private var accelerometer:Accelerometer;        
 			private var xSpeed:Number = 0;
@@ -136,8 +132,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 
 	<s:SpriteVisualElement id="container" includeIn="DemoState"/>
diff --git a/tourdeflexmobile/src/AIRViews/SQLiteView.mxml b/tourdeflexmobile/src/main/flex/AIRViews/SQLiteView.mxml
similarity index 92%
rename from tourdeflexmobile/src/AIRViews/SQLiteView.mxml
rename to tourdeflexmobile/src/main/flex/AIRViews/SQLiteView.mxml
index c2db60f..035c72a 100644
--- a/tourdeflexmobile/src/AIRViews/SQLiteView.mxml
+++ b/tourdeflexmobile/src/main/flex/AIRViews/SQLiteView.mxml
@@ -22,12 +22,15 @@
 	
 	<fx:Script>
 		<![CDATA[
-			import mx.collections.ArrayCollection;
-			import mx.events.FlexEvent;
-			
+        import flash.data.SQLConnection;
+        import flash.data.SQLResult;
+        import flash.data.SQLStatement;
+        import flash.filesystem.File;
+
+        import mx.collections.ArrayCollection;
+
 			import spark.events.ViewNavigatorEvent;
-			import spark.skins.mobile.TextAreaSkin;
-			
+
 			public var conn:SQLConnection;
 			public var db:File;
 			private var myStatement:SQLStatement;
@@ -116,8 +119,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 		<s:ArrayCollection id="itemsCollection"/>
 	</fx:Declarations>
 	
diff --git a/tourdeflexmobile/src/LayoutViews/AccordionLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/AccordionLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/AccordionLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/AccordionLayoutView.mxml
index 35f7e78..a3e0156 100644
--- a/tourdeflexmobile/src/LayoutViews/AccordionLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/AccordionLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/CarouselLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/CarouselLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/CarouselLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/CarouselLayoutView.mxml
index d87f7e4..de68785 100644
--- a/tourdeflexmobile/src/LayoutViews/CarouselLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/CarouselLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/CoverFlowLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/CoverFlowLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/CoverFlowLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/CoverFlowLayoutView.mxml
index 116831d..82a9469 100644
--- a/tourdeflexmobile/src/LayoutViews/CoverFlowLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/CoverFlowLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/HorizontalLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/HorizontalLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/HorizontalLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/HorizontalLayoutView.mxml
index 0caf89d..efb1747 100644
--- a/tourdeflexmobile/src/LayoutViews/HorizontalLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/HorizontalLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/RolodexLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/RolodexLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/RolodexLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/RolodexLayoutView.mxml
index 8934ec6..ba38a23 100644
--- a/tourdeflexmobile/src/LayoutViews/RolodexLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/RolodexLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/StackLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/StackLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/StackLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/StackLayoutView.mxml
index 3e556ac..4a59e4c 100644
--- a/tourdeflexmobile/src/LayoutViews/StackLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/StackLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/TileLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/TileLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/TileLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/TileLayoutView.mxml
index 059817f..e807728 100644
--- a/tourdeflexmobile/src/LayoutViews/TileLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/TileLayoutView.mxml
@@ -45,7 +45,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/TimeMachineLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/TimeMachineLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/TimeMachineLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/TimeMachineLayoutView.mxml
index 5a4bc42..476f16d 100644
--- a/tourdeflexmobile/src/LayoutViews/TimeMachineLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/TimeMachineLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/LayoutViews/VerticalLayoutView.mxml b/tourdeflexmobile/src/main/flex/LayoutViews/VerticalLayoutView.mxml
similarity index 90%
rename from tourdeflexmobile/src/LayoutViews/VerticalLayoutView.mxml
rename to tourdeflexmobile/src/main/flex/LayoutViews/VerticalLayoutView.mxml
index 2d2d81b..72b7547 100644
--- a/tourdeflexmobile/src/LayoutViews/VerticalLayoutView.mxml
+++ b/tourdeflexmobile/src/main/flex/LayoutViews/VerticalLayoutView.mxml
@@ -42,7 +42,7 @@
 	<s:actionContent>
 		<s:Button click="buttonHandler(event)">
 			<s:icon>
-				<s:MultiDPIBitmapSource source160dpi="@Embed('assets/icons/160/add.png')" source240dpi="@Embed('assets/icons/240/add.png')" source320dpi="@Embed('assets/icons/320/add.png')" />
+				<s:MultiDPIBitmapSource source160dpi="@Embed('/assets/icons/160/add.png')" source240dpi="@Embed('/assets/icons/240/add.png')" source320dpi="@Embed('/assets/icons/320/add.png')" />
 			</s:icon>
 		</s:Button>
 	</s:actionContent>
diff --git a/tourdeflexmobile/src/TourDeFlexMobile.mxml b/tourdeflexmobile/src/main/flex/TourDeFlexMobile.mxml
similarity index 97%
rename from tourdeflexmobile/src/TourDeFlexMobile.mxml
rename to tourdeflexmobile/src/main/flex/TourDeFlexMobile.mxml
index 6a9dc94..b9faa1e 100644
--- a/tourdeflexmobile/src/TourDeFlexMobile.mxml
+++ b/tourdeflexmobile/src/main/flex/TourDeFlexMobile.mxml
@@ -123,13 +123,13 @@
 	
 	<s:ViewNavigator id="navigator" firstView="views.BlogView" width="100%" height="100%">
 		<s:navigationContent>
-			<s:Button icon="@Embed('assets/images/logo.png')" height="35" width="77" label="Menu" click="menuHandler(event)"/>
+			<s:Button icon="@Embed('/assets/images/logo.png')" height="35" width="77" label="Menu" click="menuHandler(event)"/>
 		</s:navigationContent>
 	</s:ViewNavigator>
 	
 	<s:Group id="lateralMenu" width="100%" y="45">
 		<s:Graphic width="100%" height="100%" click="menuBackgroundHandler(event)">
-			<s:BitmapImage width="100%" height="100%" scaleMode="zoom" source="@Embed('assets/images/bg.png')"/>
+			<s:BitmapImage width="100%" height="100%" scaleMode="zoom" source="@Embed('/assets/images/bg.png')"/>
 		</s:Graphic>
 		
 		<s:List id="componentsList" itemRenderer="renderers.MenuRenderer" width="200" height="100%" change="changeHandler(event)" contentBackgroundColor="#000000">
diff --git a/tourdeflexmobile/src/UIViews/ButtonBarView.mxml b/tourdeflexmobile/src/main/flex/UIViews/ButtonBarView.mxml
similarity index 89%
rename from tourdeflexmobile/src/UIViews/ButtonBarView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/ButtonBarView.mxml
index 54814f2..0ed687a 100644
--- a/tourdeflexmobile/src/UIViews/ButtonBarView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/ButtonBarView.mxml
@@ -48,8 +48,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:ButtonBar id="buttonbar" includeIn="DemoState" change="buttonbarHandler(event)" left="5" right="5" top="5">
diff --git a/tourdeflexmobile/src/UIViews/CalloutButtonView.mxml b/tourdeflexmobile/src/main/flex/UIViews/CalloutButtonView.mxml
similarity index 86%
rename from tourdeflexmobile/src/UIViews/CalloutButtonView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/CalloutButtonView.mxml
index eec4a8c..5f2faeb 100644
--- a/tourdeflexmobile/src/UIViews/CalloutButtonView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/CalloutButtonView.mxml
@@ -40,8 +40,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:CalloutButton label="CalloutButton" horizontalCenter="0" y="10">
diff --git a/tourdeflexmobile/src/UIViews/CheckboxView.mxml b/tourdeflexmobile/src/main/flex/UIViews/CheckboxView.mxml
similarity index 85%
rename from tourdeflexmobile/src/UIViews/CheckboxView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/CheckboxView.mxml
index ff9dbc6..0b90bc0 100644
--- a/tourdeflexmobile/src/UIViews/CheckboxView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/CheckboxView.mxml
@@ -22,7 +22,6 @@
 	
 	<fx:Script>
 		<![CDATA[
-			import spark.skins.mobile.TextAreaSkin;
 			protected function checkboxHandler(event:Event):void
 			{
 				label.text = event.target.label + " toggled: " + event.target.selected as String;
@@ -45,8 +44,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:VGroup includeIn="DemoState" horizontalCenter="0" y="20">
diff --git a/tourdeflexmobile/src/UIViews/DateSpinnerView.mxml b/tourdeflexmobile/src/main/flex/UIViews/DateSpinnerView.mxml
similarity index 85%
rename from tourdeflexmobile/src/UIViews/DateSpinnerView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/DateSpinnerView.mxml
index 0cb738f..80a435a 100644
--- a/tourdeflexmobile/src/UIViews/DateSpinnerView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/DateSpinnerView.mxml
@@ -40,8 +40,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:DateSpinner includeIn="DemoState" displayMode="dateAndTime" verticalCenter="0" horizontalCenter="0"/>
diff --git a/tourdeflexmobile/src/UIViews/ListView.mxml b/tourdeflexmobile/src/main/flex/UIViews/ListView.mxml
similarity index 89%
rename from tourdeflexmobile/src/UIViews/ListView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/ListView.mxml
index ce00d68..d525f68 100644
--- a/tourdeflexmobile/src/UIViews/ListView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/ListView.mxml
@@ -42,8 +42,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:List includeIn="DemoState" width="100%" height="100%">
diff --git a/tourdeflexmobile/src/UIViews/MobileGridView.mxml b/tourdeflexmobile/src/main/flex/UIViews/MobileGridView.mxml
similarity index 91%
rename from tourdeflexmobile/src/UIViews/MobileGridView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/MobileGridView.mxml
index d875580..8ad7264 100644
--- a/tourdeflexmobile/src/UIViews/MobileGridView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/MobileGridView.mxml
@@ -40,8 +40,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<ns:MobileGrid includeIn="DemoState" width="100%" height="100%">
diff --git a/tourdeflexmobile/src/UIViews/RadiobuttonView.mxml b/tourdeflexmobile/src/main/flex/UIViews/RadiobuttonView.mxml
similarity index 88%
rename from tourdeflexmobile/src/UIViews/RadiobuttonView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/RadiobuttonView.mxml
index 47d1804..7ab06c5 100644
--- a/tourdeflexmobile/src/UIViews/RadiobuttonView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/RadiobuttonView.mxml
@@ -40,8 +40,8 @@
 	</fx:Script>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 
 		<s:RadioButtonGroup id="radiogroup1"/>
 	</fx:Declarations>
diff --git a/tourdeflexmobile/src/UIViews/SpinnerListView.mxml b/tourdeflexmobile/src/main/flex/UIViews/SpinnerListView.mxml
similarity index 90%
rename from tourdeflexmobile/src/UIViews/SpinnerListView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/SpinnerListView.mxml
index c94f59b..293fc22 100644
--- a/tourdeflexmobile/src/UIViews/SpinnerListView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/SpinnerListView.mxml
@@ -47,8 +47,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:SpinnerListContainer includeIn="DemoState" width="100%">
diff --git a/tourdeflexmobile/src/UIViews/TextInputView.mxml b/tourdeflexmobile/src/main/flex/UIViews/TextInputView.mxml
similarity index 94%
rename from tourdeflexmobile/src/UIViews/TextInputView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/TextInputView.mxml
index 8a765c8..7fb6436 100644
--- a/tourdeflexmobile/src/UIViews/TextInputView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/TextInputView.mxml
@@ -48,8 +48,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:TextInput includeIn="DemoState" id="textInput" skinClass="spark.skins.mobile.TextInputSkin" prompt="Type Here and Tap Enter" left="5" right="5" top="5" height="40" enter="submitText()" />
diff --git a/tourdeflexmobile/src/UIViews/ToggleSwitchView.mxml b/tourdeflexmobile/src/main/flex/UIViews/ToggleSwitchView.mxml
similarity index 86%
rename from tourdeflexmobile/src/UIViews/ToggleSwitchView.mxml
rename to tourdeflexmobile/src/main/flex/UIViews/ToggleSwitchView.mxml
index 5309a75..6cf8a9b 100644
--- a/tourdeflexmobile/src/UIViews/ToggleSwitchView.mxml
+++ b/tourdeflexmobile/src/main/flex/UIViews/ToggleSwitchView.mxml
@@ -41,8 +41,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 	</fx:Declarations>
 	
 	<s:ToggleSwitch includeIn="DemoState" horizontalCenter="0" y="20" />
diff --git a/tourdeflexmobile/src/renderers/MenuRenderer.mxml b/tourdeflexmobile/src/main/flex/renderers/MenuRenderer.mxml
similarity index 100%
rename from tourdeflexmobile/src/renderers/MenuRenderer.mxml
rename to tourdeflexmobile/src/main/flex/renderers/MenuRenderer.mxml
diff --git a/tourdeflexmobile/src/styles.css b/tourdeflexmobile/src/main/flex/styles.css
similarity index 100%
rename from tourdeflexmobile/src/styles.css
rename to tourdeflexmobile/src/main/flex/styles.css
diff --git a/tourdeflexmobile/src/views/BlogView.mxml b/tourdeflexmobile/src/main/flex/views/BlogView.mxml
similarity index 99%
rename from tourdeflexmobile/src/views/BlogView.mxml
rename to tourdeflexmobile/src/main/flex/views/BlogView.mxml
index 6e9f5b3..c0e0ce3 100644
--- a/tourdeflexmobile/src/views/BlogView.mxml
+++ b/tourdeflexmobile/src/main/flex/views/BlogView.mxml
@@ -48,5 +48,5 @@
 	</fx:Declarations>
 	
 	<s:TextArea id="textArea" selectable="false" editable="false" skinClass="spark.skins.mobile.TextAreaSkin" left="5" right="5" top="5" bottom="5"/>
-	
+
 </s:View>
diff --git a/tourdeflexmobile/src/views/HttpServiceView.mxml b/tourdeflexmobile/src/main/flex/views/HttpServiceView.mxml
similarity index 88%
rename from tourdeflexmobile/src/views/HttpServiceView.mxml
rename to tourdeflexmobile/src/main/flex/views/HttpServiceView.mxml
index 373cd85..cca3c51 100644
--- a/tourdeflexmobile/src/views/HttpServiceView.mxml
+++ b/tourdeflexmobile/src/main/flex/views/HttpServiceView.mxml
@@ -57,8 +57,8 @@
 	</s:states>
 	
 	<fx:Declarations>
-		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('assets/icons/160/about.png')" source240dpi="@Embed('assets/icons/240/about.png')" source320dpi="@Embed('assets/icons/320/about.png')"/>
-		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('assets/icons/160/dock.png')" source240dpi="@Embed('assets/icons/240/dock.png')" source320dpi="@Embed('assets/icons/320/dock.png')"/>
+		<s:MultiDPIBitmapSource id="aboutIcon" source160dpi="@Embed('/assets/icons/160/about.png')" source240dpi="@Embed('/assets/icons/240/about.png')" source320dpi="@Embed('/assets/icons/320/about.png')"/>
+		<s:MultiDPIBitmapSource id="demoIcon" source160dpi="@Embed('/assets/icons/160/dock.png')" source240dpi="@Embed('/assets/icons/240/dock.png')" source320dpi="@Embed('/assets/icons/320/dock.png')"/>
 		<s:HTTPService id="rssService" resultFormat="e4x" result="rssResult(event)"/>
 	</fx:Declarations>
 	
diff --git a/tourdeflexmobile/src/TourDeFlexMobile-app.xml b/tourdeflexmobile/src/main/resources/TourDeFlexMobile-app.xml
similarity index 98%
rename from tourdeflexmobile/src/TourDeFlexMobile-app.xml
rename to tourdeflexmobile/src/main/resources/TourDeFlexMobile-app.xml
index e9667b6..98afb72 100644
--- a/tourdeflexmobile/src/TourDeFlexMobile-app.xml
+++ b/tourdeflexmobile/src/main/resources/TourDeFlexMobile-app.xml
@@ -64,7 +64,7 @@
 	<initialWindow>
 		<!-- The main SWF or HTML file of the application. Required. -->
 		<!-- Note: In Flash Builder, the SWF reference is set automatically. -->
-		<content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
+		<content>${output}</content>
 		
 		<!-- The title of the main window. Optional. -->
 		<!-- <title></title> -->
@@ -300,7 +300,7 @@
 			
 		]]></manifestAdditions>
     </android>
-    <iPhone>
+    <!--iPhone>
         <InfoAdditions><![CDATA[
 			<key>UIDeviceFamily</key>
 			<array>
@@ -309,5 +309,5 @@
 			</array>
 		]]></InfoAdditions>
         <requestedDisplayResolution>high</requestedDisplayResolution>
-    </iPhone>
+    </iPhone-->
 </application>
diff --git a/tourdeflexmobile/src/assets/icons/160/about.png b/tourdeflexmobile/src/main/resources/assets/icons/160/about.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/160/about.png
rename to tourdeflexmobile/src/main/resources/assets/icons/160/about.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/160/add.png b/tourdeflexmobile/src/main/resources/assets/icons/160/add.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/160/add.png
rename to tourdeflexmobile/src/main/resources/assets/icons/160/add.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/160/dock.png b/tourdeflexmobile/src/main/resources/assets/icons/160/dock.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/160/dock.png
rename to tourdeflexmobile/src/main/resources/assets/icons/160/dock.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/240/about.png b/tourdeflexmobile/src/main/resources/assets/icons/240/about.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/240/about.png
rename to tourdeflexmobile/src/main/resources/assets/icons/240/about.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/240/add.png b/tourdeflexmobile/src/main/resources/assets/icons/240/add.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/240/add.png
rename to tourdeflexmobile/src/main/resources/assets/icons/240/add.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/240/dock.png b/tourdeflexmobile/src/main/resources/assets/icons/240/dock.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/240/dock.png
rename to tourdeflexmobile/src/main/resources/assets/icons/240/dock.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/320/about.png b/tourdeflexmobile/src/main/resources/assets/icons/320/about.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/320/about.png
rename to tourdeflexmobile/src/main/resources/assets/icons/320/about.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/320/add.png b/tourdeflexmobile/src/main/resources/assets/icons/320/add.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/320/add.png
rename to tourdeflexmobile/src/main/resources/assets/icons/320/add.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/icons/320/dock.png b/tourdeflexmobile/src/main/resources/assets/icons/320/dock.png
similarity index 100%
rename from tourdeflexmobile/src/assets/icons/320/dock.png
rename to tourdeflexmobile/src/main/resources/assets/icons/320/dock.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/images/bg.png b/tourdeflexmobile/src/main/resources/assets/images/bg.png
similarity index 100%
rename from tourdeflexmobile/src/assets/images/bg.png
rename to tourdeflexmobile/src/main/resources/assets/images/bg.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/images/box1.png b/tourdeflexmobile/src/main/resources/assets/images/box1.png
similarity index 100%
rename from tourdeflexmobile/src/assets/images/box1.png
rename to tourdeflexmobile/src/main/resources/assets/images/box1.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/images/box2.png b/tourdeflexmobile/src/main/resources/assets/images/box2.png
similarity index 100%
rename from tourdeflexmobile/src/assets/images/box2.png
rename to tourdeflexmobile/src/main/resources/assets/images/box2.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/images/box3.png b/tourdeflexmobile/src/main/resources/assets/images/box3.png
similarity index 100%
rename from tourdeflexmobile/src/assets/images/box3.png
rename to tourdeflexmobile/src/main/resources/assets/images/box3.png
Binary files differ
diff --git a/tourdeflexmobile/src/assets/images/logo.png b/tourdeflexmobile/src/main/resources/assets/images/logo.png
similarity index 100%
rename from tourdeflexmobile/src/assets/images/logo.png
rename to tourdeflexmobile/src/main/resources/assets/images/logo.png
Binary files differ
diff --git a/tourdeflexmobile/src/main/resources/sign.p12 b/tourdeflexmobile/src/main/resources/sign.p12
new file mode 100644
index 0000000..358989f
--- /dev/null
+++ b/tourdeflexmobile/src/main/resources/sign.p12
Binary files differ