diff --git a/lib/res/layout/dlg_install_mwm.xml b/lib/res/layout/dlg_install_mwm.xml
index 0d174a8..1858369 100644
--- a/lib/res/layout/dlg_install_mwm.xml
+++ b/lib/res/layout/dlg_install_mwm.xml
@@ -54,16 +54,6 @@
android:background="@drawable/btn_green_selector"
android:text="@string/down_pro" />
-
-
\ No newline at end of file
diff --git a/lib/res/values/strings.xml b/lib/res/values/strings.xml
index 7f4c84d..d9e3f27 100644
--- a/lib/res/values/strings.xml
+++ b/lib/res/values/strings.xml
@@ -1,9 +1,6 @@
- Offline maps are required to proceed. We have partnered with maps.me to provide you with offline maps of the entire world.\nTo continue please download the app:
- Download maps.me Lite (free)
- Download maps.me Pro
-
+ Offline maps are required to proceed. We have partnered with MAPS.ME to provide you with offline maps of the entire world.\nTo continue please download the app:
+ Download MAPS.MEhttp://maps.me/get
- http://maps.me/app
\ No newline at end of file
diff --git a/lib/src/com/mapswithme/maps/api/DownloadMapsWithMeDialog.java b/lib/src/com/mapswithme/maps/api/DownloadMapsWithMeDialog.java
index 5670a5f..480bbe1 100644
--- a/lib/src/com/mapswithme/maps/api/DownloadMapsWithMeDialog.java
+++ b/lib/src/com/mapswithme/maps/api/DownloadMapsWithMeDialog.java
@@ -41,7 +41,6 @@ public class DownloadMapsWithMeDialog extends Dialog implements android.view.Vie
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.dlg_install_mwm);
- findViewById(R.id.btn_lite).setOnClickListener(this);
findViewById(R.id.btn_pro).setOnClickListener(this);
setOwnerActivity(activity);
@@ -59,7 +58,7 @@ public class DownloadMapsWithMeDialog extends Dialog implements android.view.Vie
@Override
public void onClick(View v)
{
- String url = getContext().getString(v.getId() == R.id.btn_lite ? R.string.url_lite : R.string.url_pro);
+ String url = getContext().getString(R.string.url_pro);
onDownloadButtonClicked(url);
}
}