[android] share my position crash fix

This commit is contained in:
Arsentiy Milchakov 2019-03-09 16:10:23 +03:00 committed by Aleksandr Zatsepin
parent be2cccc50e
commit 1e1ee8d7c9
3 changed files with 9 additions and 2 deletions

View file

@ -889,6 +889,13 @@ void CallStartPurchaseTransactionListener(shared_ptr<jobject> listener, bool suc
}
/// @name JNI EXPORTS
JNIEXPORT jstring JNICALL
Java_com_mapswithme_maps_Framework_nativeGetAddress(JNIEnv * env, jclass clazz, jdouble lat, jdouble lon)
{
auto const info = frm()->GetAddressAtPoint(MercatorBounds::FromLatLon(lat, lon));
return jni::ToJavaString(env, info.FormatAddress());
}
JNIEXPORT void JNICALL
Java_com_mapswithme_maps_Framework_nativeClearApiPoints(JNIEnv * env, jclass clazz)
{

View file

@ -259,7 +259,7 @@ public class Framework
public static native String nativeGetGe0Url(double lat, double lon, double zoomLevel, String name);
public static native String nativeGetNameAndAddress(double lat, double lon);
public static native String nativeGetAddress(double lat, double lon);
public static native void nativeSetMapObjectListener(MapObjectListener listener);

View file

@ -28,7 +28,7 @@ class MapObjectShareable extends BaseShareable
{
subject = activity.getString(R.string.my_position_share_email_subject);
text = activity.getString(R.string.my_position_share_email,
Framework.nativeGetNameAndAddress(mapObject.getLat(), mapObject.getLon()),
Framework.nativeGetAddress(mapObject.getLat(), mapObject.getLon()),
ge0Url, httpUrl);
}
else