diff --git a/OsmAnd/.classpath b/OsmAnd/.classpath
new file mode 100644
index 0000000000..deb535e6d6
--- /dev/null
+++ b/OsmAnd/.classpath
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/OsmAnd/.project b/OsmAnd/.project
new file mode 100644
index 0000000000..030cb20ef6
--- /dev/null
+++ b/OsmAnd/.project
@@ -0,0 +1,40 @@
+
+
+ OsmAnd
+
+
+
+
+
+ com.android.ide.eclipse.adt.ResourceManagerBuilder
+
+
+
+
+ com.android.ide.eclipse.adt.PreCompilerBuilder
+
+
+
+
+ org.eclipse.jdt.core.javabuilder
+
+
+
+
+ com.android.ide.eclipse.adt.ApkBuilder
+
+
+
+
+
+ com.android.ide.eclipse.adt.AndroidNature
+ org.eclipse.jdt.core.javanature
+
+
+
+ use
+ 2
+ OSMAND_TRUNK/DataExtractionOSM/src
+
+
+
diff --git a/OsmAnd/AndroidManifest.xml b/OsmAnd/AndroidManifest.xml
new file mode 100644
index 0000000000..9bdc179b92
--- /dev/null
+++ b/OsmAnd/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/OsmAnd/default.properties b/OsmAnd/default.properties
new file mode 100644
index 0000000000..a1ef8e9ff4
--- /dev/null
+++ b/OsmAnd/default.properties
@@ -0,0 +1,13 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system use,
+# "build.properties", and override values to adapt the script to your
+# project structure.
+
+# Indicates whether an apk should be generated for each density.
+split.density=false
+# Project target.
+target=android-3
diff --git a/OsmAnd/res/drawable/icon.png b/OsmAnd/res/drawable/icon.png
new file mode 100644
index 0000000000..a07c69fa5a
Binary files /dev/null and b/OsmAnd/res/drawable/icon.png differ
diff --git a/OsmAnd/res/layout/main.xml b/OsmAnd/res/layout/main.xml
new file mode 100644
index 0000000000..3a5f117d3c
--- /dev/null
+++ b/OsmAnd/res/layout/main.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml
new file mode 100644
index 0000000000..99b9a14a9e
--- /dev/null
+++ b/OsmAnd/res/values/strings.xml
@@ -0,0 +1,5 @@
+
+
+ Hello World, StartActivity!
+ OsmAnd
+
diff --git a/OsmAnd/src/com/osmand/StartActivity.java b/OsmAnd/src/com/osmand/StartActivity.java
new file mode 100644
index 0000000000..ae61822958
--- /dev/null
+++ b/OsmAnd/src/com/osmand/StartActivity.java
@@ -0,0 +1,13 @@
+package com.osmand;
+
+import android.app.Activity;
+import android.os.Bundle;
+
+public class StartActivity extends Activity {
+ /** Called when the activity is first created. */
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.main);
+ }
+}
\ No newline at end of file