forked from organicmaps/organicmaps
[android] Use "http" protocol instead of "https" by default.
This commit is contained in:
parent
9ee82fab47
commit
f9c7f4a14a
2 changed files with 2 additions and 2 deletions
|
@ -356,7 +356,7 @@ public class MWMActivity extends NvEventQueueActivity implements LocationService
|
|||
catch (Exception e)
|
||||
{
|
||||
// Show Facebook page in browser.
|
||||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/MapsWithMe")));
|
||||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.facebook.com/MapsWithMe")));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public class MWMApplication extends android.app.Application implements MapStorag
|
|||
private boolean m_isProVersion = false;
|
||||
|
||||
// Set default string to Google Play page.
|
||||
private final static String m_defaultProURL = "https://play.google.com/store/apps/details?id=com.mapswithme.maps.pro";
|
||||
private final static String m_defaultProURL = "http://play.google.com/store/apps/details?id=com.mapswithme.maps.pro";
|
||||
private String m_proVersionURL = m_defaultProURL;
|
||||
|
||||
private void showDownloadToast(int resID, Index idx)
|
||||
|
|
Loading…
Add table
Reference in a new issue