[android] Vezet taxi
Before Width: | Height: | Size: 1.5 KiB |
BIN
android/res/drawable-hdpi/ic_taxi_logo_vezet.png
Normal file
After Width: | Height: | Size: 795 B |
Before Width: | Height: | Size: 1 KiB |
BIN
android/res/drawable-mdpi/ic_taxi_logo_vezet.png
Normal file
After Width: | Height: | Size: 588 B |
Before Width: | Height: | Size: 1.9 KiB |
BIN
android/res/drawable-xhdpi/ic_taxi_logo_vezet.png
Normal file
After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 2.7 KiB |
BIN
android/res/drawable-xxhdpi/ic_taxi_logo_vezet.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.6 KiB |
BIN
android/res/drawable-xxxhdpi/ic_taxi_logo_vezet.png
Normal file
After Width: | Height: | Size: 2 KiB |
|
@ -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";
|
||||
}
|
||||
};
|
||||
|
||||
|
|