diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/TaxiPassengerBaseFragment.kt b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/TaxiPassengerBaseFragment.kt index ab3d2e9a95..1f27b99be6 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/TaxiPassengerBaseFragment.kt +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/TaxiPassengerBaseFragment.kt @@ -155,11 +155,7 @@ class TaxiPassengerBaseFragment() : } private fun initCheckView() { - mArrivedCheckView = WeakReference( - TaxiPassengerCheckView( - context - ) - ) + mArrivedCheckView = WeakReference(TaxiPassengerCheckView(context)) mArrivedCheckView!!.get()!!.iTaxiPassengerCommonValueCallback = ITaxiPassengerCommonValueCallback { phoneTail: String? -> getPresenter()!!.checkAndUpdateStatus(phoneTail) diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/debug/DebugEvent.kt b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/debug/DebugEvent.kt new file mode 100644 index 0000000000..ce7b533953 --- /dev/null +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/debug/DebugEvent.kt @@ -0,0 +1,4 @@ +package com.mogo.och.taxi.passenger.ui.debug + +class DebugEvent { +} \ No newline at end of file diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/debug/DebugView.kt b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/debug/DebugView.kt new file mode 100644 index 0000000000..6a05cb281d --- /dev/null +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/debug/DebugView.kt @@ -0,0 +1,91 @@ +package com.mogo.och.taxi.passenger.ui.debug + +import android.content.Context +import android.os.SystemClock +import android.util.AttributeSet +import android.view.LayoutInflater +import android.view.ViewGroup +import androidx.constraintlayout.widget.ConstraintLayout +import androidx.fragment.app.FragmentActivity +import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener +import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager +import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsManager +import com.mogo.eagle.core.function.call.hmi.CallerHmiViewControlListenerManager +import com.mogo.eagle.core.function.call.setting.CallerSkinModeListenerManager +import com.mogo.eagle.core.function.hmi.ui.setting.ToggleDebugView +import com.mogo.eagle.core.utilcode.kotlin.onClick +import com.mogo.eagle.core.utilcode.util.ActivityUtils +import com.mogo.och.common.module.manager.debug.DebugViewWatchDogFragment +import com.mogo.och.taxi.passenger.R +import com.mogo.och.taxi.passenger.ui.TaxiPassengerBaseFragment +import kotlinx.android.synthetic.main.taxi_p_debug.view.tv_show_arrive +import kotlinx.android.synthetic.main.taxi_p_debug.view.tv_show_phone_check +import kotlinx.android.synthetic.main.taxi_p_debug.view.tv_show_start_autopilot +import kotlinx.android.synthetic.main.taxi_p_statusview.view.iv_biz_icon +import me.jessyan.autosize.utils.AutoSizeUtils +import org.greenrobot.eventbus.EventBus +import org.greenrobot.eventbus.Subscribe +import org.greenrobot.eventbus.ThreadMode +import java.lang.ref.WeakReference + +class DebugView @JvmOverloads constructor( + context: Context, + attrs: AttributeSet? = null, + defStyleAttr: Int = 0 +) : ConstraintLayout(context, attrs, defStyleAttr), IMoGoAutopilotStatusListener { + + companion object { + const val TAG = "DebugView" + } + + init { + LayoutInflater.from(context).inflate(R.layout.taxi_p_debug, this, true) + visibility = GONE + } + + private var fragment:TaxiPassengerBaseFragment?=null + + override fun onAttachedToWindow() { + super.onAttachedToWindow() + + EventBus.getDefault().register(this) + + val activityByContext = ActivityUtils.getActivityByContext(context) + if(activityByContext is FragmentActivity){ + val fragment = + activityByContext.supportFragmentManager.findFragmentByTag(TaxiPassengerBaseFragment.TAG) + if(fragment is TaxiPassengerBaseFragment){ + this.fragment = fragment + } + } + + tv_show_arrive.onClick { + fragment?.showOrHideArrivedEndLayout(true) + } + tv_show_phone_check.onClick { + fragment?.showOrHidePressengerCheckPager(isShow = true) + } + tv_show_start_autopilot.onClick { + fragment?.showOrHideStartAutopilotView(true) + } + + } + @Subscribe(threadMode = ThreadMode.MAIN) + fun changeOverview(debugEvent: DebugEvent) { + if(visibility== VISIBLE){ + visibility = GONE + }else{ + visibility = VISIBLE + } + } + + + + + override fun onDetachedFromWindow() { + super.onDetachedFromWindow() + EventBus.getDefault().unregister(this) + } + +} + diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/statusview/StatusBarView.kt b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/statusview/StatusBarView.kt index c4a7dca1c8..8528a5541f 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/statusview/StatusBarView.kt +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/ui/statusview/StatusBarView.kt @@ -4,6 +4,7 @@ import android.content.Context import android.os.SystemClock import android.util.AttributeSet import android.view.LayoutInflater +import android.view.View import android.view.ViewGroup import androidx.constraintlayout.widget.ConstraintLayout import androidx.fragment.app.FragmentActivity @@ -13,11 +14,15 @@ import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsManager import com.mogo.eagle.core.function.call.hmi.CallerHmiViewControlListenerManager import com.mogo.eagle.core.function.call.setting.CallerSkinModeListenerManager import com.mogo.eagle.core.function.hmi.ui.setting.ToggleDebugView +import com.mogo.eagle.core.utilcode.kotlin.onClick import com.mogo.eagle.core.utilcode.util.ActivityUtils import com.mogo.och.common.module.manager.debug.DebugViewWatchDogFragment import com.mogo.och.taxi.passenger.R +import com.mogo.och.taxi.passenger.ui.debug.DebugEvent import kotlinx.android.synthetic.main.taxi_p_statusview.view.iv_biz_icon +import kotlinx.android.synthetic.main.taxi_p_statusview.view.vShowDebugView import me.jessyan.autosize.utils.AutoSizeUtils +import org.greenrobot.eventbus.EventBus import java.lang.ref.WeakReference class StatusBarView @JvmOverloads constructor( @@ -70,9 +75,11 @@ class StatusBarView @JvmOverloads constructor( CallerAutoPilotStatusListenerManager.addListener(TAG, this) -// bizz_view.setOnClickListener { continuousClick(bizz) } -// iv_biz_icon.setOnClickListener { continuousClick(debugView) } + vShowDebugView.setOnLongClickListener { + EventBus.getDefault().post(DebugEvent()) + false + } } diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/bg_taxi_score_success.xml b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/bg_taxi_score_success.xml deleted file mode 100644 index 530c056746..0000000000 --- a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/bg_taxi_score_success.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00004.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00004.png deleted file mode 100755 index f7dd0c6b25..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00004.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00006.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00006.png deleted file mode 100755 index 70108e3707..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00006.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00008.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00008.png deleted file mode 100755 index a0877d0acc..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00008.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00010.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00010.png deleted file mode 100755 index f297f5d342..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00010.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00012.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00012.png deleted file mode 100755 index 68f2afcae2..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00012.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00014.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00014.png deleted file mode 100755 index 831402be08..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00014.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00016.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00016.png deleted file mode 100755 index 267f43b0f3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00016.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00018.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00018.png deleted file mode 100755 index 090e0f5956..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00018.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00020.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00020.png deleted file mode 100755 index 79dcb2bd7d..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00020.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00022.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00022.png deleted file mode 100755 index f0bdfebe51..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00022.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00024.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00024.png deleted file mode 100755 index f2849724a9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00024.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00026.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00026.png deleted file mode 100755 index 61ced03693..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00026.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00028.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00028.png deleted file mode 100755 index 267f43b0f3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00028.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00030.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00030.png deleted file mode 100755 index 6ace3723e0..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00030.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00032.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00032.png deleted file mode 100755 index 7bf472281c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00032.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00034.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00034.png deleted file mode 100755 index b4f6621cf1..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00034.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00036.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00036.png deleted file mode 100755 index c7b712902f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00036.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00038.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00038.png deleted file mode 100755 index 948889745a..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00038.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00040.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00040.png deleted file mode 100755 index 642dc60de2..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00040.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00042.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00042.png deleted file mode 100755 index 58fd5e0e7e..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00042.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00044.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00044.png deleted file mode 100755 index 19bcbac261..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00044.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00046.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00046.png deleted file mode 100755 index acd43f4298..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00046.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00048.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00048.png deleted file mode 100755 index 170eb808a3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00048.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00050.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00050.png deleted file mode 100755 index 4be63ceae0..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00050.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00052.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00052.png deleted file mode 100755 index e32c7f0f05..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00052.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00054.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00054.png deleted file mode 100755 index 261498d77c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00054.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00056.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00056.png deleted file mode 100755 index 6e86e9562e..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00056.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00058.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00058.png deleted file mode 100755 index eccea55da7..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00058.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00060.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00060.png deleted file mode 100755 index 84f0a318ec..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00060.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00062.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00062.png deleted file mode 100755 index 638959b769..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00062.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00064.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00064.png deleted file mode 100755 index 6cd7a9c5e3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00064.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00066.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00066.png deleted file mode 100755 index 7c98a6bc11..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00066.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00068.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00068.png deleted file mode 100755 index 1e29bf4ff5..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/hand_00068.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00000.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00000.png deleted file mode 100755 index a0dfa7f8f7..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00000.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00000.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00000.webp new file mode 100644 index 0000000000..48ff738bb2 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00000.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00001.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00001.png deleted file mode 100755 index 680759b4d9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00001.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00001.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00001.webp new file mode 100644 index 0000000000..52bdbd2d7e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00001.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00002.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00002.png deleted file mode 100755 index 1c7f3cc086..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00002.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00002.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00002.webp new file mode 100644 index 0000000000..fbbf76f25a Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00002.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00003.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00003.png deleted file mode 100755 index ce0c8d198f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00003.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00003.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00003.webp new file mode 100644 index 0000000000..33e3d1fdb2 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00003.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00004.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00004.png deleted file mode 100755 index 55e12fd9d8..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00004.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00004.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00004.webp new file mode 100644 index 0000000000..72bb8f22ee Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00004.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00005.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00005.png deleted file mode 100755 index d962401364..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00005.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00005.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00005.webp new file mode 100644 index 0000000000..6bc2430f7a Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00005.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00006.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00006.png deleted file mode 100755 index 4de8aba9bb..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00006.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00006.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00006.webp new file mode 100644 index 0000000000..ee3b9f9321 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00006.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00007.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00007.png deleted file mode 100755 index db098cf18a..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00007.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00007.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00007.webp new file mode 100644 index 0000000000..b8c4889d88 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00007.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00008.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00008.png deleted file mode 100755 index b1e83c861c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00008.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00008.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00008.webp new file mode 100644 index 0000000000..22b5b890df Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00008.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00009.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00009.png deleted file mode 100755 index 34e683dfd4..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00009.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00009.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00009.webp new file mode 100644 index 0000000000..d1662e601c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00009.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00010.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00010.png deleted file mode 100755 index 6270cedfc5..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00010.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00010.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00010.webp new file mode 100644 index 0000000000..c51719a39c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00010.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00011.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00011.png deleted file mode 100755 index c00eeb72f2..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00011.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00011.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00011.webp new file mode 100644 index 0000000000..373b5808df Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00011.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00012.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00012.png deleted file mode 100755 index c8a45c47c9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00012.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00012.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00012.webp new file mode 100644 index 0000000000..1ed5822d0e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00012.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00013.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00013.png deleted file mode 100755 index a99c7f9478..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00013.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00013.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00013.webp new file mode 100644 index 0000000000..e9a49e370d Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00013.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00014.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00014.png deleted file mode 100755 index d3d74602cf..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00014.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00014.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00014.webp new file mode 100644 index 0000000000..e4eaa29a74 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00014.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00015.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00015.png deleted file mode 100755 index 36eb509d99..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00015.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00015.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00015.webp new file mode 100644 index 0000000000..34bbe9e761 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00015.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00016.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00016.png deleted file mode 100755 index 5eb0973d43..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00016.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00016.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00016.webp new file mode 100644 index 0000000000..26d64dee24 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00016.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00017.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00017.png deleted file mode 100755 index 4d81785469..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00017.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00017.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00017.webp new file mode 100644 index 0000000000..62fd724581 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00017.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00018.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00018.png deleted file mode 100755 index 9a62e2361c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00018.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00018.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00018.webp new file mode 100644 index 0000000000..5a749d939b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00018.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00019.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00019.png deleted file mode 100755 index 5e3714b4f3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00019.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00019.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00019.webp new file mode 100644 index 0000000000..43a5bbd525 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00019.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00020.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00020.png deleted file mode 100755 index 6d49b97801..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00020.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00020.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00020.webp new file mode 100644 index 0000000000..56767a3b31 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00020.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00021.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00021.png deleted file mode 100755 index 1dd8d65e53..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00021.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00021.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00021.webp new file mode 100644 index 0000000000..71e0697d64 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00021.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00022.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00022.png deleted file mode 100755 index f341f65981..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00022.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00022.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00022.webp new file mode 100644 index 0000000000..605771fb5b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00022.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00023.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00023.png deleted file mode 100755 index 5a4add9da6..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00023.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00023.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00023.webp new file mode 100644 index 0000000000..ed0c6a6ee6 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00023.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00024.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00024.png deleted file mode 100755 index e959fddcc5..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00024.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00024.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00024.webp new file mode 100644 index 0000000000..5c1b836875 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00024.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00025.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00025.png deleted file mode 100755 index f3f8e37dd6..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00025.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00025.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00025.webp new file mode 100644 index 0000000000..ec54d0ca41 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00025.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00026.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00026.png deleted file mode 100755 index 30180ea84f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00026.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00026.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00026.webp new file mode 100644 index 0000000000..1d24469619 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00026.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00027.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00027.png deleted file mode 100755 index 56709e2288..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00027.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00027.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00027.webp new file mode 100644 index 0000000000..7c0eceb065 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00027.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00028.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00028.png deleted file mode 100755 index 8891a817eb..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00028.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00028.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00028.webp new file mode 100644 index 0000000000..0d5d472cd8 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00028.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00029.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00029.png deleted file mode 100755 index 7e5ec387ea..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00029.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00029.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00029.webp new file mode 100644 index 0000000000..290aa4a60e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00029.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00030.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00030.png deleted file mode 100755 index 7f7d07109f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00030.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00030.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00030.webp new file mode 100644 index 0000000000..8f8ec72564 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00030.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00031.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00031.png deleted file mode 100755 index 6ff1d0c92d..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00031.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00031.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00031.webp new file mode 100644 index 0000000000..19df72dc5f Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00031.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00032.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00032.png deleted file mode 100755 index 4a1f910ed7..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00032.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00032.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00032.webp new file mode 100644 index 0000000000..f0348ae4f6 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00032.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00033.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00033.png deleted file mode 100755 index 724914c5ae..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00033.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00033.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00033.webp new file mode 100644 index 0000000000..24d82a1a51 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00033.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00034.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00034.png deleted file mode 100755 index faf19546ee..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00034.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00034.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00034.webp new file mode 100644 index 0000000000..5083755495 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00034.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00035.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00035.png deleted file mode 100755 index 10c9d2963f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00035.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00035.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00035.webp new file mode 100644 index 0000000000..fbdcc2af20 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00035.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00036.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00036.png deleted file mode 100755 index 4d312ca7ac..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00036.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00036.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00036.webp new file mode 100644 index 0000000000..091313d312 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00036.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00037.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00037.png deleted file mode 100755 index 16e45f0260..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00037.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00037.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00037.webp new file mode 100644 index 0000000000..08805bed05 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00037.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00038.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00038.png deleted file mode 100755 index 0dc8f5e210..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00038.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00038.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00038.webp new file mode 100644 index 0000000000..eba6b993c1 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00038.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00039.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00039.png deleted file mode 100755 index 3ad2991766..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00039.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00039.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00039.webp new file mode 100644 index 0000000000..4c26bcc4f2 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00039.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00040.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00040.png deleted file mode 100755 index 7e3d5c2d45..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00040.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00040.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00040.webp new file mode 100644 index 0000000000..cacc7d3e0e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00040.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00041.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00041.png deleted file mode 100755 index edb9b5d6ac..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00041.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00041.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00041.webp new file mode 100644 index 0000000000..6f8510d421 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00041.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00042.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00042.png deleted file mode 100755 index fc14a5cebd..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00042.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00042.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00042.webp new file mode 100644 index 0000000000..99b05c434c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00042.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00043.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00043.png deleted file mode 100755 index 88fc486a43..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00043.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00043.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00043.webp new file mode 100644 index 0000000000..8f15aeb39c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00043.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00044.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00044.png deleted file mode 100755 index 4352edc42b..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00044.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00044.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00044.webp new file mode 100644 index 0000000000..e3d0ebf25b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00044.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00045.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00045.png deleted file mode 100755 index 394d83a0c4..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00045.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00045.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00045.webp new file mode 100644 index 0000000000..7b89451778 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00045.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00046.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00046.png deleted file mode 100755 index 50ed643a21..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00046.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00046.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00046.webp new file mode 100644 index 0000000000..8a114b2c5f Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00046.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00047.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00047.png deleted file mode 100755 index 564b42295d..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00047.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00047.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00047.webp new file mode 100644 index 0000000000..56134ae884 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00047.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00048.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00048.png deleted file mode 100755 index d1d71fdf4e..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00048.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00048.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00048.webp new file mode 100644 index 0000000000..137dd6bfed Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00048.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00049.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00049.png deleted file mode 100755 index 1fa95d2165..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00049.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00049.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00049.webp new file mode 100644 index 0000000000..60b772e712 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00049.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00050.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00050.png deleted file mode 100755 index 8e113713b7..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00050.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00050.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00050.webp new file mode 100644 index 0000000000..f943cfbd71 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00050.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00051.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00051.png deleted file mode 100755 index 3266319123..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00051.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00051.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00051.webp new file mode 100644 index 0000000000..4358b06e33 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00051.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00052.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00052.png deleted file mode 100755 index 6a79b83ba0..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00052.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00052.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00052.webp new file mode 100644 index 0000000000..2d38a09c8b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00052.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00053.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00053.png deleted file mode 100755 index 151f20d442..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00053.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00053.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00053.webp new file mode 100644 index 0000000000..d6f4d18778 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00053.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00054.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00054.png deleted file mode 100755 index a1d880a08f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00054.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00054.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00054.webp new file mode 100644 index 0000000000..b96cce4eb5 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00054.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00055.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00055.png deleted file mode 100755 index 550a0854db..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00055.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00055.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00055.webp new file mode 100644 index 0000000000..32e4cd91ab Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00055.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00056.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00056.png deleted file mode 100755 index 9beb224940..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00056.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00056.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00056.webp new file mode 100644 index 0000000000..aa6670da05 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00056.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00057.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00057.png deleted file mode 100755 index cfc8177cd5..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00057.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00057.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00057.webp new file mode 100644 index 0000000000..b410cb437f Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00057.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00058.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00058.png deleted file mode 100755 index 882dc0f1f9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00058.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00058.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00058.webp new file mode 100644 index 0000000000..e11858b42e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00058.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00059.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00059.png deleted file mode 100755 index 9cfcd54ee6..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00059.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00059.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00059.webp new file mode 100644 index 0000000000..312bc11e5f Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00059.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00060.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00060.png deleted file mode 100755 index b3675fb728..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00060.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00060.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00060.webp new file mode 100644 index 0000000000..ef62d45960 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00060.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00061.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00061.png deleted file mode 100755 index fd08f1e40c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00061.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00061.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00061.webp new file mode 100644 index 0000000000..a3c784ae27 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00061.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00062.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00062.png deleted file mode 100755 index 84ee81b396..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00062.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00062.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00062.webp new file mode 100644 index 0000000000..839c46ab73 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00062.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00063.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00063.png deleted file mode 100755 index ae628696ef..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00063.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00063.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00063.webp new file mode 100644 index 0000000000..ff92e0d51d Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00063.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00064.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00064.png deleted file mode 100755 index 992da81503..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00064.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00064.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00064.webp new file mode 100644 index 0000000000..323a97c01b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00064.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00065.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00065.png deleted file mode 100755 index 7b9c99a960..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00065.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00065.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00065.webp new file mode 100644 index 0000000000..72b7a78068 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00065.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00066.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00066.png deleted file mode 100755 index f137b9a4ea..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00066.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00066.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00066.webp new file mode 100644 index 0000000000..29688ddeed Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00066.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00067.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00067.png deleted file mode 100755 index ece0a97a47..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00067.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00067.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00067.webp new file mode 100644 index 0000000000..87821638ab Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00067.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00068.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00068.png deleted file mode 100755 index 43a9155a3f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00068.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00068.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00068.webp new file mode 100644 index 0000000000..076c706782 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00068.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00069.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00069.png deleted file mode 100755 index dc1270b18f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00069.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00069.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00069.webp new file mode 100644 index 0000000000..4c5dacb815 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00069.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00070.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00070.png deleted file mode 100755 index 2f79f9ae68..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00070.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00070.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00070.webp new file mode 100644 index 0000000000..79081af3ec Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00070.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00071.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00071.png deleted file mode 100755 index 7f11b0d4cc..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00071.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00071.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00071.webp new file mode 100644 index 0000000000..bcdcfc9fdf Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00071.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00072.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00072.png deleted file mode 100755 index e8c888ba66..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00072.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00072.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00072.webp new file mode 100644 index 0000000000..cc99035f0e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00072.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00073.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00073.png deleted file mode 100755 index 5e2ad3e6d3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00073.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00073.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00073.webp new file mode 100644 index 0000000000..c8cf5e6a36 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00073.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00074.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00074.png deleted file mode 100755 index 28a135c02a..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00074.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00074.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00074.webp new file mode 100644 index 0000000000..9b45639b62 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/image_00074.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00000.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00000.png deleted file mode 100644 index a3f6f47ae9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00000.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00000.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00000.webp new file mode 100644 index 0000000000..162912157e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00000.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00001.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00001.png deleted file mode 100644 index 51a351d7ec..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00001.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00001.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00001.webp new file mode 100644 index 0000000000..9bfb13cebc Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00001.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00002.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00002.png deleted file mode 100644 index afa614db38..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00002.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00002.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00002.webp new file mode 100644 index 0000000000..214de2f6b1 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00002.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00003.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00003.png deleted file mode 100644 index b0f967849a..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00003.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00003.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00003.webp new file mode 100644 index 0000000000..55b4d8860b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00003.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00004.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00004.png deleted file mode 100644 index 9eb3679dbd..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00004.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00004.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00004.webp new file mode 100644 index 0000000000..6e6950f52c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00004.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00005.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00005.png deleted file mode 100644 index a68bb04890..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00005.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00005.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00005.webp new file mode 100644 index 0000000000..5c198f409f Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00005.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00006.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00006.png deleted file mode 100644 index 9474a4052d..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00006.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00006.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00006.webp new file mode 100644 index 0000000000..03ac1fbc0c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00006.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00007.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00007.png deleted file mode 100644 index 57feb25dd3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00007.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00007.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00007.webp new file mode 100644 index 0000000000..025e2b702c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00007.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00008.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00008.png deleted file mode 100644 index 08be70100f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00008.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00008.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00008.webp new file mode 100644 index 0000000000..c1eb0ed2a4 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00008.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00009.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00009.png deleted file mode 100644 index 6b31156a28..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00009.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00009.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00009.webp new file mode 100644 index 0000000000..6aa19f7b9f Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00009.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00010.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00010.png deleted file mode 100644 index ca34b46de9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00010.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00010.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00010.webp new file mode 100644 index 0000000000..79f2133b05 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00010.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00011.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00011.png deleted file mode 100644 index e57389e542..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00011.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00011.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00011.webp new file mode 100644 index 0000000000..e41ebafccf Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00011.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00012.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00012.png deleted file mode 100644 index b7292d22b9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00012.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00012.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00012.webp new file mode 100644 index 0000000000..3af80db92e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00012.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00013.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00013.png deleted file mode 100644 index e9d45b62f5..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00013.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00013.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00013.webp new file mode 100644 index 0000000000..4fffcd62dc Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/light_00013.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal002.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal002.png deleted file mode 100644 index e63b3cb7b9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal002.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal002.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal002.webp new file mode 100644 index 0000000000..f884ab93d7 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal002.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal004.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal004.png deleted file mode 100644 index b39834a198..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal004.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal004.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal004.webp new file mode 100644 index 0000000000..df14aa223b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal004.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal006.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal006.png deleted file mode 100644 index c4cbb40526..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal006.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal006.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal006.webp new file mode 100644 index 0000000000..77274eaa4d Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal006.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal008.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal008.png deleted file mode 100644 index 416a8665c3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal008.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal008.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal008.webp new file mode 100644 index 0000000000..4f5c85d539 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal008.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal010.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal010.png deleted file mode 100644 index 6a38aeb8e0..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal010.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal010.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal010.webp new file mode 100644 index 0000000000..4adbad5fb8 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal010.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal012.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal012.png deleted file mode 100644 index 06eb10800b..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal012.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal012.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal012.webp new file mode 100644 index 0000000000..fc528eb53a Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal012.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal014.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal014.png deleted file mode 100644 index d48e6cbe70..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal014.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal014.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal014.webp new file mode 100644 index 0000000000..4fcb94ef98 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal014.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal016.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal016.png deleted file mode 100644 index e786d4b41f..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal016.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal016.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal016.webp new file mode 100644 index 0000000000..f5a93b0804 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal016.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal018.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal018.png deleted file mode 100644 index 7900e79379..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal018.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal018.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal018.webp new file mode 100644 index 0000000000..02e0e93241 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal018.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal020.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal020.png deleted file mode 100644 index b9a8ae92ce..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal020.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal020.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal020.webp new file mode 100644 index 0000000000..98e72da076 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal020.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal022.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal022.png deleted file mode 100644 index 36ca5da348..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal022.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal022.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal022.webp new file mode 100644 index 0000000000..e2d81a7334 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal022.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal024.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal024.png deleted file mode 100644 index e9cb163747..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal024.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal024.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal024.webp new file mode 100644 index 0000000000..7a1b164bf8 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal024.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal026.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal026.png deleted file mode 100644 index 94cc5f7df7..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal026.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal026.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal026.webp new file mode 100644 index 0000000000..5e6aaed2f8 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal026.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal028.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal028.png deleted file mode 100644 index 445363dd80..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal028.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal028.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal028.webp new file mode 100644 index 0000000000..6eb257211d Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal028.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal030.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal030.png deleted file mode 100644 index eb1fb46582..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal030.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal030.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal030.webp new file mode 100644 index 0000000000..a5edb81360 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal030.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal032.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal032.png deleted file mode 100644 index f6436dbe62..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal032.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal032.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal032.webp new file mode 100644 index 0000000000..08c77712cb Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal032.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal034.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal034.png deleted file mode 100644 index 0d7ffa6f5c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal034.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal034.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal034.webp new file mode 100644 index 0000000000..014091014e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal034.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal036.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal036.png deleted file mode 100644 index 750d393cc2..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal036.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal036.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal036.webp new file mode 100644 index 0000000000..1cc0f71711 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal036.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal038.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal038.png deleted file mode 100644 index 16bebd99b5..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal038.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal038.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal038.webp new file mode 100644 index 0000000000..049594af92 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal038.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal040.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal040.png deleted file mode 100644 index 46b5c85769..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal040.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal040.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal040.webp new file mode 100644 index 0000000000..b0a4fd1620 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal040.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal042.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal042.png deleted file mode 100644 index 2880a9ab5c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal042.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal042.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal042.webp new file mode 100644 index 0000000000..65dc7c66a7 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal042.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal044.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal044.png deleted file mode 100644 index da44cf10e2..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal044.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal044.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal044.webp new file mode 100644 index 0000000000..007f0c5bd2 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal044.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal046.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal046.png deleted file mode 100644 index 4862630569..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal046.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal046.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal046.webp new file mode 100644 index 0000000000..f64218b62e Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal046.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal048.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal048.png deleted file mode 100644 index e93ff4d347..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal048.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal048.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal048.webp new file mode 100644 index 0000000000..ce7aa5b09b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal048.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal050.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal050.png deleted file mode 100644 index 81e82d6527..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal050.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal050.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal050.webp new file mode 100644 index 0000000000..2483b5cc85 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal050.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal052.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal052.png deleted file mode 100644 index a6533bdc14..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal052.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal052.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal052.webp new file mode 100644 index 0000000000..2d6bbb3a28 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal052.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal054.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal054.png deleted file mode 100644 index b27fd34e9c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal054.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal054.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal054.webp new file mode 100644 index 0000000000..073c631800 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal054.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal056.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal056.png deleted file mode 100644 index 01464dc11d..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal056.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal056.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal056.webp new file mode 100644 index 0000000000..85ece9e86c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal056.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal058.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal058.png deleted file mode 100644 index 602a56d2ea..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal058.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal058.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal058.webp new file mode 100644 index 0000000000..8ea05e04c9 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal058.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal060.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal060.png deleted file mode 100644 index 7d3d5974fc..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal060.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal060.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal060.webp new file mode 100644 index 0000000000..7128d98d60 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal060.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal062.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal062.png deleted file mode 100644 index ed9f89a59d..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal062.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal062.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal062.webp new file mode 100644 index 0000000000..05d022bc56 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal062.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal064.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal064.png deleted file mode 100644 index c24cdf0e5a..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal064.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal064.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal064.webp new file mode 100644 index 0000000000..090a4dc753 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal064.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal066.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal066.png deleted file mode 100644 index f2df04fae5..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal066.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal066.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal066.webp new file mode 100644 index 0000000000..ff190083fd Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal066.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal068.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal068.png deleted file mode 100644 index 7158f54df7..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal068.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal068.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal068.webp new file mode 100644 index 0000000000..0071c33280 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal068.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal070.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal070.png deleted file mode 100644 index c3ccf74bb1..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal070.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal070.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal070.webp new file mode 100644 index 0000000000..b3fa5a1881 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal070.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal072.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal072.png deleted file mode 100644 index 77087a9982..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal072.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal072.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal072.webp new file mode 100644 index 0000000000..d5896737f6 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal072.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal074.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal074.png deleted file mode 100644 index 0c2632a433..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal074.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal074.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal074.webp new file mode 100644 index 0000000000..7ff64b5711 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal074.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal076.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal076.png deleted file mode 100644 index bb51e91c61..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal076.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal076.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal076.webp new file mode 100644 index 0000000000..ec56210221 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal076.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal078.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal078.png deleted file mode 100644 index 243dba5acb..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal078.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal078.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal078.webp new file mode 100644 index 0000000000..e6ec711416 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal078.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal080.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal080.png deleted file mode 100644 index c90b9dcc3a..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal080.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal080.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal080.webp new file mode 100644 index 0000000000..e8fa9e5d36 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal080.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal082.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal082.png deleted file mode 100644 index 493d4ac1e7..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal082.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal082.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal082.webp new file mode 100644 index 0000000000..d8ef9b37a7 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal082.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal084.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal084.png deleted file mode 100644 index a88c93cbc1..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal084.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal084.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal084.webp new file mode 100644 index 0000000000..da08363a67 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal084.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal086.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal086.png deleted file mode 100644 index 217e937ff9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal086.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal086.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal086.webp new file mode 100644 index 0000000000..c496ae20cc Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal086.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal088.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal088.png deleted file mode 100644 index 522e076acd..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal088.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal088.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal088.webp new file mode 100644 index 0000000000..27a41260df Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal088.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal090.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal090.png deleted file mode 100644 index 6b380c897d..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal090.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal090.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal090.webp new file mode 100644 index 0000000000..65f9302aed Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal090.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal092.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal092.png deleted file mode 100644 index cbff642fce..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal092.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal092.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal092.webp new file mode 100644 index 0000000000..f7651dbf15 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal092.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal094.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal094.png deleted file mode 100644 index 1665bfc1b3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal094.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal094.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal094.webp new file mode 100644 index 0000000000..dd5570c9a9 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal094.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal096.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal096.png deleted file mode 100644 index 7bfc5e05aa..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal096.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal096.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal096.webp new file mode 100644 index 0000000000..4680be2c1c Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal096.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal098.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal098.png deleted file mode 100644 index 2d4ebc3e36..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal098.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal098.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal098.webp new file mode 100644 index 0000000000..76723aa3f3 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal098.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal100.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal100.png deleted file mode 100644 index 62090b59f2..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal100.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal100.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal100.webp new file mode 100644 index 0000000000..49969ff350 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal100.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal102.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal102.png deleted file mode 100644 index 4dd808daf9..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal102.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal102.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal102.webp new file mode 100644 index 0000000000..533855c47f Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal102.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal104.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal104.png deleted file mode 100644 index ccd7dff56b..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal104.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal104.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal104.webp new file mode 100644 index 0000000000..ee31412bd6 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal104.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal106.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal106.png deleted file mode 100644 index 1cf753a89c..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal106.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal106.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal106.webp new file mode 100644 index 0000000000..8efe589ede Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal106.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal108.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal108.png deleted file mode 100644 index aed8878498..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal108.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal108.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal108.webp new file mode 100644 index 0000000000..1f6ff9aee6 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal108.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal110.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal110.png deleted file mode 100644 index 260778dd97..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal110.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal110.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal110.webp new file mode 100644 index 0000000000..3566c675d9 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal110.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal112.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal112.png deleted file mode 100644 index 28166faff3..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal112.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal112.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal112.webp new file mode 100644 index 0000000000..c9e23f1f69 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal112.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal114.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal114.png deleted file mode 100644 index 368e33cc77..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal114.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal114.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal114.webp new file mode 100644 index 0000000000..be60094f54 Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal114.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal116.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal116.png deleted file mode 100644 index 0ff0fd051b..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal116.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal116.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal116.webp new file mode 100644 index 0000000000..e5dff07f9a Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal116.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal118.png b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal118.png deleted file mode 100644 index ba86b3e81e..0000000000 Binary files a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal118.png and /dev/null differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal118.webp b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal118.webp new file mode 100644 index 0000000000..aba89b659b Binary files /dev/null and b/OCH/mogo-och-taxi-passenger/src/main/res/drawable/xiaozhi_normal118.webp differ diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_base_fragment.xml b/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_base_fragment.xml index f635f9274c..89374ce8b4 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_base_fragment.xml +++ b/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_base_fragment.xml @@ -147,4 +147,11 @@ android:layout_marginEnd="@dimen/dp_40" /> + + \ No newline at end of file diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_debug.xml b/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_debug.xml new file mode 100644 index 0000000000..3ac12defbe --- /dev/null +++ b/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_debug.xml @@ -0,0 +1,29 @@ + + + + + + + + + + \ No newline at end of file diff --git a/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_statusview.xml b/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_statusview.xml index 2a72067edc..c4e3758719 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_statusview.xml +++ b/OCH/mogo-och-taxi-passenger/src/main/res/layout/taxi_p_statusview.xml @@ -45,5 +45,12 @@ android:layout_width="@dimen/dp_300" android:layout_height="match_parent"/> + + \ No newline at end of file