Uber Russia from the side application



  • YandexGo has the possibility of a challenge from the outside application:

            Android.Net.Uri uri = Android.Net.Uri.Parse(string.Format(CultureInfo.InvariantCulture, "yandextaxi://"));
            Intent intent = new Intent(Intent.ActionView, uri);
            intent.SetPackage("ru.yandex.taxi");
            _activity.StartActivity(intent);
    

    Is there a similar opportunity to open the Uber Russia Annex?



  • You need to use "ubermlbv://" instead of "yandextaxi://." Name of "ru.yandex.uber."

        Android.Net.Uri uri = Android.Net.Uri.Parse(string.Format(CultureInfo.InvariantCulture, "ubermlbv://"));
        Intent intent = new Intent(Intent.ActionView, uri);
        intent.SetPackage("ru.yandex.uber");
        _activity.StartActivity(intent);
    

    Apparently, after the uber got mixed up with the Yandex, the name of the application that could be called from another application changed. The new name of the annex can be viewed by opening the uber russia - Background information(s) - on the side menu - on the annex. and below the small print will be the current name of the annex.



Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2