[android] Vezet taxi

This commit is contained in:
Dmitry Donskoy 2019-04-15 17:40:20 +03:00 committed by Aleksandr Zatsepin
parent a07d07dd58
commit f66159138a
11 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -105,12 +105,12 @@ public enum TaxiType
return "Maxim";
}
},
RUTAXI(R.string.place_page_starting_from, new LocaleDependentFormatPriceStrategy(), true)
TAXI_VEZET(R.string.place_page_starting_from, new LocaleDependentFormatPriceStrategy(), true)
{
@NonNull
public String getPackageName()
{
return "com.its.rto";
return "ru.rutaxi.vezet";
}
@NonNull
@ -122,19 +122,19 @@ public enum TaxiType
@DrawableRes
public int getIcon()
{
return R.drawable.ic_taxi_logo_rutaxi;
return R.drawable.ic_taxi_logo_vezet;
}
@StringRes
public int getTitle()
{
return R.string.rutaxi_title;
return R.string.taxi;
}
@NonNull
public String getProviderName()
{
return "Rutaxi";
return "Vezet";
}
};