diff --git a/apps/App_Resources/Android/AndroidManifest.xml b/apps/App_Resources/Android/AndroidManifest.xml
deleted file mode 100644
index 8d827dc8d..000000000
--- a/apps/App_Resources/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/App_Resources/iOS/Info.plist b/apps/App_Resources/iOS/Info.plist
deleted file mode 100644
index 0a8e1eb1f..000000000
--- a/apps/App_Resources/iOS/Info.plist
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleDisplayName
- ${PRODUCT_NAME}
- CFBundleExecutable
- ${EXECUTABLE_NAME}
- CFBundleIconFile
- icon.png
- CFBundleIcons
-
- CFBundlePrimaryIcon
-
- CFBundleIconFiles
-
- icon-40
- icon-60
- icon-72
- icon-76
- Icon-Small
- Icon-Small-50
-
- UIPrerenderedIcon
-
-
-
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- ${PRODUCT_NAME}
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1.0
- LSRequiresIPhoneOS
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiresFullScreen
-
- UIRequiredDeviceCapabilities
-
- armv7
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
-
-
diff --git a/apps/css-perf-test/app.ts b/apps/css-perf-test/app.ts
deleted file mode 100644
index 3ba20a676..000000000
--- a/apps/css-perf-test/app.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import application = require("application");
-
-global.time = function(): number {
- if (global.android) {
- return java.lang.System.nanoTime() / 1000000; // 1 ms = 1000000 ns
- }
- else {
- return CACurrentMediaTime() * 1000;
- }
-}
-
-application.start({ moduleName: "css-perf-test/root" });
\ No newline at end of file
diff --git a/apps/css-perf-test/main-page.css b/apps/css-perf-test/main-page.css
deleted file mode 100644
index 115f58fbc..000000000
--- a/apps/css-perf-test/main-page.css
+++ /dev/null
@@ -1,29 +0,0 @@
-.title {
- font-size: 20;
- margin: 3;
-}
-
-.author {
- font-size: 14;
- horizontal-align: left;
- vertical-align: bottom;
- margin: 3;
-}
-
-.comments {
- color: #10C2B0;
- font-size: 14;
- vertical-align: bottom;
- margin: 3;
-}
-
-.thumbnail {
- width: 72;
- height: 72;
- margin: 3;
- vertical-align: top;
-}
-
-TabView {
- background-color: white;
-}
\ No newline at end of file
diff --git a/apps/css-perf-test/main-page.ts b/apps/css-perf-test/main-page.ts
deleted file mode 100644
index 0833dcc32..000000000
--- a/apps/css-perf-test/main-page.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import {EventData as ObservableEventData} from "data/observable";
-
-export function navigatedTo(args: ObservableEventData) {
- setTimeout(() => {
- console.log(`Time: ${global.time() - global.startTime} ms`);
- });
-}
\ No newline at end of file
diff --git a/apps/css-perf-test/main-page.xml b/apps/css-perf-test/main-page.xml
deleted file mode 100644
index a66a5ffcd..000000000
--- a/apps/css-perf-test/main-page.xml
+++ /dev/null
@@ -1,307 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/css-perf-test/main-page2.css b/apps/css-perf-test/main-page2.css
deleted file mode 100644
index 115f58fbc..000000000
--- a/apps/css-perf-test/main-page2.css
+++ /dev/null
@@ -1,29 +0,0 @@
-.title {
- font-size: 20;
- margin: 3;
-}
-
-.author {
- font-size: 14;
- horizontal-align: left;
- vertical-align: bottom;
- margin: 3;
-}
-
-.comments {
- color: #10C2B0;
- font-size: 14;
- vertical-align: bottom;
- margin: 3;
-}
-
-.thumbnail {
- width: 72;
- height: 72;
- margin: 3;
- vertical-align: top;
-}
-
-TabView {
- background-color: white;
-}
\ No newline at end of file
diff --git a/apps/css-perf-test/res/logo.png b/apps/css-perf-test/res/logo.png
deleted file mode 100644
index de99da231..000000000
Binary files a/apps/css-perf-test/res/logo.png and /dev/null differ
diff --git a/apps/css-perf-test/root.ts b/apps/css-perf-test/root.ts
deleted file mode 100644
index b67d9911a..000000000
--- a/apps/css-perf-test/root.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import {Page} from "ui/page";
-
-export function onTap(args: any) {
- global.startTime = global.time();
- let page = args.object.page;
- page.frame.navigate("css-perf-test/main-page");
-}
\ No newline at end of file
diff --git a/apps/css-perf-test/root.xml b/apps/css-perf-test/root.xml
deleted file mode 100644
index 6088b5d07..000000000
--- a/apps/css-perf-test/root.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file