diff --git a/android/.classpath b/android/.classpath
new file mode 100644
index 0000000000..609aa00ebc
--- /dev/null
+++ b/android/.classpath
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/android/.cproject b/android/.cproject
new file mode 100644
index 0000000000..0bde975dce
--- /dev/null
+++ b/android/.cproject
@@ -0,0 +1,215 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/.project b/android/.project
new file mode 100644
index 0000000000..f7e54c4908
--- /dev/null
+++ b/android/.project
@@ -0,0 +1,101 @@
+
+
+ MapsWithMe
+
+
+
+
+
+ org.eclipse.cdt.managedbuilder.core.genmakebuilder
+ clean,full,incremental,
+
+
+ ?name?
+
+
+
+ org.eclipse.cdt.make.core.append_environment
+ true
+
+
+ org.eclipse.cdt.make.core.autoBuildTarget
+ all
+
+
+ org.eclipse.cdt.make.core.buildArguments
+
+
+
+ org.eclipse.cdt.make.core.buildCommand
+
+
+
+ org.eclipse.cdt.make.core.cleanBuildTarget
+ clean
+
+
+ org.eclipse.cdt.make.core.contents
+ org.eclipse.cdt.make.core.activeConfigSettings
+
+
+ org.eclipse.cdt.make.core.enableAutoBuild
+ false
+
+
+ org.eclipse.cdt.make.core.enableCleanBuild
+ true
+
+
+ org.eclipse.cdt.make.core.enableFullBuild
+ true
+
+
+ org.eclipse.cdt.make.core.fullBuildTarget
+ all
+
+
+ org.eclipse.cdt.make.core.stopOnError
+ true
+
+
+ org.eclipse.cdt.make.core.useDefaultBuildCmd
+ false
+
+
+
+
+ com.android.ide.eclipse.adt.ResourceManagerBuilder
+
+
+
+
+ com.android.ide.eclipse.adt.PreCompilerBuilder
+
+
+
+
+ org.eclipse.jdt.core.javabuilder
+
+
+
+
+ com.android.ide.eclipse.adt.ApkBuilder
+
+
+
+
+ org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder
+ full,incremental,
+
+
+
+
+
+ com.android.ide.eclipse.adt.AndroidNature
+ org.eclipse.jdt.core.javanature
+ org.eclipse.cdt.core.cnature
+ org.eclipse.cdt.core.ccnature
+ org.eclipse.cdt.managedbuilder.core.managedBuildNature
+ org.eclipse.cdt.managedbuilder.core.ScannerConfigNature
+
+
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
new file mode 100644
index 0000000000..fa0108ebf9
--- /dev/null
+++ b/android/AndroidManifest.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/default.properties b/android/default.properties
new file mode 100644
index 0000000000..b74c488043
--- /dev/null
+++ b/android/default.properties
@@ -0,0 +1,11 @@
+# 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.
+
+# Project target.
+target=android-4
diff --git a/android/jni/main_native.cpp b/android/jni/main_native.cpp
new file mode 100644
index 0000000000..aff26dffe3
--- /dev/null
+++ b/android/jni/main_native.cpp
@@ -0,0 +1,68 @@
+#include
+#include
+#include
+#include
+
+
+#define LOG(...) __android_log_print(ANDROID_LOG_INFO, "main_native", __VA_ARGS__)
+
+namespace jni_help
+{
+ jmethodID GetJavaMethodID(JNIEnv * env, jobject obj,
+ char const * fn, char const * sig)
+ {
+ jclass cls = env->GetObjectClass(obj);
+ jmethodID mid = env->GetMethodID(cls, fn, sig);
+ assert(mid != 0);
+ return mid;
+ }
+
+ class String
+ {
+ JNIEnv * m_env;
+ jstring m_s;
+ jchar const * m_ret;
+ public:
+ String(JNIEnv * env, jstring s) : m_env(env), m_s(s)
+ {
+ LOG("String constructor");
+ m_ret = m_env->GetStringChars(m_s, NULL);
+ }
+ ~String()
+ {
+ LOG("String destructor");
+ m_env->ReleaseStringChars(m_s, m_ret);
+ }
+ };
+}
+
+
+extern "C"
+{
+ JNIEXPORT jstring JNICALL
+ Java_com_mapswithme_maps_MWMActivity_stringsJNI(JNIEnv * env, jobject thiz, jstring s)
+ {
+ LOG("Enter stringsJNI");
+
+ {
+ jni_help::String str(env, s);
+ }
+
+ LOG("Leave stringsJNI");
+ return env->NewStringUTF("Return string from JNI.");
+ }
+
+ JNIEXPORT void JNICALL
+ Java_com_mapswithme_maps_MWMActivity_callbackFromJNI(JNIEnv * env, jobject thiz)
+ {
+ LOG("Enter callbackFromJNI");
+
+ env->CallVoidMethod(thiz, jni_help::GetJavaMethodID(env, thiz,
+ "callbackVoid", "()V"));
+ env->CallVoidMethod(thiz, jni_help::GetJavaMethodID(env, thiz,
+ "callbackString", "(Ljava/lang/String;)V"),
+ env->NewStringUTF("Pass string from JNI."));
+
+ LOG("Leave callbackFromJNI");
+ }
+}
diff --git a/android/proguard.cfg b/android/proguard.cfg
new file mode 100644
index 0000000000..12dd0392c0
--- /dev/null
+++ b/android/proguard.cfg
@@ -0,0 +1,36 @@
+-optimizationpasses 5
+-dontusemixedcaseclassnames
+-dontskipnonpubliclibraryclasses
+-dontpreverify
+-verbose
+-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
+
+-keep public class * extends android.app.Activity
+-keep public class * extends android.app.Application
+-keep public class * extends android.app.Service
+-keep public class * extends android.content.BroadcastReceiver
+-keep public class * extends android.content.ContentProvider
+-keep public class * extends android.app.backup.BackupAgentHelper
+-keep public class * extends android.preference.Preference
+-keep public class com.android.vending.licensing.ILicensingService
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+-keepclasseswithmembernames class * {
+ public (android.content.Context, android.util.AttributeSet);
+}
+
+-keepclasseswithmembernames class * {
+ public (android.content.Context, android.util.AttributeSet, int);
+}
+
+-keepclassmembers enum * {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+-keep class * implements android.os.Parcelable {
+ public static final android.os.Parcelable$Creator *;
+}
diff --git a/android/res/drawable-hdpi/icon.png b/android/res/drawable-hdpi/icon.png
new file mode 100644
index 0000000000..8074c4c571
Binary files /dev/null and b/android/res/drawable-hdpi/icon.png differ
diff --git a/android/res/drawable-ldpi/icon.png b/android/res/drawable-ldpi/icon.png
new file mode 100644
index 0000000000..1095584ec2
Binary files /dev/null and b/android/res/drawable-ldpi/icon.png differ
diff --git a/android/res/drawable-mdpi/icon.png b/android/res/drawable-mdpi/icon.png
new file mode 100644
index 0000000000..a07c69fa5a
Binary files /dev/null and b/android/res/drawable-mdpi/icon.png differ
diff --git a/android/res/layout/main.xml b/android/res/layout/main.xml
new file mode 100644
index 0000000000..3a5f117d3c
--- /dev/null
+++ b/android/res/layout/main.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/android/res/values/strings.xml b/android/res/values/strings.xml
new file mode 100644
index 0000000000..108d9beca8
--- /dev/null
+++ b/android/res/values/strings.xml
@@ -0,0 +1,5 @@
+
+
+ Hello World, MWMActivity!
+ MapsWithMe
+
diff --git a/android/src/com/mapswithme/maps/MWMActivity.java b/android/src/com/mapswithme/maps/MWMActivity.java
new file mode 100644
index 0000000000..d8679fcc1e
--- /dev/null
+++ b/android/src/com/mapswithme/maps/MWMActivity.java
@@ -0,0 +1,15 @@
+package com.mapswithme.maps;
+
+import android.app.Activity;
+import android.os.Bundle;
+
+public class MWMActivity extends Activity
+{
+ /** Called when the activity is first created. */
+ @Override
+ public void onCreate(Bundle savedInstanceState)
+ {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.main);
+ }
+}