Can I connect with TomTom android app developers?
Could you help me?
I would like to open this app with some location from my own app. For example I can open Google map with location, and map opens with this location and builds navigation track for driver. But tomtom isn't. Maybe do I do that in wrong way?
I will very grateful for your help.
I open your app from my application with Intent :
String uri = String.format(Locale.US, "%f,%f", location.latitude, location.longitude); Uri navigationUri = Uri.parse("google.navigation:q=" + uri); Intent intent = new Intent(Intent.ACTION_VIEW, navigationUri); intent.setPackage("com.tomtom.gplay.navapp"); context.startActivity(intent);TomTom opens but it writes that Address Not Found.
Could you help me please?
Comments