diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java index f36d0a0d07..a70b54a1e6 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java @@ -1,12 +1,14 @@ package com.mogo.och.bus; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_BUS; + import android.content.Context; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.map.MogoMapUIController; import com.mogo.module.common.MogoApisHandler; @@ -36,7 +38,7 @@ public class OchBusProvider implements IMogoOCH { * 进入鹰眼模式,设置手势缩放地图失效 */ private void stepIntoVrMode(){ - Logger.d( TAG, "进入vr模式" ); + CallerLogger.INSTANCE.d( M_BUS + TAG, "进入vr模式" ); MogoMapUIController.getInstance() .openVrMode(false); } @@ -51,18 +53,18 @@ public class OchBusProvider implements IMogoOCH { private void showFragment() { if (busFragment == null) { - Logger.d(TAG, "准备add fragment======"); + CallerLogger.INSTANCE.d(TAG, "准备add fragment======"); busFragment = new OchBusFragment(); activity.getSupportFragmentManager().beginTransaction().add(containerId, busFragment).commitAllowingStateLoss(); return; } - Logger.d(TAG, "准备show fragment"); + CallerLogger.INSTANCE.d(TAG, "准备show fragment"); activity.getSupportFragmentManager().beginTransaction().show(busFragment).commitAllowingStateLoss(); } private void hideFragment() { if (busFragment != null) { - Logger.d(TAG, "准备hide fragment"); + CallerLogger.INSTANCE.d(TAG, "准备hide fragment"); activity.getSupportFragmentManager().beginTransaction().hide(busFragment).commitAllowingStateLoss(); } diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java index abaf285126..8322cd8a35 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java @@ -53,7 +53,7 @@ public class OchBusStationAdapter extends RecyclerView.Adapter { - Log.d(TAG, "长按显示状态工具栏"); + CallerLogger.INSTANCE.d(M_BUS + TAG, "长按显示状态工具栏"); Intent intent = new Intent(); intent.putExtra("oper", 52); MogoApisHandler.getInstance().getApis().getIntentManagerApi().invoke("com.mogo.mock", intent); @@ -299,7 +300,7 @@ public abstract class BaseOchBusTabFragment stationList, int currentStation , int nextStation, boolean isArrived) { - Log.d("MapMaker= ", "currentStation=" + currentStation + ",nextStation=" + nextStation + "isArrived=" + isArrived); + CallerLogger.INSTANCE.d(M_BUS + "MapMaker ", "currentStation=" + currentStation + ",nextStation=" + nextStation + "isArrived=" + isArrived); String currentStationName = null; String nextStationName = null; int startStationFlagVisibility = View.INVISIBLE; @@ -174,13 +172,13 @@ public class OchBusFragment extends BaseOchBusTabFragment aLong + 1)) @@ -44,7 +46,7 @@ public class OchBusModelLoopManager { public void stopHeartbeatLoop() { if (mHeartbeatDisposable != null) { - Logger.i(TAG, "stopHeartbeatLoop()"); + CallerLogger.INSTANCE.i(M_BUS + TAG, "stopHeartbeatLoop()"); mHeartbeatDisposable.dispose(); mHeartbeatDisposable = null; } diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusOrderModel.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusOrderModel.java index d3d7836fa3..556b70ce1a 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusOrderModel.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusOrderModel.java @@ -1,5 +1,6 @@ package com.mogo.och.bus.presenter; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_BUS; import static com.mogo.och.bus.constant.OchBusConst.STATION_STATUS_STOPPED; import android.content.Context; @@ -7,20 +8,18 @@ import android.location.Location; import android.os.Handler; import android.os.Message; import android.text.TextUtils; -import android.util.Log; import com.mogo.commons.AbsMogoApplication; import com.mogo.commons.debug.DebugConfig; import com.mogo.commons.voice.AIAssist; import com.mogo.eagle.core.data.BaseData; import com.mogo.eagle.core.data.autopilot.AutopilotControlParameters; -import com.mogo.eagle.core.data.autopilot.AutopilotStationInfo; import com.mogo.eagle.core.data.config.FunctionBuildConfig; import com.mogo.eagle.core.data.map.MogoLocation; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotManager; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.mogo.toast.TipToast; import com.mogo.eagle.core.utilcode.util.NetworkUtils; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; @@ -148,31 +147,31 @@ public class OchBusOrderModel { public void accept(Throwable e) { if (e instanceof UndeliverableException) { e = e.getCause(); - Log.d(TAG,"UndeliverableException"); + CallerLogger.INSTANCE.d(M_BUS + TAG,"UndeliverableException"); } if ((e instanceof IOException)) {// // fine, irrelevant network problem or API that throws on cancellation - Log.d(TAG,"IOException"); + CallerLogger.INSTANCE.d(M_BUS + TAG,"IOException"); return; } if (e instanceof InterruptedException) { // fine, some blocking code was interrupted by a dispose call - Log.d(TAG,"InterruptedException"); + CallerLogger.INSTANCE.d(M_BUS + TAG,"InterruptedException"); return; } if ((e instanceof NullPointerException) || (e instanceof IllegalArgumentException)) { // that's likely a bug in the application - Log.d(TAG,"NullPointerException or IllegalArgumentException"); + CallerLogger.INSTANCE.d(M_BUS + TAG,"NullPointerException or IllegalArgumentException"); Thread.currentThread().getUncaughtExceptionHandler().uncaughtException(Thread.currentThread(), e); return; } if (e instanceof IllegalStateException) { // that's a bug in RxJava or in a custom operator - Log.d(TAG,"IllegalStateException"); + CallerLogger.INSTANCE.d(M_BUS + TAG,"IllegalStateException"); Thread.currentThread().getUncaughtExceptionHandler().uncaughtException(Thread.currentThread(), e); return; } - Log.d(TAG,"Undeliverable exception"); + CallerLogger.INSTANCE.d(M_BUS + TAG,"Undeliverable exception"); } }); @@ -216,7 +215,7 @@ public class OchBusOrderModel { @Override public void onSuccess(OchBusOrdersResponse o) { if (o.data != null && o.data.orders != null && o.data.orders.size() > 0) { - Logger.d( TAG, "获取到bus订单数据: " + o.data.orders.toString() ); + CallerLogger.INSTANCE.d( M_BUS + TAG, "获取到bus订单数据: " + o.data.orders.toString() ); List busOrders = o.data.orders; for (int i = 0; i < busOrders.size(); i++) { OchBusOrder order = busOrders.get(i); @@ -231,7 +230,7 @@ public class OchBusOrderModel { e.printStackTrace(); tailNum = order.getPassengerPhone(); } - Logger.d(TAG, "TTS:" + tailNum); + CallerLogger.INSTANCE.d(M_BUS + TAG, "TTS:" + tailNum); AIAssist.getInstance(mContext).speakTTSVoice("接到新订单,尾号 " + tailNum + " 上车站点为 " + order.getStartStationName()); prevBusOrderNos.add(order.getOrderNo()); @@ -284,11 +283,11 @@ public class OchBusOrderModel { }; // 自车定位 - private IMogoCarLocationChangedListener2 mCarLocationChangedListener2 = new IMogoCarLocationChangedListener2() { + private final IMogoCarLocationChangedListener2 mCarLocationChangedListener2 = new IMogoCarLocationChangedListener2() { @Override public void onCarLocationChanged2( Location location ) { -// Log.d(TAG,"location = "+location.getLongitude()+","+location.getLatitude()); +// CallerLogger.INSTANCE.d(M_BUS + TAG,"location = "+location.getLongitude()+","+location.getLatitude()); IMogoServiceApis apis = MogoApisHandler.getInstance().getApis(); MogoLocation mogoLocation = new MogoLocation(); mogoLocation.setAccuracy(location.getAccuracy()); @@ -320,7 +319,7 @@ public class OchBusOrderModel { * 查询小巴路线 */ public void queryBusRoutes() { - Logger.d( TAG, "查询小巴路线"); + CallerLogger.INSTANCE.d(M_BUS + TAG, "查询小巴路线"); OCHBusServiceManager.getInstance().queryBusRoutes(mContext, new OCHServiceCallback() { @Override public void onSuccess(OchBusRoutesResponse data) { @@ -330,7 +329,7 @@ public class OchBusOrderModel { || data.getResult().getSites().isEmpty() ) { return; } - Logger.d( TAG, "获取到小巴路线数据: " + data ); + CallerLogger.INSTANCE.d(M_BUS + TAG, "获取到小巴路线数据: " + data ); renderBusStationsStatus( data.getResult()); } @Override @@ -346,12 +345,12 @@ public class OchBusOrderModel { * 测试、重置站点状态 */ public void debugResetStationStatus() { - Logger.d( TAG, "测试、重置站点状态"); + CallerLogger.INSTANCE.d( M_BUS + TAG, "测试、重置站点状态"); OCHBusServiceManager.getInstance().resetStationStatus(mContext, currentLineId , new OCHServiceCallback() { @Override public void onSuccess(OchBusRoutesResponse o) { - Logger.d(TAG, "获取到小巴路线数据: " + o); + CallerLogger.INSTANCE.d(M_BUS + TAG, "获取到小巴路线数据: " + o); isGoingToNextStation = false; if (o.getResult() == null || o.getResult().getSites() == null || o.getResult().getSites().isEmpty()) { return; @@ -372,7 +371,7 @@ public class OchBusOrderModel { * 离站上报 */ public void leaveStation(boolean isOneWayOver,boolean isRestart){ - Log.d(TAG,"leaveStation-backgroundCurrentStationIndex = "+backgroundCurrentStationIndex); + CallerLogger.INSTANCE.d(M_BUS + TAG,"leaveStation-backgroundCurrentStationIndex = "+backgroundCurrentStationIndex); OCHBusServiceManager.getInstance().leaveStation(mContext, stationList.get(backgroundCurrentStationIndex).getSeq() , stationList.get(backgroundCurrentStationIndex).getSiteId(), new OCHServiceCallback() { @Override @@ -381,11 +380,11 @@ public class OchBusOrderModel { return; } if (!isOneWayOver){ - Logger.d( TAG, "自动驾驶开启开往下一站====" ); + CallerLogger.INSTANCE.d( M_BUS + TAG, "自动驾驶开启开往下一站====" ); //需要更改当前站和下一站的状态 然后渲染 RenderLeaveStationSuccess(o.getResult(),isRestart); }else { - Logger.d( TAG, "单程真的结束了====" ); + CallerLogger.INSTANCE.d( M_BUS + TAG, "单程真的结束了====" ); isGoingToNextStation = false; currentStationIndex = 0; backgroundCurrentStationIndex = 0; @@ -443,7 +442,7 @@ public class OchBusOrderModel { currentAutopilot.endLatLon = new AutopilotControlParameters .AutoPilotLonLat( nextStation.getLat(), nextStation.getLon() ); currentAutopilot.vehicleType = VEHICLE_TYPE; - Logger.d( TAG, "开启自动驾驶====" + currentAutopilot.toString() + CallerLogger.INSTANCE.d( M_BUS + TAG, "开启自动驾驶====" + currentAutopilot.toString() +" startLatLon="+currentStation.getName()+",endLatLon="+nextStation.getName()); CallerAutoPilotManager.INSTANCE.startAutoPilot(currentAutopilot); if (mControllerStatusCallback != null) { @@ -455,13 +454,13 @@ public class OchBusOrderModel { * 到站后重置站点状态 */ private void arriveSiteStation(boolean isRestart) { - Log.d(TAG,"arriveSiteStation-currentStationIndex = "+currentStationIndex); + CallerLogger.INSTANCE.d(M_BUS + TAG,"arriveSiteStation-currentStationIndex = "+currentStationIndex); OCHBusServiceManager.getInstance().arriveSiteStation(mContext , stationList.get(currentStationIndex).getSeq(), stationList.get(currentStationIndex).getSiteId() , new OCHServiceCallback() { @Override public void onSuccess(BaseData o) { - Log.d(TAG,"arriveSiteStation success"); + CallerLogger.INSTANCE.d(M_BUS + TAG,"arriveSiteStation success"); if (!isRestart){ renderArriveBusStation(); } @@ -491,7 +490,7 @@ public class OchBusOrderModel { * 查询到站下车乘客 */ private void queryStationLeaveAwayPassengers() { - Logger.d( TAG, "查询到站下车乘客"); + CallerLogger.INSTANCE.d( M_BUS + TAG, "查询到站下车乘客"); OCHBusServiceManager.getInstance().queryStationLeaveAwayPassengers(mContext , stationList.get(currentStationIndex).getSeq(), stationList.get(currentStationIndex).getSiteId() @@ -565,14 +564,14 @@ public class OchBusOrderModel { * 查询运营状态 */ public void queryOperationStatus() { - Logger.d( TAG, "查询运营状态"); + CallerLogger.INSTANCE.d( M_BUS + TAG, "查询运营状态"); OCHBusServiceManager.getInstance().queryOperationStatus(mContext , new OCHServiceCallback() { @Override public void onSuccess(OchBusOperationStatusResponse o) { if ( o.data != null ) { mIsWorking = o.data.serviceStatus == 1; - Logger.d( TAG, "查询运营状态 result.status: " + o.data.serviceStatus); + CallerLogger.INSTANCE.d( M_BUS + TAG, "查询运营状态 result.status: " + o.data.serviceStatus); startOrStopOrderLoop(mIsWorking); } carOperationStatusCallback.changeOperationStatus(isWorking()); @@ -625,7 +624,7 @@ public class OchBusOrderModel { } backgroundCurrentStationIndex = currentStationIndex; OchBusStation currentStation = stationList.get(currentStationIndex); - Logger.d( TAG, "渲染站点信息服务端currentStationIndex="+currentStationIndex + CallerLogger.INSTANCE.d( M_BUS + TAG, "渲染站点信息服务端currentStationIndex="+currentStationIndex +" isLeaving()="+currentStation.isLeaving()); //当前站点是始发站,告诉服务端到达始发站。 如果没有这个节点, 服务器不知道始发站到达状态 // ,订单开始站下在始发站的状态流转有问题 @@ -637,7 +636,7 @@ public class OchBusOrderModel { && currentStationIndex < stationList.size()-1) || (stationList.get(0).isLeaving() || stationList.get(stationList.size() -1).isLeaving()))){//行驶过程中设置美化 FunctionBuildConfig.isIgnoreConditionsDrawAutopilotTrajectoryData = true; - Logger.d(TAG, "美化模式-ignore:置为true(每次滑动出发)"); + CallerLogger.INSTANCE.d(M_BUS + TAG, "美化模式-ignore:置为true(每次滑动出发)"); } if (refreshBusStationsCallback != null){ if (currentStation.isLeaving()){//如果服务端的当前站是leaving状态,展示当前站需要+1 @@ -660,7 +659,7 @@ public class OchBusOrderModel { * @param lastStopStation */ private void resetNextStopStation( int lastStopStation ) { - Logger.d( TAG, "重置下一站"); + CallerLogger.INSTANCE.d( M_BUS + TAG, "重置下一站"); int nextStopStation = getNextStopStation(); if ( nextStopStation < 0 ) { return; @@ -705,7 +704,7 @@ public class OchBusOrderModel { * 在踩刹车、控制方向盘等操作后,会停止自动驾驶,重启自动驾驶的话相当于重新设置自动驾驶目的地 */ public void restartAutopilot() { - Logger.d( TAG, "重启自动驾驶===" + isGoingToNextStation ); + CallerLogger.INSTANCE.d( M_BUS + TAG, "重启自动驾驶===" + isGoingToNextStation ); if ( isGoingToNextStation ) { autoDriveToNextStation( true ); } @@ -717,7 +716,7 @@ public class OchBusOrderModel { * @param awayPassengersResponse */ private void playLeavePassengersMsg( QueryLeaveAwayPassengersResponse awayPassengersResponse ) { - Logger.d( TAG, "播报下车乘客信息currentStationIndex="+currentStationIndex); + CallerLogger.INSTANCE.d( M_BUS + TAG, "播报下车乘客信息currentStationIndex="+currentStationIndex); if ( currentStationIndex > stationList.size() - 1 ) { return; @@ -730,7 +729,7 @@ public class OchBusOrderModel { } if ( awayPassengersResponse == null || awayPassengersResponse.data == null || awayPassengersResponse.data.orders == null || awayPassengersResponse.data.orders.isEmpty() ) { - Logger.d( TAG, "播报下车乘客信息为null"); + CallerLogger.INSTANCE.d( M_BUS + TAG, "播报下车乘客信息为null"); } else { builder.append( ",请尾号为 " ); for ( QueryLeaveAwayPassengersResponse.LeaveAwayPassenger leaveAwayPassenger : awayPassengersResponse.data.orders ) { @@ -749,7 +748,7 @@ public class OchBusOrderModel { builder.append( "的乘客下车" ); } builder.append(",带好随身物品,下车请注意安全"); - Logger.d(TAG, "TTS:" + builder.toString()); + CallerLogger.INSTANCE.d(M_BUS + TAG, "TTS:" + builder.toString()); AIAssist.getInstance( mContext ).speakTTSVoice( builder.toString() ); } @@ -757,7 +756,7 @@ public class OchBusOrderModel { * 修改小巴运营状态 */ public void onChangeOperationStatus() { - Logger.d( TAG, "修改小巴运营状态"); + CallerLogger.INSTANCE.d( M_BUS + TAG, "修改小巴运营状态"); if (isWorking()){//收车 stopTakeOrder(); }else {//出车 @@ -769,13 +768,13 @@ public class OchBusOrderModel { * 行程结束 */ private void travelOver() { -// Logger.d( TAG, "行程结束"); +// CallerLogger.INSTANCE.d( M_BUS + TAG, "行程结束"); if ( currentStationIndex >= stationList.size() ) { - Logger.e( TAG, "travel over index out of station list" ); + CallerLogger.INSTANCE.e( M_BUS + TAG, "travel over index out of station list" ); return; } - Logger.d( TAG, "单程结束====" ); + CallerLogger.INSTANCE.d( M_BUS + TAG, "单程结束====" ); CallerAutoPilotManager.INSTANCE.cancelAutoPilot(); AIAssist.getInstance( mContext ).speakTTSVoice( "感谢您体验'蘑菇车联'无人驾驶小巴车,请您携带好随身物品,我们下次再见" ); leaveStation(true,true); @@ -791,14 +790,14 @@ public class OchBusOrderModel { */ public void onArriveAt( MessagePad.ArrivalNotification data){ if ( currentStationIndex > stationList.size() - 1 ) { - Logger.e( TAG, "到站异常,取消后续操作结束" ); + CallerLogger.INSTANCE.e( M_BUS + TAG, "到站异常,取消后续操作结束" ); return; } if (FunctionBuildConfig.isDemoMode && currentStationIndex == stationList.size() - 1){//到达最后一站结束美化 FunctionBuildConfig.isIgnoreConditionsDrawAutopilotTrajectoryData = false; - Logger.d(TAG, "美化模式-ignore:置为false(到最后一站)"); + CallerLogger.INSTANCE.d(M_BUS + TAG, "美化模式-ignore:置为false(到最后一站)"); } - Logger.d( TAG, "到站====currentStationIndex=" + currentStationIndex); + CallerLogger.INSTANCE.d( M_BUS + TAG, "到站====currentStationIndex=" + currentStationIndex); isGoingToNextStation = false; // 到达站点后,更新站点状态 // currentStationIndex = getNextStopStation(); @@ -835,7 +834,7 @@ public class OchBusOrderModel { } private void startOrStopOrderLoop(boolean start) { - Logger.d(TAG, "startOrStopOrderLoop() " + start); + CallerLogger.INSTANCE.d(M_BUS + TAG, "startOrStopOrderLoop() " + start); if (start) { OchBusModelLoopManager.getInstance().startHeartbeatLoop(); } else { diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusPresenter.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusPresenter.java index b1886bb4fc..00664fb7d5 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusPresenter.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/presenter/OchBusPresenter.java @@ -1,8 +1,9 @@ package com.mogo.och.bus.presenter; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_BUS; + import android.location.Location; import android.os.Looper; -import android.util.Log; import androidx.annotation.NonNull; import androidx.lifecycle.LifecycleOwner; @@ -12,7 +13,7 @@ import com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo; import com.mogo.eagle.core.data.config.FunctionBuildConfig; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.och.bus.bean.OchBusStation; import com.mogo.och.bus.callback.CarOperationStatusCallback; @@ -116,14 +117,14 @@ public class OchBusPresenter extends Presenter mStationList.addAll(stationList); mCurrentStation = currentStation; functionDemoModeChange(); - Log.d("OchBusOrderModel =", " mCurrentStation =" + mCurrentStation); + CallerLogger.INSTANCE.d(M_BUS + "OchBusOrderModel =", " mCurrentStation =" + mCurrentStation); if (mView != null) { mView.refreshBusStations(stationList, currentStation, nextStation, isArrived); } } private void functionDemoModeChange() { -// Log.d("OchBusOrderModel ="," functionDemoModeChange ="+mCurrentStation); +// CallerLogger.INSTANCE.d(M_BUS + "OchBusOrderModel ="," functionDemoModeChange ="+mCurrentStation); if (FunctionBuildConfig.isDemoMode && ( (mCurrentStation > 0 && mCurrentStation < mStationList.size() - 1) @@ -158,7 +159,7 @@ public class OchBusPresenter extends Presenter public void onAutopilotStatusResponse(@NotNull AutopilotStatusInfo autopilotStatusInfo) { if (autopilotStatusInfo == null) return; int state = autopilotStatusInfo.getState(); - Logger.d(TAG, "onStateChange: " + state + "currentAutopilotStatus = " + currentAutopilotStatus); + CallerLogger.INSTANCE.d(M_BUS + TAG, "onStateChange: " + state + "currentAutopilotStatus = " + currentAutopilotStatus); switch (state) { case IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_ENABLE: if (currentAutopilotStatus != IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_ENABLE) { @@ -180,7 +181,7 @@ public class OchBusPresenter extends Presenter ) ) ) { - Log.d("OchBusOrderModel=", "有美化功能"); + CallerLogger.INSTANCE.d(M_BUS + "OchBusOrderModel=", "有美化功能"); return; } // 改变UI自动驾驶状态 @@ -211,7 +212,7 @@ public class OchBusPresenter extends Presenter ) ) ) { - Log.d("OchBusOrderModel=", "有美化功能"); + CallerLogger.INSTANCE.d(M_BUS + "OchBusOrderModel=", "有美化功能"); return; } mView.onAutopilotEnableChange(false); diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/receiver/TestOchBusBroadcastReceiver.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/receiver/TestOchBusBroadcastReceiver.java index 132b5a87a6..92cf8694ad 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/receiver/TestOchBusBroadcastReceiver.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/receiver/TestOchBusBroadcastReceiver.java @@ -1,10 +1,12 @@ package com.mogo.och.bus.receiver; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_BUS; + import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.och.bus.constant.OchBusConst; /** @@ -23,7 +25,7 @@ public class TestOchBusBroadcastReceiver extends BroadcastReceiver { try { this.mContext = context; int sceneType = intent.getIntExtra(OchBusConst.BROADCAST_TEST_BUS_CONTROL_TYPE_EXTRA_KEY, 0); - Logger.d(TAG, "sceneType:" + sceneType); + CallerLogger.INSTANCE.d(M_BUS + TAG, "sceneType:" + sceneType); // 分发场景 dispatchSceneTest(sceneType); diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxi.java b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxi.java index bb85c3cf92..cb96b48ac4 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxi.java +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxi.java @@ -1,12 +1,14 @@ package com.mogo.och.taxi.passenger; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI_P; + import android.content.Context; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.map.MogoMapUIController; import com.mogo.module.common.MogoApisHandler; @@ -34,7 +36,7 @@ class MogoOCHTaxi implements IMogoOCH, IMogoStatusChangedListener { private int mContainerId; @Override public void init( Context context ) { - Logger.d( TAG, "init" ); + CallerLogger.INSTANCE.d( M_TAXI_P + TAG, "init" ); MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.VR_MODE,this); MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.TOP_VIEW,this); } @@ -43,19 +45,19 @@ class MogoOCHTaxi implements IMogoOCH, IMogoStatusChangedListener { * 进入鹰眼模式,设置手势缩放地图失效 */ private void stepIntoVrMode() { - Logger.d( TAG, "进入vr模式" ); + CallerLogger.INSTANCE.d( M_TAXI_P + TAG, "进入vr模式" ); MogoMapUIController.getInstance() .openVrMode( false ); } private void showFragment() { if (ochTaxiPassengerFragment == null) { - Logger.d(TAG, "准备add fragment======"); + CallerLogger.INSTANCE.d(M_TAXI_P + TAG, "准备add fragment======"); ochTaxiPassengerFragment = new TaxiPassengerBaseFragment(); mActivity.getSupportFragmentManager().beginTransaction().add(mContainerId, ochTaxiPassengerFragment).commitAllowingStateLoss(); return; } - Logger.d(TAG, "准备show fragment"); + CallerLogger.INSTANCE.d(M_TAXI_P + TAG, "准备show fragment"); mActivity.getSupportFragmentManager().beginTransaction().show(ochTaxiPassengerFragment).commitAllowingStateLoss(); } diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModel.java b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModel.java index 9e254b5f5a..95cba1e2f9 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModel.java +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModel.java @@ -1,5 +1,7 @@ package com.mogo.och.taxi.passenger.model; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI_P; + import android.content.Context; import android.content.Intent; import android.location.Location; @@ -24,7 +26,7 @@ import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListener import com.mogo.eagle.core.function.call.autopilot.CallerAutopilotPlanningListenerManager; import com.mogo.eagle.core.function.call.v2x.CallLimitingVelocityListenerManager; import com.mogo.eagle.core.utilcode.mogo.AppIdentityModeUtils; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr; import com.mogo.eagle.core.utilcode.util.NetworkUtils; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; @@ -216,7 +218,7 @@ public class TaxiPassengerModel implements IOCHTaxiPassengerNaviChangedCallback } private void startOrStopOrderLoop(boolean start) { - Logger.d(TAG, "startOrStopOrderLoop() " + start); + CallerLogger.INSTANCE.d(M_TAXI_P + TAG, "startOrStopOrderLoop() " + start); if (start) { TaxiPassengerModelLoopManager.getInstance().startInAndWaitOrdersLoop(); // TaxiPassengerModelLoopManager.getInstance().startHeartbeatLoop(); @@ -389,10 +391,10 @@ public class TaxiPassengerModel implements IOCHTaxiPassengerNaviChangedCallback } //监听网络变化,避免启动机器时无网导致无法更新订单信息 - private IMogoIntentListener mNetWorkIntentListener = new IMogoIntentListener() { + private final IMogoIntentListener mNetWorkIntentListener = new IMogoIntentListener() { @Override public void onIntentReceived( String intentStr, Intent intent ) { - Logger.d( TAG, "onIntentReceived = %s", intentStr ); + CallerLogger.INSTANCE.d( M_TAXI_P + TAG, "onIntentReceived = %s", intentStr ); if ( ConnectivityManager.CONNECTIVITY_ACTION.equals( intentStr ) ) { if ( NetworkUtils.isConnected( mContext ) ) { if (AppIdentityModeUtils.isDriver(FunctionBuildConfig.appIdentityMode)) { @@ -403,7 +405,7 @@ public class TaxiPassengerModel implements IOCHTaxiPassengerNaviChangedCallback } }; - private IMogoStatusChangedListener mMogoStatusChangedListener = new IMogoStatusChangedListener() { + private final IMogoStatusChangedListener mMogoStatusChangedListener = new IMogoStatusChangedListener() { // VR mode变更回调 @Override public void onStatusChanged(StatusDescriptor descriptor, boolean isTrue) { @@ -417,15 +419,15 @@ public class TaxiPassengerModel implements IOCHTaxiPassengerNaviChangedCallback } }; - private IMogoLifecycleListener mSocketLifeCycleLisnter = new IMogoLifecycleListener() { + private final IMogoLifecycleListener mSocketLifeCycleLisnter = new IMogoLifecycleListener() { @Override - public void onConnectFailure() { Logger.e(TAG,"socket onConnectFailure"); } + public void onConnectFailure() { CallerLogger.INSTANCE.e(M_TAXI_P + TAG,"socket onConnectFailure"); } @Override - public void onConnectSuccess() { Logger.e(TAG,"socket onConnectSuccess"); } + public void onConnectSuccess() { CallerLogger.INSTANCE.e(M_TAXI_P + TAG,"socket onConnectSuccess"); } @Override - public void onConnectLost() { Logger.e(TAG,"socket onConnectLost"); } + public void onConnectLost() { CallerLogger.INSTANCE.e(M_TAXI_P + TAG,"socket onConnectLost"); } }; // 自车定位 @@ -476,7 +478,7 @@ public class TaxiPassengerModel implements IOCHTaxiPassengerNaviChangedCallback public void onAutopilotStatusResponse(@NotNull AutopilotStatusInfo autopilotStatusInfo) { if (autopilotStatusInfo == null) return; int state = autopilotStatusInfo.getState(); - Logger.d( TAG, "state = %s", state ); + CallerLogger.INSTANCE.d( M_TAXI_P + TAG, "state = %s", state ); if (state == IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_RUNNING) { if (mADASStatusCallback != null) mADASStatusCallback.onAutopilotRunning(); if (mCurrentOCHOrder != null diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModelLoopManager.java b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModelLoopManager.java index 6d07770f9e..c7546b3554 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModelLoopManager.java +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerModelLoopManager.java @@ -1,6 +1,8 @@ package com.mogo.och.taxi.passenger.model; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI_P; + +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.och.taxi.passenger.constant.TaxiPassengerConst; import java.util.concurrent.TimeUnit; @@ -34,7 +36,7 @@ public class TaxiPassengerModelLoopManager { if (mInAndWaitServiceDisposable != null && !mInAndWaitServiceDisposable.isDisposed()) { return; } - Logger.i(TAG, "startInAndWaitOrdersLoop()"); + CallerLogger.INSTANCE.i(M_TAXI_P + TAG, "startInAndWaitOrdersLoop()"); mInAndWaitServiceDisposable = Observable.interval(TaxiPassengerConst.LOOP_DELAY, TaxiPassengerConst.LOOP_PERIOD_2S, TimeUnit.MILLISECONDS) .map((aLong -> aLong + 1)) @@ -45,7 +47,7 @@ public class TaxiPassengerModelLoopManager { public void stopInAndWaitOrdersLoop() { if (mInAndWaitServiceDisposable != null) { - Logger.i(TAG, "stopInAndWaitOrdersLoop()"); + CallerLogger.INSTANCE.i(M_TAXI_P + TAG, "stopInAndWaitOrdersLoop()"); mInAndWaitServiceDisposable.dispose(); mInAndWaitServiceDisposable = null; } @@ -56,7 +58,7 @@ public class TaxiPassengerModelLoopManager { // if (mHeartbeatDisposable != null && !mHeartbeatDisposable.isDisposed()) { // return; // } -// Logger.i(TAG, "startHeartbeatLoop()"); +// CallerLogger.INSTANCE.i(M_TAXI_P + TAG, "startHeartbeatLoop()"); // mHeartbeatDisposable = Observable.interval(TaxiPassengerConst.LOOP_DELAY, // TaxiPassengerConst.LOOP_PERIOD_60S, TimeUnit.MILLISECONDS) // .map((aLong -> aLong + 1)) @@ -67,7 +69,7 @@ public class TaxiPassengerModelLoopManager { // public void stopHeartbeatLoop() { // if (mHeartbeatDisposable != null) { -// Logger.i(TAG, "stopHeartbeatLoop()"); +// CallerLogger.INSTANCE.i(M_TAXI_P + TAG, "stopHeartbeatLoop()"); // mHeartbeatDisposable.dispose(); // mHeartbeatDisposable = null; // } diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerNaviToDestinationModel.java b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerNaviToDestinationModel.java index d48aef1510..5bf3a74b25 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerNaviToDestinationModel.java +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/model/TaxiPassengerNaviToDestinationModel.java @@ -1,5 +1,7 @@ package com.mogo.och.taxi.passenger.model; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI_P; + import android.Manifest; import android.content.Context; import android.widget.Toast; @@ -22,7 +24,7 @@ import com.amap.api.navi.model.AimLessModeStat; import com.amap.api.navi.model.NaviInfo; import com.amap.api.navi.model.NaviLatLng; import com.autonavi.tbt.TrafficFacilityInfo; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr; import com.mogo.eagle.core.utilcode.util.NetworkUtils; import com.mogo.och.taxi.passenger.callback.IOCHTaxiPassengerNaviChangedCallback; @@ -123,14 +125,14 @@ public class TaxiPassengerNaviToDestinationModel implements AMapNaviListener { @Override public void onCalculateRouteSuccess(int[] ints) { //多路径算路成功回调 - Logger.d(TAG,"onCalculateRouteSuccess"); + CallerLogger.INSTANCE.d(M_TAXI_P + TAG,"onCalculateRouteSuccess"); mAMapNavi.startNavi(NaviType.GPS); } @Override public void onNaviInfoUpdate(NaviInfo naviinfo) { //导航过程中的信息更新,请看NaviInfo的具体说明 - Logger.d(TAG,"naviinfo = "+naviinfo.getPathRetainDistance()+" ,"+naviinfo.getPathRetainTime() + CallerLogger.INSTANCE.d(M_TAXI_P + TAG,"naviinfo = "+naviinfo.getPathRetainDistance()+" ,"+naviinfo.getPathRetainTime() +" ,"+naviinfo.getCurrentRoadName()); if (mFirstcalculateDriveRoute == 0 && SharedPrefsMgr.getInstance(mContext).getInt(TaxiPassengerConst.SP_KEY_ORDER_SUM_DIS,0) == 0){ @@ -175,8 +177,8 @@ public class TaxiPassengerNaviToDestinationModel implements AMapNaviListener { // }else if (result.getErrorCode() == 6){ // TipToast.longTip("终点坐标错误"); // } - Logger.i(TAG, "路线计算失败:错误码=" + result.getErrorCode() + ",Error Message= " + result.getErrorDetail()); - Logger.i(TAG, "错误码详细链接见:http://lbs.amap.com/api/android-navi-sdk/guide/tools/errorcode/"); + CallerLogger.INSTANCE.i(M_TAXI_P + TAG, "路线计算失败:错误码=" + result.getErrorCode() + ",Error Message= " + result.getErrorDetail()); + CallerLogger.INSTANCE.i(M_TAXI_P + TAG, "错误码详细链接见:http://lbs.amap.com/api/android-navi-sdk/guide/tools/errorcode/"); } @Override public void onStartNavi(int type) { diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/network/TaxiPassengerServiceManager.java b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/network/TaxiPassengerServiceManager.java index 47b2401b74..e82c275984 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/network/TaxiPassengerServiceManager.java +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/network/TaxiPassengerServiceManager.java @@ -1,15 +1,15 @@ package com.mogo.och.taxi.passenger.network; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI_P; + import android.content.Context; import com.mogo.cloud.passport.MoGoAiCloudClientConfig; import com.mogo.eagle.core.data.BaseData; -import com.mogo.eagle.core.function.call.telematic.CallerTelematicManager; import com.mogo.eagle.core.network.RequestOptions; import com.mogo.eagle.core.network.SubscribeImpl; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.module.common.MogoApisHandler; -import com.mogo.och.taxi.passenger.bean.TaxiPassengerCarHeartbeatReqBean; import com.mogo.och.taxi.passenger.bean.TaxiPassengerOrderQueryReqBean; import com.mogo.och.taxi.passenger.bean.TaxiPassengerOrderQueryRespBean; import com.mogo.och.taxi.passenger.bean.TaxiPassengerOrdersInServiceQueryRespBean; @@ -117,7 +117,7 @@ public class TaxiPassengerServiceManager { @Override public void onSuccess(T o) { super.onSuccess(o); - Logger.e(TAG,apiName + ": onSuccess() " + o.msg); + CallerLogger.INSTANCE.e(M_TAXI_P + TAG,apiName + ": onSuccess() " + o.msg); if (callback != null) { callback.onSuccess(o); } @@ -126,7 +126,7 @@ public class TaxiPassengerServiceManager { @Override public void onError(Throwable e) { super.onError(e); - Logger.e(TAG,apiName + ": onError() " + e.getMessage()); + CallerLogger.INSTANCE.e(M_TAXI_P + TAG,apiName + ": onError() " + e.getMessage()); if (callback != null) { callback.onError(); } @@ -135,7 +135,7 @@ public class TaxiPassengerServiceManager { @Override public void onError(String message, int code) { super.onError(message, code); - Logger.e(TAG,String.format(apiName + ": onError() code = %d; message = %s;", code, message)); + CallerLogger.INSTANCE.e(M_TAXI_P + TAG,String.format(apiName + ": onError() code = %d; message = %s;", code, message)); if (callback != null) { callback.onFail(code, message); } diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/presenter/BaseTaxiPassengerPresenter.java b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/presenter/BaseTaxiPassengerPresenter.java index bc4f790b38..8b48a0142f 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/presenter/BaseTaxiPassengerPresenter.java +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/presenter/BaseTaxiPassengerPresenter.java @@ -1,8 +1,9 @@ package com.mogo.och.taxi.passenger.presenter; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI_P; + import android.location.Location; import android.os.Looper; -import android.util.Log; import androidx.annotation.NonNull; import androidx.lifecycle.LifecycleOwner; @@ -11,7 +12,7 @@ import com.mogo.commons.AbsMogoApplication; import com.mogo.commons.mvp.Presenter; import com.mogo.commons.voice.AIAssist; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.och.taxi.passenger.R; @@ -46,7 +47,7 @@ public class BaseTaxiPassengerPresenter extends Presenter 0) { drawablePolyline(latLngList); } else { @@ -467,7 +468,7 @@ public class TaxiPassengerServingOrderFragment extends */ private void updateSpeedView(float newSpeed) { int speed = (int) (Math.abs(newSpeed) * 3.6F); // 倒车时工控机反馈定位信息中speed为负值 - Logger.d(TAG,"mLimitingVelocity = "+mLimitingVelocity); + CallerLogger.INSTANCE.d(M_TAXI_P + TAG,"mLimitingVelocity = "+mLimitingVelocity); if (speed < mLimitingVelocity) { mTPSpeedTv.setText(getSpeedTextStyle(String.valueOf(speed), true)); mSpeedLayoutBg.setBackgroundResource(R.drawable.taxi_p_speed_light_green_bg); @@ -518,7 +519,7 @@ public class TaxiPassengerServingOrderFragment extends */ private void startIvCompass(float bearing) { bearing = 360 - bearing; - Log.d(TAG, "startIvCompass: " + bearing); + CallerLogger.INSTANCE.d(M_TAXI_P + TAG, "startIvCompass: " + bearing); rotateAnimation = new RotateAnimation(lastBearing, bearing, Animation.RELATIVE_TO_SELF , 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); rotateAnimation.setFillAfter(true); diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java index fe3f042400..f11bd5c1c2 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java @@ -1,13 +1,14 @@ package com.mogo.och.taxi; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.content.Context; -import android.util.Log; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.map.MogoMapUIController; import com.mogo.module.common.MogoApisHandler; @@ -35,7 +36,7 @@ class MogoOCHTaxi implements IMogoOCH , IMogoStatusChangedListener { private int mContainerId; @Override public void init( Context context ) { - Logger.d( TAG, "init" ); + CallerLogger.INSTANCE.d( M_TAXI + TAG, "init" ); MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.VR_MODE,this); MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.TOP_VIEW,this); } @@ -44,19 +45,19 @@ class MogoOCHTaxi implements IMogoOCH , IMogoStatusChangedListener { * 进入鹰眼模式,设置手势缩放地图失效 */ private void stepIntoVrMode() { - Logger.d( TAG, "进入vr模式" ); + CallerLogger.INSTANCE.d( M_TAXI + TAG, "进入vr模式" ); MogoMapUIController.getInstance() .openVrMode( false ); } private void showFragment() { if (ochTaxiFragment == null) { - Logger.d(TAG, "准备add fragment======"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "准备add fragment======"); ochTaxiFragment = new OCHTaxiFragment(); mActivity.getSupportFragmentManager().beginTransaction().add(mContainerId, ochTaxiFragment).commitAllowingStateLoss(); return; } - Logger.d(TAG, "准备show fragment"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "准备show fragment"); mActivity.getSupportFragmentManager().beginTransaction().show(ochTaxiFragment).commitAllowingStateLoss(); } diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/MogoOCHTaxiModelNew.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/MogoOCHTaxiModelNew.java index 15f1857d92..3f5b3b0f55 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/MogoOCHTaxiModelNew.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/MogoOCHTaxiModelNew.java @@ -1,10 +1,11 @@ package com.mogo.och.taxi.model; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.content.Context; import android.content.Intent; import android.location.Location; import android.net.ConnectivityManager; -import android.util.Log; import androidx.annotation.Nullable; @@ -16,7 +17,6 @@ import com.mogo.commons.debug.DebugConfig; import com.mogo.eagle.core.data.BaseData; import com.mogo.eagle.core.data.autopilot.ADASTrajectoryInfo; import com.mogo.eagle.core.data.autopilot.AutopilotControlParameters; -import com.mogo.eagle.core.data.autopilot.AutopilotRouteInfo; import com.mogo.eagle.core.data.autopilot.AutopilotStatusInfo; import com.mogo.eagle.core.data.config.FunctionBuildConfig; import com.mogo.eagle.core.data.map.MogoLocation; @@ -25,7 +25,7 @@ import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotManager; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager; import com.mogo.eagle.core.function.call.autopilot.CallerAutopilotPlanningListenerManager; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr; import com.mogo.eagle.core.utilcode.mogo.toast.TipToast; import com.mogo.eagle.core.utilcode.util.NetworkUtils; @@ -148,31 +148,31 @@ public class MogoOCHTaxiModelNew { public void accept(Throwable e) { if (e instanceof UndeliverableException) { e = e.getCause(); - Log.d(TAG, "UndeliverableException"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "UndeliverableException"); } if ((e instanceof IOException)) {// // fine, irrelevant network problem or API that throws on cancellation - Log.d(TAG, "IOException"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "IOException"); return; } if (e instanceof InterruptedException) { // fine, some blocking code was interrupted by a dispose call - Log.d(TAG, "InterruptedException"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "InterruptedException"); return; } if ((e instanceof NullPointerException) || (e instanceof IllegalArgumentException)) { // that's likely a bug in the application - Log.d(TAG, "NullPointerException or IllegalArgumentException"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "NullPointerException or IllegalArgumentException"); Thread.currentThread().getUncaughtExceptionHandler().uncaughtException(Thread.currentThread(), e); return; } if (e instanceof IllegalStateException) { // that's a bug in RxJava or in a custom operator - Log.d(TAG, "IllegalStateException"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "IllegalStateException"); Thread.currentThread().getUncaughtExceptionHandler().uncaughtException(Thread.currentThread(), e); return; } - Log.d(TAG,"Undeliverable exception"); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"Undeliverable exception"); } }); @@ -241,7 +241,7 @@ public class MogoOCHTaxiModelNew { } private void startOrStopOrderLoop(boolean start) { - Logger.d(TAG, "startOrStopOrderLoop() " + start); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "startOrStopOrderLoop() " + start); if (start) { OCHTaxiModelLoopManager.getInstance().startInAndWaitOrdersLoop(); OCHTaxiModelLoopManager.getInstance().startNewBookingOrderLoop(); @@ -299,7 +299,7 @@ public class MogoOCHTaxiModelNew { if (mCarStatusCallback != null) { mCarStatusCallback.onCarStatusChanged(mOCHCarStatus == 1); } - Logger.d(TAG, "changeCarStatus:" + status); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "changeCarStatus:" + status); } } @@ -751,7 +751,7 @@ public class MogoOCHTaxiModelNew { && mCurrentOCHOrder.orderStatus == OrderStatusEnum.OnTheWayToEndStation.getCode()) { // 当美化模式(演示模式)开启时: 订单对应自动驾驶开启后,置true FunctionBuildConfig.isIgnoreConditionsDrawAutopilotTrajectoryData = true; - Logger.d(TAG, "美化模式-ignore:置为true(更新本地order信息)"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "美化模式-ignore:置为true(更新本地order信息)"); } } @@ -762,7 +762,7 @@ public class MogoOCHTaxiModelNew { if (FunctionBuildConfig.isDemoMode) { // 当美化模式(演示模式)开启时: 取消或订单已完成时,置false FunctionBuildConfig.isIgnoreConditionsDrawAutopilotTrajectoryData = false; - Logger.d(TAG, "美化模式-ignore:置为false(清除当前订单)"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "美化模式-ignore:置为false(清除当前订单)"); } } @@ -779,7 +779,7 @@ public class MogoOCHTaxiModelNew { //以当前订单为基础,开启自动驾驶 public void startAutoPilot() { if (!checkCurrentOCHOrder()) { - Logger.e(TAG, "no order or order is empty."); + CallerLogger.INSTANCE.e(M_TAXI + TAG, "no order or order is empty."); TipToast.shortTip("当前订单不存在或异常!"); return; } @@ -802,7 +802,7 @@ public class MogoOCHTaxiModelNew { parameters.startLatLon = new AutopilotControlParameters.AutoPilotLonLat(startWgsLat, startWgsLon); parameters.endLatLon = new AutopilotControlParameters.AutoPilotLonLat(endWgsLat, endWgsLon); CallerAutoPilotManager.INSTANCE.startAutoPilot(parameters); - Logger.d(TAG, "start autopilot with parameter: %s", GsonUtil.jsonFromObject(parameters) + CallerLogger.INSTANCE.d(M_TAXI + TAG, "start autopilot with parameter: %s", GsonUtil.jsonFromObject(parameters) + " ,startSiteName=" + mCurrentOCHOrder.startSiteAddr + " ,endSiteName=" + mCurrentOCHOrder.endSiteAddr); if (DebugConfig.isDebug()) { // TipToast.shortTip("Start autopilot!"); @@ -816,7 +816,7 @@ public class MogoOCHTaxiModelNew { public void cancelAutopilot() { try { CallerAutoPilotManager.INSTANCE.cancelAutoPilot(); - Logger.d(TAG, "结束自动驾驶"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "结束自动驾驶"); } catch (Exception e) { e.printStackTrace(); } @@ -838,7 +838,7 @@ public class MogoOCHTaxiModelNew { // TipToast.shortTip("距离上车点:" + Double.valueOf(distance).intValue()); } - Logger.i(TAG, "judgeStartStation() distance = " + distance); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "judgeStartStation() distance = " + distance); // if (mOrderStatusCallback != null && distance >= 0) { // mOrderStatusCallback.onCurrentOrderDistToStartChanged((long) distance, 0); // } @@ -871,10 +871,10 @@ public class MogoOCHTaxiModelNew { } //监听网络变化,避免启动机器时无网导致无法更新订单信息 - private IMogoIntentListener mNetWorkIntentListener = new IMogoIntentListener() { + private final IMogoIntentListener mNetWorkIntentListener = new IMogoIntentListener() { @Override public void onIntentReceived(String intentStr, Intent intent) { - Logger.d(TAG, "onIntentReceived = %s", intentStr); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "onIntentReceived = %s", intentStr); if (ConnectivityManager.CONNECTIVITY_ACTION.equals(intentStr)) { if (NetworkUtils.isConnected(mContext)) { startOrStopOrderLoop(mOCHCarStatus == 1); @@ -884,7 +884,7 @@ public class MogoOCHTaxiModelNew { } }; - private IMogoStatusChangedListener mMogoStatusChangedListener = new IMogoStatusChangedListener() { + private final IMogoStatusChangedListener mMogoStatusChangedListener = new IMogoStatusChangedListener() { // VR mode变更回调 @Override public void onStatusChanged(StatusDescriptor descriptor, boolean isTrue) { @@ -896,25 +896,25 @@ public class MogoOCHTaxiModelNew { } }; - private IMogoLifecycleListener mSocketLifeCycleLisnter = new IMogoLifecycleListener() { + private final IMogoLifecycleListener mSocketLifeCycleLisnter = new IMogoLifecycleListener() { @Override public void onConnectFailure() { - Logger.e(TAG, "socket onConnectFailure"); + CallerLogger.INSTANCE.e(M_TAXI + TAG, "socket onConnectFailure"); } @Override public void onConnectSuccess() { - Logger.e(TAG, "socket onConnectSuccess"); + CallerLogger.INSTANCE.e(M_TAXI + TAG, "socket onConnectSuccess"); } @Override public void onConnectLost() { - Logger.e(TAG, "socket onConnectLost"); + CallerLogger.INSTANCE.e(M_TAXI + TAG, "socket onConnectLost"); } }; // 自车定位 - private IMogoCarLocationChangedListener2 mCarLocationChangedListener2 = new IMogoCarLocationChangedListener2() { + private final IMogoCarLocationChangedListener2 mCarLocationChangedListener2 = new IMogoCarLocationChangedListener2() { @Override public void onCarLocationChanged2(Location location) { @@ -991,7 +991,7 @@ public class MogoOCHTaxiModelNew { public void onAutopilotStatusResponse(@NotNull AutopilotStatusInfo autopilotStatusInfo) { if (autopilotStatusInfo == null) return; int state = autopilotStatusInfo.getState(); - Logger.d(TAG, "state = %s", state); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "state = %s", state); if (state == IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_RUNNING) { if (mADASStatusCallback != null) mADASStatusCallback.onAutopilotRunning(); if (mCurrentOCHOrder != null @@ -1003,7 +1003,7 @@ public class MogoOCHTaxiModelNew { if (FunctionBuildConfig.isDemoMode) { // 当美化模式(演示模式)开启时: 订单对应自动驾驶开启后,置true FunctionBuildConfig.isIgnoreConditionsDrawAutopilotTrajectoryData = true; - Logger.d(TAG, "美化模式-ignore:置为true(到达出发点且已开启自动驾驶)"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "美化模式-ignore:置为true(到达出发点且已开启自动驾驶)"); } } } else if (state == IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_ENABLE) { diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/NaviToDestinationModel.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/NaviToDestinationModel.java index 1c7a0f692c..d362461175 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/NaviToDestinationModel.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/NaviToDestinationModel.java @@ -1,8 +1,9 @@ package com.mogo.och.taxi.model; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.Manifest; import android.content.Context; -import android.util.Log; import android.widget.Toast; import com.amap.api.navi.AMapNavi; @@ -23,6 +24,7 @@ import com.amap.api.navi.model.AimLessModeStat; import com.amap.api.navi.model.NaviInfo; import com.amap.api.navi.model.NaviLatLng; import com.autonavi.tbt.TrafficFacilityInfo; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.mogo.toast.TipToast; import com.mogo.eagle.core.utilcode.util.NetworkUtils; import com.mogo.och.taxi.callback.IOCHTaxiNaviChangedCallback; @@ -170,8 +172,8 @@ public class NaviToDestinationModel implements AMapNaviListener { // }else if (result.getErrorCode() == 6){ // TipToast.longTip("终点坐标错误"); // } - Log.i("dm", "路线计算失败:错误码=" + result.getErrorCode() + ",Error Message= " + result.getErrorDetail()); - Log.i("dm", "错误码详细链接见:http://lbs.amap.com/api/android-navi-sdk/guide/tools/errorcode/"); + CallerLogger.INSTANCE.i(M_TAXI + "dm", "路线计算失败:错误码=" + result.getErrorCode() + ",Error Message= " + result.getErrorDetail()); + CallerLogger.INSTANCE.i(M_TAXI + "dm", "错误码详细链接见:http://lbs.amap.com/api/android-navi-sdk/guide/tools/errorcode/"); } @Override public void onStartNavi(int type) { @@ -257,7 +259,7 @@ public class NaviToDestinationModel implements AMapNaviListener { // //当前用户要执行的动作 // int recommend = aMapLaneInfo.frontLane[i]; // -// Log.e("ggb", "---->>> background is " + background + " ; recommend is " + recommend); +// CallerLogger.INSTANCE.e(M_TAXI + "ggb", "---->>> background is " + background + " ; recommend is " + recommend); // //根据文档中每个动作对应的枚举类型,显示对应的图片 // try { // sb.append(",第" + (i + 1) + "车道为" + array[background]); @@ -269,7 +271,7 @@ public class NaviToDestinationModel implements AMapNaviListener { // e.printStackTrace(); // } // } -// Log.e("showLaneInfo", sb.toString()); +// CallerLogger.INSTANCE.e(M_TAXI + "showLaneInfo", sb.toString()); } @Override diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/OCHTaxiModelLoopManager.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/OCHTaxiModelLoopManager.java index f0bf44761a..d8cc82276e 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/OCHTaxiModelLoopManager.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/model/OCHTaxiModelLoopManager.java @@ -1,6 +1,8 @@ package com.mogo.och.taxi.model; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.och.taxi.constant.OCHTaxiConst; import java.util.concurrent.TimeUnit; @@ -36,7 +38,7 @@ public class OCHTaxiModelLoopManager { if (mInAndWaitServiceDisposable != null && !mInAndWaitServiceDisposable.isDisposed()) { return; } - Logger.i(TAG, "startInAndWaitOrdersLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "startInAndWaitOrdersLoop()"); mInAndWaitServiceDisposable = Observable.interval(OCHTaxiConst.LOOP_DELAY, OCHTaxiConst.LOOP_PERIOD_2S, TimeUnit.MILLISECONDS) .map((aLong -> aLong + 1)) @@ -47,7 +49,7 @@ public class OCHTaxiModelLoopManager { public void stopInAndWaitOrdersLoop() { if (mInAndWaitServiceDisposable != null) { - Logger.i(TAG, "stopInAndWaitOrdersLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "stopInAndWaitOrdersLoop()"); mInAndWaitServiceDisposable.dispose(); mInAndWaitServiceDisposable = null; } @@ -57,7 +59,7 @@ public class OCHTaxiModelLoopManager { if (mNewBookingOrderDisposable != null && !mNewBookingOrderDisposable.isDisposed()) { return; } - Logger.i(TAG, "startNewBookingOrderLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "startNewBookingOrderLoop()"); mNewBookingOrderDisposable = Observable.interval(OCHTaxiConst.LOOP_DELAY, OCHTaxiConst.LOOP_PERIOD_1S, TimeUnit.MILLISECONDS) .map((aLong -> aLong + 1)) @@ -68,7 +70,7 @@ public class OCHTaxiModelLoopManager { public void stopNewBookingOrderLoop() { if (mNewBookingOrderDisposable != null) { - Logger.i(TAG, "stopNewBookingOrderLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "stopNewBookingOrderLoop()"); mNewBookingOrderDisposable.dispose(); mNewBookingOrderDisposable = null; } @@ -78,7 +80,7 @@ public class OCHTaxiModelLoopManager { if (mGrabResultDisposable != null && !mGrabResultDisposable.isDisposed()) { return; } - Logger.i(TAG, "startGrabResultLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "startGrabResultLoop()"); mGrabResultDisposable = Observable.interval(OCHTaxiConst.LOOP_DELAY, OCHTaxiConst.LOOP_PERIOD_1S, TimeUnit.MILLISECONDS) .map((aLong -> aLong + 1)) @@ -89,7 +91,7 @@ public class OCHTaxiModelLoopManager { public void stopGrabResultLoop() { if (mGrabResultDisposable != null) { - Logger.i(TAG, "stopGrabResultLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "stopGrabResultLoop()"); mGrabResultDisposable.dispose(); mGrabResultDisposable = null; } @@ -99,7 +101,7 @@ public class OCHTaxiModelLoopManager { if (mHeartbeatDisposable != null && !mHeartbeatDisposable.isDisposed()) { return; } - Logger.i(TAG, "startHeartbeatLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "startHeartbeatLoop()"); mHeartbeatDisposable = Observable.interval(OCHTaxiConst.LOOP_DELAY, OCHTaxiConst.LOOP_PERIOD_60S, TimeUnit.MILLISECONDS) .map((aLong -> aLong + 1)) @@ -110,7 +112,7 @@ public class OCHTaxiModelLoopManager { public void stopHeartbeatLoop() { if (mHeartbeatDisposable != null) { - Logger.i(TAG, "stopHeartbeatLoop()"); + CallerLogger.INSTANCE.i(M_TAXI + TAG, "stopHeartbeatLoop()"); mHeartbeatDisposable.dispose(); mHeartbeatDisposable = null; } diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/network/OCHTaxiServiceManagerNew.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/network/OCHTaxiServiceManagerNew.java index a95d7480a0..81b755599a 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/network/OCHTaxiServiceManagerNew.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/network/OCHTaxiServiceManagerNew.java @@ -1,12 +1,14 @@ package com.mogo.och.taxi.network; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.content.Context; import com.mogo.cloud.passport.MoGoAiCloudClientConfig; import com.mogo.eagle.core.data.BaseData; import com.mogo.eagle.core.network.RequestOptions; import com.mogo.eagle.core.network.SubscribeImpl; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.module.common.MogoApisHandler; import com.mogo.och.taxi.bean.CarHeartbeatReqBean; import com.mogo.och.taxi.bean.DriverServiceDataRespBean; @@ -375,7 +377,7 @@ public class OCHTaxiServiceManagerNew { @Override public void onSuccess(T o) { super.onSuccess(o); - Logger.e(TAG,apiName + ": onSuccess() " + o.msg); + CallerLogger.INSTANCE.e(M_TAXI + TAG,apiName + ": onSuccess() " + o.msg); if (callback != null) { callback.onSuccess(o); } @@ -384,7 +386,7 @@ public class OCHTaxiServiceManagerNew { @Override public void onError(Throwable e) { super.onError(e); - Logger.e(TAG,apiName + ": onError() " + e.getMessage()); + CallerLogger.INSTANCE.e(M_TAXI + TAG,apiName + ": onError() " + e.getMessage()); if (callback != null) { callback.onError(); } @@ -393,7 +395,7 @@ public class OCHTaxiServiceManagerNew { @Override public void onError(String message, int code) { super.onError(message, code); - Logger.e(TAG,String.format(apiName + ": onError() code = %d; message = %s;", code, message)); + CallerLogger.INSTANCE.e(M_TAXI + TAG,String.format(apiName + ": onError() code = %d; message = %s;", code, message)); if (callback != null) { callback.onFail(code, message); } diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/presenter/OCHTaxiPresenter.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/presenter/OCHTaxiPresenter.java index 29865b5624..e79ff157df 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/presenter/OCHTaxiPresenter.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/presenter/OCHTaxiPresenter.java @@ -1,9 +1,10 @@ package com.mogo.och.taxi.presenter; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.location.Location; import android.os.Build; import android.os.Looper; -import android.util.Log; import androidx.annotation.NonNull; import androidx.annotation.RequiresApi; @@ -12,7 +13,7 @@ import androidx.lifecycle.LifecycleOwner; import com.mogo.commons.AbsMogoApplication; import com.mogo.commons.mvp.Presenter; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.och.taxi.constant.OrderStatusEnum; import com.mogo.och.taxi.bean.OrderQueryRespBean; @@ -48,7 +49,7 @@ public class OCHTaxiPresenter extends Presenter implements IOCH @Override public void onCreate( @NonNull LifecycleOwner owner ) { super.onCreate( owner ); - Logger.d( TAG, "网约车-出租车拿到订单" ); + CallerLogger.INSTANCE.d( M_TAXI + TAG, "网约车-出租车拿到订单" ); } @Override @@ -184,7 +185,7 @@ public class OCHTaxiPresenter extends Presenter implements IOCH @RequiresApi(api = Build.VERSION_CODES.P) @Override public void onCurrentOrderStatusChanged(OrderQueryRespBean.Result order) { - Log.d(TAG,"order = "+order.toString()); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"order = "+order.toString()); mView.updateCurrentOrderStatusChanged(order); } diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/BaseOchTaxiTabFragment.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/BaseOchTaxiTabFragment.java index f698d2fe36..dcbf3438c1 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/BaseOchTaxiTabFragment.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/BaseOchTaxiTabFragment.java @@ -1,11 +1,12 @@ package com.mogo.och.taxi.ui; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.animation.ObjectAnimator; import android.content.Intent; import android.graphics.drawable.AnimationDrawable; import android.os.Handler; import android.os.Looper; -import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.animation.LinearInterpolator; @@ -35,7 +36,7 @@ import com.mogo.eagle.core.function.call.autopilot.CallerAutopilotIdentifyListen import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsManager; import com.mogo.eagle.core.function.call.hmi.CallerHmiManager; import com.mogo.eagle.core.function.call.map.CallerSmpManager; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.map.MogoMapUIController; import com.mogo.map.MogoMarkerManager; import com.mogo.map.listener.IMogoMapListener; @@ -104,7 +105,7 @@ public abstract class BaseOchTaxiTabFragment { - Log.d(TAG, "长按显示状态工具栏"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "长按显示状态工具栏"); Intent intent = new Intent(); intent.putExtra("oper", 52); MogoApisHandler.getInstance().getApis().getIntentManagerApi().invoke("com.mogo.mock", intent); @@ -188,7 +189,7 @@ public abstract class BaseOchTaxiTabFragment { -// Logger.d("lianglihui","模拟 站点下发工控"); +// CallerLogger.INSTANCE.d(M_TAXI + "lianglihui","模拟 站点下发工控"); AutopilotControlParameters currentAutopilot = new AutopilotControlParameters(); currentAutopilot.isSpeakVoice = true; // 万集东门站 @@ -235,7 +236,7 @@ public abstract class BaseOchTaxiTabFragment用时 " + "- -" + " 分钟"; // mDistanceAndTime.setText(Html.fromHtml(strHtml2)); } else if (OrderStatusEnum.OnTheWayToEndStation.getCode() == order.orderStatus) { - Logger.d(TAG, "已经去往终点"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "已经去往终点"); mContentModule3.setVisibility(View.GONE); mContentModule2.setVisibility(View.VISIBLE); mOrderStatus.setText(R.string.module_och_taxi_on_the_way_2_end_station); @@ -196,7 +196,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem // + "用时 " + "- -" + " 分钟"; // mDistanceAndTime.setText(Html.fromHtml(strHtml4)); } else if (OrderStatusEnum.ArriveAtStartStation.getCode() == order.orderStatus) { - Logger.d(TAG, "已经达到起点"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "已经达到起点"); mContentModule2.setVisibility(View.GONE); mContentModule3.setVisibility(View.VISIBLE); mArrivedStartTimeTv32.setVisibility(View.VISIBLE); @@ -233,7 +233,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem } mDistanceAndTime3.setText(Html.fromHtml(strHtml13)); } else if (MogoOCHTaxiModelNew.getInstance().checkCurrentOCHOrder()) { - Logger.d(TAG, "前往乘客上车地点"); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "前往乘客上车地点"); mContentModule2.setVisibility(View.GONE); mContentModule3.setVisibility(View.VISIBLE); mContentModule31.setVisibility(View.VISIBLE); @@ -278,7 +278,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem private void startNaviToStartStation(boolean isShow, double orderStartStationLat, double orderStartStationLng) { NaviToDestinationModel.getInstance(getContext()).destroyAmaNavi(); - Log.d(TAG, "currentLatLng=" + mTaxiFragment.mCurLatitude + " " + mTaxiFragment.mCurLongitude); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "currentLatLng=" + mTaxiFragment.mCurLatitude + " " + mTaxiFragment.mCurLongitude); NaviLatLng startNaviLatLng = new NaviLatLng(mTaxiFragment.mCurLatitude, mTaxiFragment.mCurLongitude); NaviLatLng endNaviLatLng = new NaviLatLng(orderStartStationLat, orderStartStationLng); NaviToDestinationModel.getInstance(getContext()).initAMapNavi(startNaviLatLng, endNaviLatLng); @@ -295,7 +295,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem } public void updateDistanceAndTime(long meters, long timeInSecond) { -// Log.d(TAG,"meters = "+meters); +// CallerLogger.INSTANCE.d(M_TAXI + TAG,"meters = "+meters); if (mContentModule3 != null && mContentModule3.getVisibility() == View.VISIBLE) { DecimalFormat fnum = new DecimalFormat("##0.0"); String dis = fnum.format((float) meters / 1000); @@ -313,7 +313,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem } public void onCurrentOrderRouteInfoGot(OrderQueryRouteInfoRespBean.Result routeInfo) { - Log.d(TAG, "meters = " + routeInfo.durationToEnd); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "meters = " + routeInfo.durationToEnd); DecimalFormat fnum = new DecimalFormat("##0.0"); String dis = fnum.format((float) routeInfo.distanceToEnd / 1000); String strHtml2 = "距离 " + "" + dis + "" + " 公里" @@ -352,7 +352,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem public void onOrderStatusChanged(OrderQueryRespBean.Result order) { int status = order.orderStatus; - Log.d(TAG, "status==" + status); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "status==" + status); mActivity.runOnUiThread(() -> { if (status == OrderStatusEnum.None.getCode() || status == OrderStatusEnum.Cancel.getCode() || status == OrderStatusEnum.JourneyCompleted.getCode()) { isSpeakedEndingNotice = false; @@ -415,7 +415,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem * @param being */ public void isHaveBeingOrder(boolean being) { - Log.d(TAG, "isHaveBeingOrder = " + being); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "isHaveBeingOrder = " + being); if (being) { mNoDataView.setVisibility(View.GONE); mBeingOrderLayout.setVisibility(View.VISIBLE); @@ -434,7 +434,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem switch (mOrderServerStatus.getText().toString().trim()) { case "开始服务": case "服务完成": - Log.d(TAG, mOrderServerStatus.getText().toString()); + CallerLogger.INSTANCE.d(M_TAXI + TAG, mOrderServerStatus.getText().toString()); startOrEndService(mOrderServerStatus.getText().toString().trim()); break; } @@ -490,7 +490,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem @Override public void reInitNaviAmap(boolean isPlay, boolean isRestart) { - Log.d(TAG, "isPlay = " + isPlay + ", isRestart=" + isRestart); + CallerLogger.INSTANCE.d(M_TAXI + TAG, "isPlay = " + isPlay + ", isRestart=" + isRestart); if (!isRestart) { mTaxiFragment.showNaviToStartStationFragment(false); return; @@ -526,7 +526,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem */ private void setOrRemoveMapMaker(boolean isAdd, String uuid, List station, int iconId){ if (isAdd){ - Log.d("setMapMaker= ",uuid+"=latitude="+station.get(1)+",longitude="+station.get(0)); + CallerLogger.INSTANCE.d(M_TAXI + "setMapMaker= ",uuid+"=latitude="+station.get(1)+",longitude="+station.get(0)); MogoMarkerOptions options = new MogoMarkerOptions(); options.anchorColor("#000000");//不设置报错,暂时随便设置个 options.setGps(true);//使用wgs 必须设置true @@ -537,7 +537,7 @@ public class OCHTaxiBeingServerdOrdersFragment extends BaseTaxiUIFragment implem options.longitude(station.get(0)); MogoMarkerManager.getInstance(AbsMogoApplication.getApp()) .addMarker(uuid, options); }else { - Log.d("RemoveMapMaker=",uuid+"=latitude="+station.get(1)+",longitude="+station.get(0)); + CallerLogger.INSTANCE.d(M_TAXI + "RemoveMapMaker=",uuid+"=latitude="+station.get(1)+",longitude="+station.get(0)); MogoMarkerManager.getInstance(AbsMogoApplication.getApp()) .removeMarkers(uuid); } } diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiFragment.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiFragment.java index aede461144..e8fabe78b3 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiFragment.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiFragment.java @@ -1,5 +1,7 @@ package com.mogo.och.taxi.ui; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.content.Context; import android.os.Build; import android.os.Bundle; @@ -7,16 +9,13 @@ import android.view.View; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.annotation.Nullable; import androidx.annotation.RequiresApi; import androidx.fragment.app.FragmentTransaction; import com.amap.api.maps.CoordinateConverter; import com.amap.api.maps.model.LatLng; import com.mogo.commons.debug.DebugConfig; -import com.mogo.eagle.core.data.autopilot.AutopilotRouteInfo; -import com.mogo.eagle.core.data.map.MogoLatLng; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.module.common.MogoApisHandler; import com.mogo.och.taxi.R; import com.mogo.och.taxi.constant.OrderStatusEnum; @@ -39,10 +38,10 @@ import mogo.telematics.pad.MessagePad; /** * @author congtaowang * @since 2021/1/18 - * + *

* 网约车-出租车UI */ -public class OCHTaxiFragment extends BaseOchTaxiTabFragment implements OCHTaxiView{ +public class OCHTaxiFragment extends BaseOchTaxiTabFragment implements OCHTaxiView { public static final String TAG = "OCHTaxiFragment"; @@ -51,9 +50,10 @@ public class OCHTaxiFragment extends BaseOchTaxiTabFragment personalDialogFragment = null; @@ -69,7 +69,7 @@ public class OCHTaxiFragment extends BaseOchTaxiTabFragment(new OCHTaxiPersonalDialogFragment(this)); - personalDialogFragment.get().show(getActivity().getSupportFragmentManager(),"service_data"); + personalDialogFragment.get().show(getActivity().getSupportFragmentManager(), "service_data"); } -// public void routeResult(List routeList) { + // public void routeResult(List routeList) { // if (routeList == null ) return; // double distance = calculateTravelDistance(mogoLocation,routeList); // if ( MogoOCHTaxiModel.getInstance().checkCurrentOCHOrder() ) { // MogoOCHTaxiModel.getInstance().getCurrentOCHOrder().decreaseTravelDistance( distance ); // updateOrderBaseStatusInfo(); // } -// Logger.d("lianglihui","routeResult 剩余导航距离:"+distance); +// CallerLogger.INSTANCE.d(M_TAXI + "lianglihui","routeResult 剩余导航距离:"+distance); // if (routeList != null && routeList.size() >0){ -// Logger.d("lianglihui","routeResult:"+routeList.size()); +// CallerLogger.INSTANCE.d(M_TAXI + "lianglihui","routeResult:"+routeList.size()); // //adas回调导航路径 绘制引导线 // if ( ochTaxiOverlayManager == null){ // ochTaxiOverlayManager = new OCHTaxiOverlayManager(this.getContext()); @@ -204,67 +204,80 @@ public class OCHTaxiFragment extends BaseOchTaxiTabFragment waitServiceList){ + + public void onOrdersWaitServiceChanged(List waitServiceList) { if (null == waitServiceList) return; if (null == serverOrdersFragment) return; serverOrdersFragment.onOrdersWaitServiceChanged(waitServiceList); } - public void queryOrdersList(int page, int size){ - mPresenter.queryOrdersList(page,size); + + public void queryOrdersList(int page, int size) { + mPresenter.queryOrdersList(page, size); } - public void onOrdersListPageRefresh(List ordersList){ - if (null == personalDialogFragment) personalDialogFragment = new WeakReference<>(new OCHTaxiPersonalDialogFragment(this)); + + public void onOrdersListPageRefresh(List ordersList) { + if (null == personalDialogFragment) + personalDialogFragment = new WeakReference<>(new OCHTaxiPersonalDialogFragment(this)); personalDialogFragment.get().onOrdersListPageRefresh(ordersList); } - public void queryDriverServiceData(){ + + public void queryDriverServiceData() { mPresenter.queryDriverServiceData(); } - public void onServiceDataUpdate(long dailyTimeDuration, long dailyOrderNum){ + + public void onServiceDataUpdate(long dailyTimeDuration, long dailyOrderNum) { if (null == personalDialogFragment) return; - personalDialogFragment.get().onServiceDataUpdate(dailyTimeDuration,dailyOrderNum); + personalDialogFragment.get().onServiceDataUpdate(dailyTimeDuration, dailyOrderNum); } - public void queryCurOrderRouteInfo(){ + + public void queryCurOrderRouteInfo() { mPresenter.queryCurOrderRouteInfo(); } - public void onCurrentOrderRouteInfoGot(OrderQueryRouteInfoRespBean.Result routeInfo){ + + public void onCurrentOrderRouteInfoGot(OrderQueryRouteInfoRespBean.Result routeInfo) { if (null == serverOrdersFragment) return; serverOrdersFragment.onCurrentOrderRouteInfoGot(routeInfo); } - public void onCurrentOrderDistToStartChanged(long meters, long timeInSecond){ + + public void onCurrentOrderDistToStartChanged(long meters, long timeInSecond) { // if (null == serverOrdersFragment) return; // serverOrdersFragment.onCurrentOrderDistToStartChanged(meters,timeInSecond); } - public void onCurrentOrderDistToEndChanged(long meters, long timeInSecond){ + + public void onCurrentOrderDistToEndChanged(long meters, long timeInSecond) { if (null == serverOrdersFragment) return; - serverOrdersFragment.onCurrentOrderDistToEndChanged(meters,timeInSecond); + serverOrdersFragment.onCurrentOrderDistToEndChanged(meters, timeInSecond); } - public void updateLocation(double latitude,double longitude){ + + public void updateLocation(double latitude, double longitude) { this.mCurLatitude = latitude; this.mCurLongitude = longitude; } + /** * 订单流转debug START */ @@ -320,7 +345,7 @@ public class OCHTaxiFragment extends BaseOchTaxiTabFragment { MogoOCHTaxiModelNew.getInstance().setArriveAtEndStation(); }); - findViewById(R.id.test_bar_on_the_way_to_end).setOnClickListener(v ->{ + findViewById(R.id.test_bar_on_the_way_to_end).setOnClickListener(v -> { showNotice("自动驾驶已启动,请系好安全带"); MogoOCHTaxiModelNew.getInstance().setOnTheWayToEndStation(); }); @@ -508,14 +533,14 @@ public class OCHTaxiFragment extends BaseOchTaxiTabFragment list1 = CoordinateConverterFrom84ForList(getContext(),list); + List list1 = CoordinateConverterFrom84ForList(getContext(), list); MogoOCHTaxiModelNew.getInstance().updateOrderRoute(list1); } catch (JSONException e) { e.printStackTrace(); @@ -543,7 +568,7 @@ public class OCHTaxiFragment extends BaseOchTaxiTabFragment parent, View view, int position, long id) { - Log.d(TAG,"mCurrentReason ="+ mContentArrays[position]); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"mCurrentReason ="+ mContentArrays[position]); mCurrentReason = mContentArrays[position]; // GradientDrawable background = (GradientDrawable) mCancelBt.getBackground();//GradientDrawable是Drawable的子类 // background.setColor(Color.parseColor("#2B6EFF")); diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiPersonalDialogFragment.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiPersonalDialogFragment.java index a41dd7dc08..88437c70ac 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiPersonalDialogFragment.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiPersonalDialogFragment.java @@ -6,7 +6,6 @@ import android.graphics.Point; import android.graphics.Typeface; import android.os.Build; import android.os.Bundle; -import android.util.Log; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; @@ -31,7 +30,7 @@ import androidx.recyclerview.widget.RecyclerView; import androidx.viewpager.widget.ViewPager; import com.google.android.material.tabs.TabLayout; -import com.mogo.commons.debug.DebugConfig; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.och.taxi.constant.OrderStatusEnum; import com.mogo.och.taxi.R; import com.mogo.och.taxi.bean.OrderQueryRespBean; @@ -43,6 +42,7 @@ import java.util.Calendar; import java.util.List; import static androidx.recyclerview.widget.RecyclerView.SCROLL_STATE_IDLE; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; /** * @author: wangmingjun @@ -99,7 +99,7 @@ public class OCHTaxiPersonalDialogFragment extends DialogFragment implements Vie windowManager.getDefaultDisplay().getSize(point); params.width = (int)(point.x * 0.375); params.height = ViewGroup.LayoutParams.MATCH_PARENT; - Log.d(TAG,"width= "+params.width+"height= "+params.height); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"width= "+params.width+"height= "+params.height); window.setAttributes(params); window.getDecorView().setBackgroundColor(Color.parseColor("#00FFFFFF"));//设置背景, 不然显示不全 window.setGravity(Gravity.LEFT|Gravity.BOTTOM); @@ -203,13 +203,13 @@ public class OCHTaxiPersonalDialogFragment extends DialogFragment implements Vie ImageView imageView = (ImageView) tab.getCustomView().findViewById(R.id.operation_tab_line_iv); if (isSelected){ textView.setTextSize(23); - Log.d(TAG,"SelectTv = "+ textView.getText()); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"SelectTv = "+ textView.getText()); textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD)); textView.setTextColor(Color.parseColor("#FFFFFF")); imageView.setImageDrawable(getResources().getDrawable(R.drawable.taxi_driver_operation_tab_line)); }else { textView.setTextSize(20); - Log.d(TAG,"unSelectTv = "+ textView.getText()); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"unSelectTv = "+ textView.getText()); textView.setTypeface(Typeface.defaultFromStyle(Typeface.NORMAL)); textView.setTextColor(Color.parseColor("#A7B6F0")); imageView.setImageDrawable(null); @@ -462,7 +462,7 @@ public class OCHTaxiPersonalDialogFragment extends DialogFragment implements Vie LinearLayoutManager linearLayoutManager = (LinearLayoutManager) manager; int lastItemPosition = linearLayoutManager.findLastCompletelyVisibleItemPosition(); int itemCount = linearLayoutManager.getItemCount(); - Log.d(TAG,"lastItemPosition=="+lastItemPosition+",itemCount=="+itemCount); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"lastItemPosition=="+lastItemPosition+",itemCount=="+itemCount); //向上滑动到最后一个 if ((lastItemPosition == itemCount-1) && isUpwardSliding){ onLoadMore(); diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiServerOrdersFragment.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiServerOrdersFragment.java index 63a8919f48..01e156ac38 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiServerOrdersFragment.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/ui/OCHTaxiServerOrdersFragment.java @@ -1,10 +1,11 @@ package com.mogo.och.taxi.ui; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_TAXI; + import android.graphics.Color; import android.graphics.Typeface; import android.os.Build; import android.os.Bundle; -import android.util.Log; import android.view.View; import android.widget.TextView; @@ -18,7 +19,7 @@ import androidx.fragment.app.FragmentTransaction; import androidx.viewpager.widget.ViewPager; import com.google.android.material.tabs.TabLayout; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.och.taxi.R; import com.mogo.och.taxi.bean.OrderQueryRespBean; import com.mogo.och.taxi.bean.OrderQueryRouteInfoRespBean; @@ -91,7 +92,7 @@ public class OCHTaxiServerOrdersFragment extends BaseTaxiUIFragment { } } - Log.d(TAG,"activity="+getActivity()); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"activity="+getActivity()); mTaxiOrderTab.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() { @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) @Override @@ -134,13 +135,13 @@ public class OCHTaxiServerOrdersFragment extends BaseTaxiUIFragment { if (isSelected){ textView.setBackground(getActivity().getDrawable(R.drawable.taxi_driver_tab_item_bg)); textView.setTextSize(20); - Log.d(TAG,"SelectTv = "+ textView.getText()); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"SelectTv = "+ textView.getText()); textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD)); textView.setTextColor(Color.parseColor("#FFFFFF")); }else { textView.setBackground(null); textView.setTextSize(18); - Log.d(TAG,"unSelectTv = "+ textView.getText()); + CallerLogger.INSTANCE.d(M_TAXI + TAG,"unSelectTv = "+ textView.getText()); textView.setTypeface(Typeface.defaultFromStyle(Typeface.NORMAL)); textView.setTextColor(Color.parseColor("#CCD4F5")); } @@ -158,7 +159,7 @@ public class OCHTaxiServerOrdersFragment extends BaseTaxiUIFragment { @NonNull @Override public Fragment getItem(int position) { - Logger.d( TAG, "getItem="+position); + CallerLogger.INSTANCE.d( M_TAXI + TAG, "getItem="+position); return fragments.get(position); } @@ -170,7 +171,7 @@ public class OCHTaxiServerOrdersFragment extends BaseTaxiUIFragment { @Nullable @Override public CharSequence getPageTitle(int position) { - Logger.d( TAG, "getPageTitle="+position); + CallerLogger.INSTANCE.d( M_TAXI + TAG, "getPageTitle="+position); return mTabTitles[position]; } } diff --git a/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoAdasListenerImpl.kt b/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoAdasListenerImpl.kt index 537c897962..3038e2baa5 100644 --- a/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoAdasListenerImpl.kt +++ b/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoAdasListenerImpl.kt @@ -4,17 +4,17 @@ import chassis.VehicleStateOuterClass import com.mogo.eagle.core.data.autopilot.ADASTrajectoryInfo import com.mogo.eagle.core.data.config.FunctionBuildConfig import com.mogo.eagle.core.data.config.HdMapBuildConfig -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_ARRIVE -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_GUARDIAN -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_RECORD -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_ROUTE -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_STATUS -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_TRAJECTORY -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_WARN -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_CAR_STATE -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_RECT_DATA -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_LINK_ADAS -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_LINK_LOG_WEB_SOCKET_DATA +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_ARRIVE +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_GUARDIAN +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_RECORD +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_ROUTE +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_STATUS +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_TRAJECTORY +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_AUTOPILOT_WARN +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_CAR_STATE +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_ALIAS_CODE_ADAS_MESSAGE_RECT_DATA +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_LINK_ADAS +import com.mogo.eagle.core.data.deva.chain.ChainConstant.Companion.CHAIN_LINK_LOG_WEB_SOCKET_DATA import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_ADAS_IMPL import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager.getAutoPilotStatusInfo import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager.invokeArriveAtStation diff --git a/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoHandAdasMsgManager.java b/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoHandAdasMsgManager.java index 5f4d48be79..276542f8e9 100644 --- a/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoHandAdasMsgManager.java +++ b/core/function-impl/mogo-core-function-autopilot/src/main/java/com/mogo/eagle/core/function/autopilot/adapter/MoGoHandAdasMsgManager.java @@ -53,7 +53,7 @@ public class MoGoHandAdasMsgManager implements @Override public void onAutopilotBrakeLightData(boolean brakeLight) { - //设置刹车信息 + //设置刹车信息 TODO 需要添加转向和删除的优先级 CallerHmiManager.INSTANCE.showBrakeLight(brakeLight ? 1 : 0); } diff --git a/core/function-impl/mogo-core-function-bindingcar/.gitignore b/core/function-impl/mogo-core-function-bindingcar/.gitignore new file mode 100644 index 0000000000..42afabfd2a --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/build.gradle b/core/function-impl/mogo-core-function-bindingcar/build.gradle new file mode 100644 index 0000000000..111633d37e --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/build.gradle @@ -0,0 +1,90 @@ +plugins { + id 'com.android.library' + id 'kotlin-android' + id 'kotlin-android-extensions' + id 'kotlin-kapt' + id 'com.alibaba.arouter' +} +android { + compileSdkVersion rootProject.ext.android.compileSdkVersion + // buildToolsVersion rootProject.ext.android.buildToolsVersion + defaultConfig { + minSdkVersion rootProject.ext.android.minSdkVersion + targetSdkVersion rootProject.ext.android.targetSdkVersion + versionCode Integer.valueOf(VERSION_CODE) + versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION") + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles 'consumer-rules.pro' + //ARouter apt 参数 + kapt { + useBuildCache = false + arguments { + arg("AROUTER_MODULE_NAME", project.getName()) + } + } + + javaCompileOptions{ + annotationProcessorOptions{ + arguments = ["room.schemaLocation":"$projectDir/schemas".toString()] + } + } + + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = "1.8" + } +} + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation rootProject.ext.dependencies.kotlinstdlibjdk7 + implementation rootProject.ext.dependencies.androidxccorektx + implementation rootProject.ext.dependencies.androidxappcompat + implementation rootProject.ext.dependencies.androidxconstraintlayout + implementation rootProject.ext.dependencies.arouter + implementation rootProject.ext.dependencies.rxandroid + implementation rootProject.ext.dependencies.androidxrecyclerview + implementation rootProject.ext.dependencies.androidxroomruntime + implementation rootProject.ext.dependencies.androidxroomktx + implementation rootProject.ext.dependencies.litezxing + kapt rootProject.ext.dependencies.androidxroomcompiler + kapt rootProject.ext.dependencies.aroutercompiler + + if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { + implementation rootProject.ext.dependencies.mogocommons + implementation rootProject.ext.dependencies.mogoserviceapi + implementation rootProject.ext.dependencies.modulecommon + + implementation rootProject.ext.dependencies.mogo_core_data + implementation rootProject.ext.dependencies.mogo_core_utils + implementation rootProject.ext.dependencies.mogo_core_res + implementation rootProject.ext.dependencies.mogo_core_network + implementation rootProject.ext.dependencies.mogo_core_function_call + } else { + implementation project(":foudations:mogo-commons") + implementation project(':services:mogo-service-api') + implementation project(':modules:mogo-module-common') + + implementation project(':core:mogo-core-data') + implementation project(':core:mogo-core-utils') + implementation project(':core:mogo-core-res') + implementation project(':core:mogo-core-network') + implementation project(':core:mogo-core-function-call') + } +} + +apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString() diff --git a/core/function-impl/mogo-core-function-bindingcar/consumer-rules.pro b/core/function-impl/mogo-core-function-bindingcar/consumer-rules.pro new file mode 100644 index 0000000000..e69de29bb2 diff --git a/core/function-impl/mogo-core-function-bindingcar/gradle.properties b/core/function-impl/mogo-core-function-bindingcar/gradle.properties new file mode 100644 index 0000000000..eb2cf9c236 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/gradle.properties @@ -0,0 +1,3 @@ +GROUP=com.mogo.eagle.core.function.impl +POM_ARTIFACT_ID=notice +VERSION_CODE=1 diff --git a/core/function-impl/mogo-core-function-bindingcar/proguard-rules.pro b/core/function-impl/mogo-core-function-bindingcar/proguard-rules.pro new file mode 100644 index 0000000000..481bb43481 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/AndroidManifest.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..dc77613661 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/AndroidManifest.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/BindingcarManager.java b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/BindingcarManager.java new file mode 100644 index 0000000000..97b71e95fd --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/BindingcarManager.java @@ -0,0 +1,27 @@ +package com.mogo.eagle.core.function.bindingcar; + +import android.content.Context; + +/** + * @author lixiaopeng + * @description + * @since: 10/27/21 + */ +public class BindingcarManager { + private String TAG = "BindingcarManager"; + private static BindingcarManager mBindingcarManager; + private Context mContext; + + public static synchronized BindingcarManager getInstance() { + synchronized (BindingcarManager.class) { + if (mBindingcarManager == null) { + mBindingcarManager = new BindingcarManager(); + } + } + return mBindingcarManager; + } + + + +} + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/BindingcarProvider.java b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/BindingcarProvider.java new file mode 100644 index 0000000000..9c32ea4b1b --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/BindingcarProvider.java @@ -0,0 +1,44 @@ +package com.mogo.eagle.core.function.bindingcar; + +import android.content.Context; + +import com.alibaba.android.arouter.facade.annotation.Route; +import com.mogo.eagle.core.data.constants.MogoServicePaths; +import com.mogo.eagle.core.function.api.bindingcar.BindingcarCallBack; +import com.mogo.eagle.core.function.api.bindingcar.IMoGoBindingcarProvider; +import com.mogo.eagle.core.function.bindingcar.network.BindingcarNetWorkManager; + +import org.jetbrains.annotations.NotNull; + + +/** + * @author Jing + * @description 云公告公告 + * @since: 10/27/21 + */ +@Route(path = MogoServicePaths.PATH_BINDING_CAR) +public class BindingcarProvider implements IMoGoBindingcarProvider { + + @NotNull + @Override + public String getFunctionName() { + return null; + } + + @Override + public void onDestroy() { + } + + @Override + public void init(Context context) { + + } + + + @Override + public void modifyCarInfo(BindingcarCallBack callBack) { + BindingcarNetWorkManager.getInstance().getBindingcarInfo(""); +// BindingcarNetWorkManager.getInstance().modifyBindingcar(callBack); + + } +} diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarApiService.java b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarApiService.java new file mode 100644 index 0000000000..d9e4a80a59 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarApiService.java @@ -0,0 +1,37 @@ +package com.mogo.eagle.core.function.bindingcar.network; + +import com.mogo.eagle.core.data.bindingcar.BindingcarInfo; +import com.mogo.eagle.core.data.bindingcar.ModifyBindingcarInfo; +import com.mogo.eagle.core.data.notice.NoticeTrafficStyleInfo; + +import io.reactivex.Observable; +import okhttp3.RequestBody; +import retrofit2.http.Body; +import retrofit2.http.Headers; +import retrofit2.http.POST; + +/** + * @author lixiaopeng + * @description 绑定车辆 + * @since: 10/28/21 + */ +public interface BindingcarApiService { + /** + * 获取绑定车辆的信息 + * + * @return {@link BindingcarInfo} + */ + @Headers("Content-Type:application/json;charset=UTF-8") + @POST("/pad/selectPadByMac") + Observable getBindingcarInfo(@Body RequestBody requestBody); + + /** + * 绑定和修改绑定车机 + * + * @return {@link ModifyBindingcarInfo} + */ + @Headers("Content-Type:application/json;charset=UTF-8") + @POST("/pad/updatePadByMac") + Observable modifyBindingcarInfo(@Body RequestBody requestBody); + +} diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarNetWorkManager.java b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarNetWorkManager.java new file mode 100644 index 0000000000..eb51652caa --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarNetWorkManager.java @@ -0,0 +1,122 @@ +package com.mogo.eagle.core.function.bindingcar.network; + +import android.util.Log; + +import com.mogo.cloud.network.RetrofitFactory; +import com.mogo.cloud.passport.MoGoAiCloudClientConfig; +import com.mogo.eagle.core.data.bindingcar.BindingcarInfo; +import com.mogo.eagle.core.data.bindingcar.ModifyBindingcarInfo; +import com.mogo.eagle.core.function.api.bindingcar.BindingcarCallBack; +import com.mogo.eagle.core.network.utils.GsonUtil; + +import io.reactivex.Observer; +import io.reactivex.android.schedulers.AndroidSchedulers; +import io.reactivex.annotations.NonNull; +import io.reactivex.disposables.Disposable; +import io.reactivex.schedulers.Schedulers; +import okhttp3.MediaType; +import okhttp3.RequestBody; + +/** + * @author Jing + * @description 云公告网络请求类 + * @since: 10/28/21 + */ +public class BindingcarNetWorkManager { + private static volatile BindingcarNetWorkManager requestNoticeManager; + private final BindingcarApiService mBindingcarApiService; + + private BindingcarNetWorkManager() { //TODO +// mBindingcarApiService = RetrofitFactory.INSTANCE.getInstance(NetConstants.DEVA_HOST) +// .create(BindingcarApiService.class); + + mBindingcarApiService = RetrofitFactory.INSTANCE.getInstance("http://cmdb.ee-private-dev.myghost.zhidaoauto.com/") + .create(BindingcarApiService.class); + } + + public static BindingcarNetWorkManager getInstance() { + if (requestNoticeManager == null) { + synchronized (BindingcarNetWorkManager.class) { + if (requestNoticeManager == null) { + requestNoticeManager = new BindingcarNetWorkManager(); + } + } + } + return requestNoticeManager; + } + + /** + * 获取绑定的车辆信息 + * + * @param macAddress mac地址 TODO + * + */ + public void getBindingcarInfo(String macAddress) { + String sn = MoGoAiCloudClientConfig.getInstance().getSn(); + BindingcarRequest request = new BindingcarRequest(sn, "48:b0:2d:3a:9c:19"); + RequestBody requestBody = RequestBody.create(MediaType.get("application/json;charset=UTF-8"), GsonUtil.jsonFromObject(request)); + mBindingcarApiService.getBindingcarInfo(requestBody) + .subscribeOn(Schedulers.io()) + .observeOn(AndroidSchedulers.mainThread()) + .subscribe(new Observer() { + @Override + public void onSubscribe(@NonNull Disposable d) { + Log.d("liyz", "getBindingcarInfo onSubscribe -----> "); + } + + @Override + public void onNext(@NonNull BindingcarInfo info) { + Log.d("liyz", "getBindingcarInfo onNext info =" + info.toString()); + } + + @Override + public void onError(@NonNull Throwable e) { + Log.d("liyz", "getBindingcarInfo onError e = " + e.toString() + "---e.getMessage = " + e.getMessage()); + } + + @Override + public void onComplete() { + Log.d("liyz", "getBindingcarInfo onComplete"); + } + }); + + } + + /** + * 绑定和修改绑定车辆 + */ + public void modifyBindingcar(BindingcarCallBack callBack) { + String sn = MoGoAiCloudClientConfig.getInstance().getSn(); + BindingcarRequest request = new BindingcarRequest(sn, "48:b0:2d:3a:9c:19"); + RequestBody requestBody = RequestBody.create(MediaType.get("application/json;charset=UTF-8"), GsonUtil.jsonFromObject(request)); + mBindingcarApiService.modifyBindingcarInfo(requestBody) + .subscribeOn(Schedulers.io()) + .observeOn(AndroidSchedulers.mainThread()) + .subscribe(new Observer() { + @Override + public void onSubscribe(@NonNull Disposable d) { + Log.d("liyz", "modifyBindingcar onSubscribe -----> "); + } + + @Override + public void onNext(@NonNull ModifyBindingcarInfo info) { + if (info.getData() != null) { + callBack.callBackResult(info); + } + Log.d("liyz", "modifyBindingcar onNext info " + info.toString()); + } + + @Override + public void onError(@NonNull Throwable e) { + Log.d("liyz", "modifyBindingcar onError e = " + e.toString() + "---e.getMessage = " + e.getMessage()); + } + + @Override + public void onComplete() { + Log.d("liyz", "modifyBindingcar onComplete "); + } + }); + } + + +} diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarRequest.java b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarRequest.java new file mode 100644 index 0000000000..e697f221ee --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/java/com/mogo/eagle/core/function/bindingcar/network/BindingcarRequest.java @@ -0,0 +1,40 @@ +package com.mogo.eagle.core.function.bindingcar.network; + +/** + * @author lixiaopeng + * @description + * @since: 11/15/21 + */ +public class BindingcarRequest { + private String mac; + private String sn; + + public BindingcarRequest(String mac, String sn) { + this.mac = mac; + this.sn = sn; + } + + public String getMac() { + return mac; + } + + public void setMac(String mac) { + this.mac = mac; + } + + public String getSn() { + return sn; + } + + public void setSn(String sn) { + this.sn = sn; + } + + @Override + public String toString() { + return "BindingcarRequest{" + + "mac='" + mac + '\'' + + ", sn='" + sn + '\'' + + '}'; + } +} diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_close.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_close.png new file mode 100755 index 0000000000..c1381dc44c Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_close.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_item_background_p.9.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_item_background_p.9.png new file mode 100644 index 0000000000..a5dedc9ca3 Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_item_background_p.9.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_message_background.9.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_message_background.9.png new file mode 100644 index 0000000000..bf455a0ea2 Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-ldpi/module_push_message_background.9.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_close.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_close.png new file mode 100755 index 0000000000..c1381dc44c Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_close.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_item_background_p.9.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_item_background_p.9.png new file mode 100644 index 0000000000..5b43f7451d Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_item_background_p.9.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_message_background.9.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_message_background.9.png new file mode 100644 index 0000000000..bf455a0ea2 Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-mdpi/module_push_message_background.9.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_close.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_close.png new file mode 100755 index 0000000000..bb3e2b1195 Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_close.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_dialog_close.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_dialog_close.png new file mode 100644 index 0000000000..ba03e033d8 Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_dialog_close.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_item_background_p.9.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_item_background_p.9.png new file mode 100644 index 0000000000..87a3f9179d Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_item_background_p.9.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_message_background.9.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_message_background.9.png new file mode 100644 index 0000000000..d4a8803684 Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable-xhdpi/module_push_message_background.9.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_clear_bg.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_clear_bg.xml new file mode 100644 index 0000000000..cb38368310 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_clear_bg.xml @@ -0,0 +1,7 @@ + + + + + + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_close.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_close.png new file mode 100755 index 0000000000..c1381dc44c Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_close.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_content_background.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_content_background.xml new file mode 100644 index 0000000000..8091d466be --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_content_background.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_decrease_timer_bkg.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_decrease_timer_bkg.xml new file mode 100644 index 0000000000..7031a78049 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_decrease_timer_bkg.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_dialog_check_background.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_dialog_check_background.xml new file mode 100644 index 0000000000..4d721f27c8 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_dialog_check_background.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_item_background.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_item_background.xml new file mode 100644 index 0000000000..a70936cd5d --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_item_background.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_item_background_origin.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_item_background_origin.xml new file mode 100644 index 0000000000..0d24d54394 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_item_background_origin.xml @@ -0,0 +1,7 @@ + + + + + + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_left_button.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_left_button.xml new file mode 100644 index 0000000000..c17bfd5f97 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_left_button.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_message_background.9.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_message_background.9.png new file mode 100644 index 0000000000..80ab4b841f Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_message_background.9.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_recycler_item_background.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_recycler_item_background.xml new file mode 100644 index 0000000000..2c16e3f684 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_recycler_item_background.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_right_button.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_right_button.xml new file mode 100644 index 0000000000..3f828dcc61 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_right_button.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_ui_delay_background.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_ui_delay_background.xml new file mode 100644 index 0000000000..77a14ee943 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_ui_delay_background.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_ui_ic_message2.png b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_ui_ic_message2.png new file mode 100644 index 0000000000..10f53d3374 Binary files /dev/null and b/core/function-impl/mogo-core-function-bindingcar/src/main/res/drawable/module_push_ui_ic_message2.png differ diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_dialog_check.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_dialog_check.xml new file mode 100644 index 0000000000..8b13014fe8 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_dialog_check.xml @@ -0,0 +1,43 @@ + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item.xml new file mode 100644 index 0000000000..f6375db0f6 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item.xml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item_origin.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item_origin.xml new file mode 100644 index 0000000000..3b2d2dc278 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item_origin.xml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item_vertical.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item_vertical.xml new file mode 100644 index 0000000000..d7829a2fb7 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_item_vertical.xml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_message_hisotry_fragment.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_message_hisotry_fragment.xml new file mode 100644 index 0000000000..15f8e2974e --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_message_hisotry_fragment.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_message_item.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_message_item.xml new file mode 100644 index 0000000000..a01bc6197c --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/layout/module_push_message_item.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-ldpi/dimens.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-ldpi/dimens.xml new file mode 100644 index 0000000000..1f1106b6c5 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-ldpi/dimens.xml @@ -0,0 +1,101 @@ + + + 16px + 352px + 32px + 32px + 16.5px + 12px + 20px + 18px + 210px + 13px + 15px + 18px + 320px + 180px + 16px + 320px + 160px + 9px + 20px + 0px + 48px + 10px + 14px + 28px + 20px + 20px + 90px + 5px + 84px + 38px + 36px + 100px + 64px + 24px + 16px + 44px + 2px + 20px + 27px + 16px + 64px + 8px + 16px + + 22px + 27px + 14px + 1.5px + 24px + 10px + 8px + 560px + 194px + 266px + 178px + 8px + 12px + 16px + 19px + 30px + 16px + 8px + 17px + 19px + 16px + 11px + 6px + 18px + 10px + 17px + 10px + 8px + 242px + 270px + 374px + 24px + 19px + 8px + 328px + 164px + 15px + 150px + 20px + 0px + 310px + 350px + 60px + 2px + 2px + 8px + 28px + 16px + 16px + 12px + 5px + 118px + 86px + 8px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-mdpi/dimens.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-mdpi/dimens.xml new file mode 100644 index 0000000000..1f1106b6c5 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-mdpi/dimens.xml @@ -0,0 +1,101 @@ + + + 16px + 352px + 32px + 32px + 16.5px + 12px + 20px + 18px + 210px + 13px + 15px + 18px + 320px + 180px + 16px + 320px + 160px + 9px + 20px + 0px + 48px + 10px + 14px + 28px + 20px + 20px + 90px + 5px + 84px + 38px + 36px + 100px + 64px + 24px + 16px + 44px + 2px + 20px + 27px + 16px + 64px + 8px + 16px + + 22px + 27px + 14px + 1.5px + 24px + 10px + 8px + 560px + 194px + 266px + 178px + 8px + 12px + 16px + 19px + 30px + 16px + 8px + 17px + 19px + 16px + 11px + 6px + 18px + 10px + 17px + 10px + 8px + 242px + 270px + 374px + 24px + 19px + 8px + 328px + 164px + 15px + 150px + 20px + 0px + 310px + 350px + 60px + 2px + 2px + 8px + 28px + 16px + 16px + 12px + 5px + 118px + 86px + 8px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-xhdpi-2560x1440/dimens.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-xhdpi-2560x1440/dimens.xml new file mode 100644 index 0000000000..4afc379245 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-xhdpi-2560x1440/dimens.xml @@ -0,0 +1,39 @@ + + + + 230px + 230px + 230px + 30px + 21px + 34px + 33px + 2px + 120px + 30px + 55px + 42px + 208px + 394px + 42px + 567px + 100px + 20px + 34px + 34px + + + 1200px + 763px + 32px + 107px + 107px + 40px + 54px + 56px + 1000px + 33px + 43px + 20px + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-xhdpi/dimens.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-xhdpi/dimens.xml new file mode 100644 index 0000000000..c7e71bf8e5 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values-xhdpi/dimens.xml @@ -0,0 +1,101 @@ + + + 30px + 660px + 60px + 60px + 31px + 22px + 38px + 32px + 394px + 24px + 28px + 34px + 600px + 338px + 30px + 605px + 300px + 16px + 53px + 0px + 90px + 20px + 26px + 50px + 36px + 36px + 160px + 10px + 151px + 72px + 68px + 180px + 120px + 50px + 22px + 6px + 84px + + 40px + 52px + 28px + 120px + 11px + 26px + 42px + 51px + 27px + 3px + 45px + 20px + 16px + 1000px + 350px + 480px + 320px + 17px + 21px + 30px + 33px + 50px + 30px + 14px + 30px + 27px + 30px + 21px + 11px + 34px + 20px + 30px + 20px + 15px + 242px + 486px + 700px + 30px + 33px + 16px + 640px + 296px + 30px + 250px + 20px + 0px + 618px + 350px + 120px + 20px + 20px + 20px + 50px + 28px + 29px + 22px + 11px + 212px + 154px + 10px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/attr.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/attr.xml new file mode 100644 index 0000000000..ca8014fc39 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/attr.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/colors.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/colors.xml new file mode 100644 index 0000000000..d01c09cbad --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFFFFFFF + #FFFFFF + #B2FFFFFF + #999999 + #B3FFFFFF + #5A8EFD + #E63B4577 + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/dimens.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/dimens.xml new file mode 100644 index 0000000000..dc5f0d6635 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/dimens.xml @@ -0,0 +1,126 @@ + + + 16px + 352px + 32px + 32px + 16.5px + 12px + 20px + 18px + 210px + 13px + 15px + 18px + 320px + 180px + 16px + 320px + 160px + 9px + 20px + 0px + 48px + 10px + 14px + 50px + 20px + 20px + 90px + 5px + 84px + 38px + 36px + 100px + 64px + 24px + 16px + 44px + 2px + 20px + 27px + 16px + 64px + 8px + 16px + + 22px + 27px + 14px + 1.5px + 24px + 10px + 8px + 560px + 194px + 266px + 178px + 8px + 12px + 16px + 19px + 30px + 16px + 8px + 17px + 19px + 16px + 11px + 6px + 18px + 10px + 17px + 10px + 8px + 242px + 270px + 374px + 24px + 19px + 8px + 328px + 164px + 15px + 150px + 20px + 0px + 310px + 350px + 60px + 2px + 2px + 8px + 28px + 16px + 16px + 12px + 5px + 118px + 86px + 8px + + + 34px + 567px + 100px + + 2px + 120px + 30px + 55px + 42px + 208px + + 1200px + 763px + 32px + 107px + 107px + 40px + 54px + 56px + 1000px + 33px + 43px + 20px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/strings.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/strings.xml new file mode 100644 index 0000000000..648d863848 --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/strings.xml @@ -0,0 +1,7 @@ + + mogo-core-function-notice + 清除 + 清空历史消息 + 暂无消息 + 查看 + diff --git a/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/styles.xml b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/styles.xml new file mode 100644 index 0000000000..bb44cc75bc --- /dev/null +++ b/core/function-impl/mogo-core-function-bindingcar/src/main/res/values/styles.xml @@ -0,0 +1,9 @@ + + + + diff --git a/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/net/ChatServiceModel.kt b/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/net/ChatServiceModel.kt index 58072fd676..9a88fd79e5 100644 --- a/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/net/ChatServiceModel.kt +++ b/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/net/ChatServiceModel.kt @@ -1,14 +1,11 @@ package com.mogo.eagle.core.function.chat.facade.net -import com.alibaba.android.arouter.launcher.ARouter import com.google.gson.Gson -import com.google.gson.JsonElement import com.google.gson.JsonObject import com.mogo.cloud.passport.MoGoAiCloudClientConfig import com.mogo.commons.AbsMogoApplication import com.mogo.eagle.core.data.BaseResponse import com.mogo.eagle.core.data.chat.UserInfo -import com.mogo.eagle.core.data.constants.MogoServicePaths import com.mogo.eagle.core.function.api.chat.biz.ChatConsts import com.mogo.eagle.core.function.api.chat.biz.IMCallType.CALL_TYPE_VOICE import com.mogo.eagle.core.function.chat.facade.bridge.BridgeApi @@ -18,8 +15,8 @@ import com.mogo.eagle.core.function.chat.facade.net.bean.* import com.mogo.eagle.core.function.chat.facade.utils.log import com.mogo.map.MogoLocationClient import com.mogo.service.IMogoServiceApis +import com.mogo.eagle.core.network.MoGoRetrofitFactory import retrofit2.http.* -import java.lang.IllegalStateException internal class ChatServiceModel { @@ -35,11 +32,12 @@ internal class ChatServiceModel { } ?: false } - suspend fun queryUserInfo(sn: String): Pair? { + suspend fun queryUserInfo(sn: String): Pair? { val sns = arrayListOf(sn) val requestData = SnArrayRequestBody().also { it.sns = sns } return apiCall { - getNetWorkApi(getConfig())?.queryUserInfoBySnS(requestData) ?: throw IllegalStateException("apis is null.") + getNetWorkApi(getConfig())?.queryUserInfoBySnS(requestData) + ?: throw IllegalStateException("apis is null.") }.let { itx -> if (itx.code != 0 && itx.code != 200) { return@let Pair(Error(itx.code, itx.msg), null) @@ -84,11 +82,13 @@ internal class ChatServiceModel { map["data"] = Gson().toJson(params) return if (params.type == CALL_TYPE_VOICE.type) { apiCall { - getNetWorkApi()?.requestConnectStatus(sn, map) ?: throw IllegalStateException("apis is null.") + getNetWorkApi()?.requestConnectStatus(sn, map) + ?: throw IllegalStateException("apis is null.") } } else { apiCall { - getNetWorkApi()?.requestVehicleTeamConnectStatus(map) ?: throw IllegalStateException("apis is null.") + getNetWorkApi()?.requestVehicleTeamConnectStatus(map) + ?: throw IllegalStateException("apis is null.") } } } @@ -99,7 +99,8 @@ internal class ChatServiceModel { map["sn"] = MoGoAiCloudClientConfig.getInstance().sn map["data"] = Gson().toJson(param) return apiCall { - getNetWorkApi()?.inviteJoinVehicleTeam(map) ?: throw IllegalStateException("apis is null.") + getNetWorkApi()?.inviteJoinVehicleTeam(map) + ?: throw IllegalStateException("apis is null.") } } @@ -122,8 +123,7 @@ internal class ChatServiceModel { } private fun getNetWorkApi(baseUrl: String = ChatHttp.getBaseUrl()): HttpApi? { - val serviceApi: IMogoServiceApis? = ARouter.getInstance().build(MogoServicePaths.PATH_SERVICE_APIS).navigation() as? IMogoServiceApis - return serviceApi?.networkApi?.createNoCallAdapter(HttpApi::class.java, baseUrl) + return MoGoRetrofitFactory.getInstanceNoCallAdapter(baseUrl).create(HttpApi::class.java) } } @@ -131,7 +131,10 @@ internal interface HttpApi { @FormUrlEncoded @POST("/yycp-chat-service/car/voiceRoom/no/operate/v1") - suspend fun requestConnectStatus(@Query("sn") sn: String, @FieldMap connectStatus: Map): BaseResponse + suspend fun requestConnectStatus( + @Query("sn") sn: String, + @FieldMap connectStatus: Map + ): BaseResponse //邀请加入车队 @FormUrlEncoded diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt index 7b7ea646ed..6403838858 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt @@ -4,12 +4,15 @@ import android.annotation.SuppressLint import android.content.Context import android.view.View import com.alibaba.android.arouter.facade.annotation.Route -import com.mogo.eagle.core.data.chain.ChainLogParam import com.mogo.eagle.core.data.constants.MogoServicePaths +import com.mogo.eagle.core.data.deva.chain.ChainLogParam +import com.mogo.eagle.core.data.deva.scene.SceneModule +import com.mogo.eagle.core.data.deva.scene.SceneTAG import com.mogo.eagle.core.function.api.devatools.IDevaToolsProvider import com.zhjt.mogo_core_function_devatools.badcase.BadCaseManager import com.zhjt.mogo_core_function_devatools.feedback.FeedbackManager import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchManager +import com.zhjt.mogo_core_function_devatools.scene.SceneManager.Companion.sceneManager import com.zhjt.mogo_core_function_devatools.trace.TraceManager.Companion.traceManager import record_cache.RecordPanelOuterClass @@ -32,8 +35,8 @@ class DevaToolsProvider : IDevaToolsProvider { MogoLogCatchManager.startCatchLog() } - override fun startLogCatch(duration: Int) { - MogoLogCatchManager.startCatchLog(duration) + override fun startLogCatch(duration: Int, logPrefixName: String?) { + MogoLogCatchManager.startCatchLog(duration, logPrefixName) } override fun stopLogCatch() { @@ -49,6 +52,22 @@ class DevaToolsProvider : IDevaToolsProvider { traceManager.refreshTraceInfo(map) } + override fun getModuleTAG(): MutableMap { + return sceneManager.getModuleLogTAG() + } + + override fun updateModuleTAG(moduleTag: MutableMap) { + sceneManager.updateModuleTAG(moduleTag) + } + + override fun getSceneLogTAG(): MutableMap { + return sceneManager.getSceneLogTAG() + } + + override fun updateSceneTAG(sceneTag: MutableMap) { + sceneManager.updateSceneTAG(sceneTag) + } + override fun initBadCase(view: View, onShow: (() -> Unit)?, onHide: (() -> Unit)?) { BadCaseManager.init(view, onShow, onHide) } diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/feedback/FeedbackManager.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/feedback/FeedbackManager.kt index 6b3ed93c25..0cc37542ba 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/feedback/FeedbackManager.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/feedback/FeedbackManager.kt @@ -9,6 +9,7 @@ import com.mogo.cloud.passport.MoGoAiCloudClientConfig import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotIdentifyListener import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotManager import com.mogo.eagle.core.function.call.autopilot.CallerAutopilotIdentifyListenerManager +import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsManager import com.mogo.eagle.core.function.call.hmi.CallerHmiManager import com.mogo.eagle.core.utilcode.kotlin.onDetach import com.mogo.eagle.core.utilcode.kotlin.safeCancel @@ -134,12 +135,14 @@ internal object FeedbackManager { private fun startRecordLog(record: AutoPilotRecord) { //val fileName = record.fileName - //TODO zhongchao 添加全量日志开始录制 + //添加全量日志开始录制 + CallerDevaToolsManager.startCatchLog(1,record.fileName) } private fun stopRecordLog(newRecord: AutoPilotRecord) { //val fileName = record.fileName - //TODO zhongchao 添加全量日志结束录制 + //添加全量日志结束录制 + CallerDevaToolsManager.startCatchLog() } private suspend fun upload(ctx: Context, badCase: BadCase, checked: Reason) { diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt index 2cb25a49a9..f0c5c94477 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt @@ -10,12 +10,12 @@ import com.mogo.commons.AbsMogoApplication import com.mogo.commons.debug.DebugConfig import com.mogo.eagle.core.data.app.AppConfigInfo import com.mogo.eagle.core.data.constants.MoGoConfig -import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_DEVA import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotManager import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsListenerManager import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger import com.mogo.eagle.core.utilcode.mogo.logger.LogLevel import com.mogo.eagle.core.utilcode.mogo.logger.Logger +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_DEVA import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr import com.mogo.eagle.core.utilcode.mogo.toast.TipToast import com.mogo.eagle.core.utilcode.util.ThreadUtils @@ -103,14 +103,14 @@ object MogoLogCatchManager : IMogoOnMessageListener, Handl return false } - fun startCatchLog(duration: Int = 10) { + fun startCatchLog(duration: Int = 10, logPrefixName: String? = null) { if (catchingList.contains(MANUAL_CATCH_PKG_NAME)) { TipToast.shortTip("已经在抓取日志了,请稍后再试") } else { CallerLogger.d("$M_DEVA$TAG", "开始抓取日志==== duration : $duration") manualContent.type = START_CATCH_LOG manualContent.duration = duration - startCatchLog(manualContent) + startCatchLog(manualContent, logPrefixName) } } @@ -120,7 +120,7 @@ object MogoLogCatchManager : IMogoOnMessageListener, Handl stopCatchLog(manualContent) } - private fun startCatchLog(content: RemoteLogPushContent) { + private fun startCatchLog(content: RemoteLogPushContent, logPrefixName: String? = null) { catchingList.add(content.pkgName) var delay = (content.duration).toLong() handler.removeMessages(MSG_TRY_CLOSE_LOG) @@ -136,6 +136,7 @@ object MogoLogCatchManager : IMogoOnMessageListener, Handl mContext, MoGoAiCloudClientConfig.getInstance().sn, AppConfigInfo.toString(), + logPrefixName?.replace("_", "-"), content, this ) diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/scene/SceneManager.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/scene/SceneManager.kt index a1ad4ca389..55205d11a9 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/scene/SceneManager.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/scene/SceneManager.kt @@ -1,17 +1,131 @@ package com.zhjt.mogo_core_function_devatools.scene +import com.mogo.eagle.core.data.deva.scene.SceneLogTAG +import com.mogo.eagle.core.data.deva.scene.SceneModule +import com.mogo.eagle.core.data.deva.scene.SceneModuleTAG +import com.mogo.eagle.core.data.deva.scene.SceneTAG +import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsListenerManager +import com.mogo.eagle.core.utilcode.mogo.logger.scene.Scene.Companion.scene +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_ADAS_IMPL +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_BUS +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_DEVA +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_HMI +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_NETWORK +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_OBU +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_OLD_ROUTE +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_TAXI +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_TAXI_P +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_V2X +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneLogCache -//todo 1. SceneLogCache增加模块名称,提供场景需要 -//todo 2. 对特定场景提供数据, 网约车,调度... + +//1. SceneLogCache增加模块名称,提供场景需要 +//2. 对特定场景提供数据, 网约车,调度... class SceneManager { companion object { + + private const val ADAS = "ADAS" + private const val DEVA = "DEVA" + private const val HMI = "HMI" + private const val OBU = "OBU" + private const val V2X = "V2X" + private const val ROUTE = "ROUTE" + private const val NET = "NET" + private const val BUS = "BUS" + private const val TAXI = "TAXI" + private const val TAXI_P = "TAXI-P" + val sceneManager: SceneManager by lazy(LazyThreadSafetyMode.SYNCHRONIZED) { SceneManager() } } - fun init(){ + private var sceneCache: MutableMap = scene.getSceneCache() + private var sceneModuleTAG: SceneModuleTAG = SceneModuleTAG(mutableMapOf()) + private var sceneLogTAG: SceneLogTAG = SceneLogTAG(mutableMapOf()) + fun init() { + //过滤所需条件 + sceneModuleTAG.map[ADAS] = SceneModule(true, M_ADAS_IMPL) + sceneModuleTAG.map[DEVA] = SceneModule(true, M_DEVA) + sceneModuleTAG.map[HMI] = SceneModule(true, M_HMI) + sceneModuleTAG.map[OBU] = SceneModule(false, M_OBU) + sceneModuleTAG.map[V2X] = SceneModule(true, M_V2X) + sceneModuleTAG.map[ROUTE] = SceneModule(true, M_OLD_ROUTE) + sceneModuleTAG.map[NET] = SceneModule(true, M_NETWORK) + sceneModuleTAG.map[BUS] = SceneModule(false, M_BUS) + sceneModuleTAG.map[TAXI] = SceneModule(false, M_TAXI) + sceneModuleTAG.map[TAXI_P] = SceneModule(false, M_TAXI_P) + + sceneLogTAG.map[TAXI] = SceneTAG(false) + sceneLogTAG.map[BUS] = SceneTAG(false) + } + + fun getModuleLogTAG(): MutableMap { + return sceneModuleTAG.map + } + + fun getSceneLogTAG(): MutableMap { + return sceneLogTAG.map + } + + fun updateModuleTAG(moduleTag: MutableMap) { + moduleTag.iterator().forEach { map -> + val name = map.value.name + val logger = map.value.log + name?.let { + val sceneLogCache = sceneCache[it] + sceneLogCache?.let { logCache -> + logCache.logger = logger + sceneCache[it] = logCache + } + } + } + scene.updateSceneCache(sceneCache) + } + + fun updateSceneTAG(sceneTag: MutableMap) { + sceneTag.iterator().forEach { map -> + realUpdateSceneTAG(map.key, map.value.log) + } + updateSceneModuleTAG() + } + + private fun updateSceneModuleTAG() { + sceneModuleTAG.map.iterator().forEach { map -> + val sceneModule = map.value + val sceneLogCache = sceneCache[sceneModule.name] + sceneLogCache?.let { + sceneModule.log = it.logger + } + map.setValue(sceneModule) + } + //call back + CallerDevaToolsListenerManager.invokeDevaToolsModuleLogChanges(sceneModuleTAG.map) + } + + private fun realUpdateSceneTAG(name: String, logger: Boolean) { + when (name) { + TAXI -> { + sceneCache[M_TAXI]?.logger = logger + sceneCache[M_TAXI_P]?.logger = logger + sceneCache[M_NETWORK]?.logger = logger + sceneCache[M_ADAS_IMPL]?.logger = logger + sceneCache[M_HMI]?.logger = logger + sceneCache[M_DEVA]?.logger = logger + sceneCache[M_OLD_ROUTE]?.logger = logger + scene.updateSceneCache(sceneCache) + } + BUS -> { + sceneCache[M_BUS]?.logger = logger + sceneCache[M_NETWORK]?.logger = logger + sceneCache[M_ADAS_IMPL]?.logger = logger + sceneCache[M_HMI]?.logger = logger + sceneCache[M_DEVA]?.logger = logger + sceneCache[M_OLD_ROUTE]?.logger = logger + scene.updateSceneCache(sceneCache) + } + } } } \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kt index 60444f2466..23694c81a2 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kt @@ -2,8 +2,8 @@ package com.zhjt.mogo_core_function_devatools.trace import android.content.Context import com.mogo.cloud.passport.MoGoAiCloudClientConfig -import com.mogo.eagle.core.data.chain.ChainConstant -import com.mogo.eagle.core.data.chain.ChainLogParam +import com.mogo.eagle.core.data.deva.chain.ChainConstant +import com.mogo.eagle.core.data.deva.chain.ChainLogParam import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_DEVA import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger import com.mogo.eagle.core.utilcode.util.DeviceUtils diff --git a/core/function-impl/mogo-core-function-hmi/src/main/AndroidManifest.xml b/core/function-impl/mogo-core-function-hmi/src/main/AndroidManifest.xml index a606583b11..dbd54a7ca7 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/AndroidManifest.xml +++ b/core/function-impl/mogo-core-function-hmi/src/main/AndroidManifest.xml @@ -46,5 +46,13 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/BindingcarBroadcastReceiver.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/BindingcarBroadcastReceiver.kt new file mode 100644 index 0000000000..2a672a5411 --- /dev/null +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/BindingcarBroadcastReceiver.kt @@ -0,0 +1,41 @@ +package com.mogo.eagle.core.function.hmi.receiver + +import android.content.BroadcastReceiver +import android.content.Context +import android.content.Intent +import com.mogo.eagle.core.function.call.hmi.CallerHmiManager.showBindingcarDialog +import com.mogo.eagle.core.function.call.hmi.CallerHmiManager.showBrakeLight +import com.mogo.eagle.core.function.call.hmi.CallerHmiManager.showModifyBindingcarDialog +import com.mogo.eagle.core.function.call.hmi.CallerHmiManager.showTurnLight + +/** + * 绑定车辆 + * + * @author lixiaopeng + */ +class BindingcarBroadcastReceiver : BroadcastReceiver() { + + companion object { + private const val TAG = "BindingcarBroadcastReceiver" + } + + override fun onReceive(context: Context, intent: Intent) { + try { + val type = intent.getIntExtra("type", 0) + showTurnLight(type) + } catch (e: Exception) { + e.printStackTrace() + } + } + + + private fun showTurnLight( //type 1获取车辆信息,2修改绑定信息 + type: Int + ) { + if (type == 1) { + showBindingcarDialog() + } else if (type == 2) { + showModifyBindingcarDialog() + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/TurnLightBroadcastReceiver.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/TurnLightBroadcastReceiver.kt index a5a3e6f644..397103c575 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/TurnLightBroadcastReceiver.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/TurnLightBroadcastReceiver.kt @@ -3,16 +3,8 @@ package com.mogo.eagle.core.function.hmi.receiver import android.content.BroadcastReceiver import android.content.Context import android.content.Intent -import com.alibaba.android.arouter.launcher.ARouter -import com.mogo.eagle.core.data.constants.MogoServicePaths -import com.mogo.eagle.core.data.notice.NoticeNormalData -import com.mogo.eagle.core.function.call.hmi.CallerHmiManager import com.mogo.eagle.core.function.call.hmi.CallerHmiManager.showBrakeLight import com.mogo.eagle.core.function.call.hmi.CallerHmiManager.showTurnLight -import com.mogo.eagle.core.function.hmi.WaringConst -import com.mogo.eagle.core.utilcode.mogo.logger.Logger -import com.mogo.eagle.core.utilcode.util.SharedPrefs -import com.mogo.service.IMogoServiceApis /** * 转向灯,刹车 @@ -37,8 +29,8 @@ class TurnLightBroadcastReceiver : BroadcastReceiver() { private fun showTurnLight( //type 1,转向灯,2刹车 - type: Int, - lightInt: Int + type: Int, + lightInt: Int ) { if (type == 1) { showTurnLight(lightInt) //设置转向灯 diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XLimitingVelocityBroadcastReceiver.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XLimitingVelocityBroadcastReceiver.kt index 3ffff859ef..e8d3961a3e 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XLimitingVelocityBroadcastReceiver.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XLimitingVelocityBroadcastReceiver.kt @@ -3,13 +3,10 @@ package com.mogo.eagle.core.function.hmi.receiver import android.content.BroadcastReceiver import android.content.Context import android.content.Intent -import com.alibaba.android.arouter.launcher.ARouter -import com.mogo.eagle.core.data.constants.MogoServicePaths import com.mogo.eagle.core.function.call.hmi.CallerHmiManager import com.mogo.eagle.core.function.hmi.WaringConst import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_HMI -import com.mogo.service.IMogoServiceApis /** * V2X 预警广播接收。用于跨应用,跨进程,内部也可以通过这种方式 控制限速标志 @@ -21,13 +18,10 @@ class V2XLimitingVelocityBroadcastReceiver : BroadcastReceiver() { companion object { private const val TAG = "V2XLimitingVelocityBroadcastReceiver" - private var mMogoServiceApis: IMogoServiceApis? = null } override fun onReceive(context: Context, intent: Intent) { try { - mMogoServiceApis = ARouter.getInstance().build(MogoServicePaths.PATH_SERVICE_APIS) - .navigation(context) as IMogoServiceApis mContext = context val limitingVelocityIsShow = diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XTrafficLightBroadcastReceiver.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XTrafficLightBroadcastReceiver.kt index a68d67770c..b6f6bf2c32 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XTrafficLightBroadcastReceiver.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/receiver/V2XTrafficLightBroadcastReceiver.kt @@ -3,11 +3,8 @@ package com.mogo.eagle.core.function.hmi.receiver import android.content.BroadcastReceiver import android.content.Context import android.content.Intent -import com.alibaba.android.arouter.launcher.ARouter -import com.mogo.eagle.core.data.constants.MogoServicePaths import com.mogo.eagle.core.function.call.hmi.CallerHmiManager import com.mogo.eagle.core.function.hmi.WaringConst -import com.mogo.service.IMogoServiceApis /** * V2X 预警广播接收。用于跨应用,跨进程,内部也可以通过这种方式 触发红绿灯场景 @@ -19,13 +16,10 @@ class V2XTrafficLightBroadcastReceiver : BroadcastReceiver() { companion object { private const val TAG = "V2XTrafficLightBroadcastReceiver" - private var mMogoServiceApis: IMogoServiceApis? = null } override fun onReceive(context: Context, intent: Intent) { try { - mMogoServiceApis = ARouter.getInstance().build(MogoServicePaths.PATH_SERVICE_APIS) - .navigation(context) as IMogoServiceApis mContext = context val trafficLightIsShow = diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt index 7e343fef53..d7d8f7a213 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/MoGoHmiFragment.kt @@ -36,10 +36,13 @@ import com.mogo.eagle.core.function.hmi.R import com.mogo.eagle.core.function.hmi.WaringConst import com.mogo.eagle.core.function.hmi.notification.WarningFloat import com.mogo.eagle.core.function.hmi.notification.anim.DefaultAnimator +import com.mogo.eagle.core.function.hmi.ui.bindingcar.ModifyBindingCarDialog +import com.mogo.eagle.core.function.hmi.ui.bindingcar.ToBindingCarDialog import com.mogo.eagle.core.function.hmi.ui.camera.CameraListView import com.mogo.eagle.core.function.hmi.ui.notice.NoticeBannerView import com.mogo.eagle.core.function.hmi.ui.notice.NoticeNormalBannerView import com.mogo.eagle.core.function.hmi.ui.setting.DebugSettingView +import com.mogo.eagle.core.function.hmi.ui.tools.AdUpgradeDialog import com.mogo.eagle.core.function.hmi.ui.tools.AutoPilotAndCheckView import com.mogo.eagle.core.function.hmi.ui.widget.V2XNotificationView import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger @@ -823,6 +826,24 @@ class MoGoHmiFragment : MvpFragment } } + private var modifyBindingCarDialog: ModifyBindingCarDialog? = null + private var toBindingCarDialog: ToBindingCarDialog? = null + + override fun showToBindingcarDialog() { + if (toBindingCarDialog == null) { + toBindingCarDialog = ToBindingCarDialog(requireContext()) + } + toBindingCarDialog!!.showToBindingcarDialog() + } + + override fun showModifyBindingcarDialog() { + if (modifyBindingCarDialog == null) { + modifyBindingCarDialog = ModifyBindingCarDialog(requireContext()) + } + modifyBindingCarDialog!!.showModifyBindingcarDialog() + + } + override fun setTurnLightFunction(isOpen: Boolean) { HmiBuildConfig.isShowTurnLightView = isOpen } @@ -933,4 +954,5 @@ class MoGoHmiFragment : MvpFragment } + } \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/bindingcar/ModifyBindingCarDialog.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/bindingcar/ModifyBindingCarDialog.kt new file mode 100644 index 0000000000..12912d60fe --- /dev/null +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/bindingcar/ModifyBindingCarDialog.kt @@ -0,0 +1,75 @@ +package com.mogo.eagle.core.function.hmi.ui.bindingcar + +import android.content.Context +import android.widget.TextView +import androidx.lifecycle.LifecycleObserver +import com.mogo.eagle.core.function.call.bindingcar.CallerBindingcarManager +import com.mogo.eagle.core.function.hmi.R +import com.mogo.eagle.core.utilcode.mogo.toast.TipToast +import com.mogo.module.common.dialog.BaseFloatDialog +import com.mogo.service.IMogoServiceApis +import com.mogo.service.statusmanager.IMogoStatusChangedListener +import com.mogo.service.statusmanager.StatusDescriptor + + +/** + * @brief 修改车辆对话框 + * @author lixiaopeng + */ +class ModifyBindingCarDialog(context: Context) : BaseFloatDialog(context), LifecycleObserver{ + + private val TAG = "BindingCarDialog" + private var confirmTv: TextView? = null + private var cancleTv: TextView? = null + + private var mServiceApis: IMogoServiceApis? = null + private val statusChangedListenerForCheckNotice = IMogoStatusChangedListener { descriptor, isTrue -> + if (descriptor == StatusDescriptor.MAIN_PAGE_IS_BACKGROUND) { + dismiss() + } + } + + init { + setContentView(R.layout.dialog_modify_bindingcar) + setCanceledOnTouchOutside(true) + + confirmTv = findViewById(R.id.tv_bindingcar_confirm) + cancleTv = findViewById(R.id.tv_bindingcar_cancel) + + confirmTv?.setOnClickListener { + modifyBindingcar() + } + + cancleTv?.setOnClickListener { + dismiss() + } + } + + /** + * 修改绑定车机 TODO + */ + fun modifyBindingcar() { + CallerBindingcarManager.getBindingcarProvider().modifyCarInfo { + if (it.code == 200) { + TipToast.shortTip("修改绑定成功") + } else { + TipToast.shortTip("修改绑定失败") + } + } + dismiss() + } + + override fun dismiss() { + super.dismiss() + } + + fun showModifyBindingcarDialog() { + if (isShowing) { + return + } + + show() + } + + +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/bindingcar/ToBindingCarDialog.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/bindingcar/ToBindingCarDialog.kt new file mode 100644 index 0000000000..db27456c94 --- /dev/null +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/bindingcar/ToBindingCarDialog.kt @@ -0,0 +1,75 @@ +package com.mogo.eagle.core.function.hmi.ui.bindingcar + +import android.content.Context +import android.widget.TextView +import androidx.lifecycle.LifecycleObserver +import com.mogo.eagle.core.function.call.bindingcar.CallerBindingcarManager +import com.mogo.eagle.core.function.hmi.R +import com.mogo.eagle.core.utilcode.mogo.toast.TipToast +import com.mogo.module.common.dialog.BaseFloatDialog +import com.mogo.service.IMogoServiceApis +import com.mogo.service.statusmanager.IMogoStatusChangedListener +import com.mogo.service.statusmanager.StatusDescriptor + + +/** + * @brief 绑定车辆对话框 + * @author lixiaopeng + */ +class ToBindingCarDialog(context: Context) : BaseFloatDialog(context), LifecycleObserver{ + + private val TAG = "ToBindingCarDialog" + private var confirmTv: TextView? = null + private var cancleTv: TextView? = null + + private var mServiceApis: IMogoServiceApis? = null + private val statusChangedListenerForCheckNotice = IMogoStatusChangedListener { descriptor, isTrue -> + if (descriptor == StatusDescriptor.MAIN_PAGE_IS_BACKGROUND) { + dismiss() + } + } + + init { + setContentView(R.layout.dialog_to_bindingcar) + setCanceledOnTouchOutside(true) + + confirmTv = findViewById(R.id.tv_to_bindingcar_confirm) + cancleTv = findViewById(R.id.tv_to_bindingcar_cancel) + + confirmTv?.setOnClickListener { + toBindingcar() + } + + cancleTv?.setOnClickListener { + dismiss() + } + } + + /** + * 修改绑定车机 TODO + */ + fun toBindingcar() { + CallerBindingcarManager.getBindingcarProvider().modifyCarInfo { + if (it.code == 200) { + TipToast.shortTip("绑定成功") + } else { + TipToast.shortTip("绑定失败") + } + } + dismiss() + } + + override fun dismiss() { + super.dismiss() + } + + fun showToBindingcarDialog() { + if (isShowing) { + return + } + + show() + } + + +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/notice/NoticeCheckDialog.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/notice/NoticeCheckDialog.kt index 6d2c91ec3c..6960ca946b 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/notice/NoticeCheckDialog.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/notice/NoticeCheckDialog.kt @@ -95,7 +95,7 @@ class NoticeCheckDialog(context: Context) : BaseFloatDialog(context), LifecycleO } mServiceApis = MogoApisHandler.getInstance().apis - mServiceApis?.getStatusManagerApi()?.registerStatusChangedListener(TAG, StatusDescriptor.MAIN_PAGE_IS_BACKGROUND, statusChangedListenerForCheckNotice) + mServiceApis?.statusManagerApi?.registerStatusChangedListener(TAG, StatusDescriptor.MAIN_PAGE_IS_BACKGROUND, statusChangedListenerForCheckNotice) } diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt index ce0d42f47a..dce53f699f 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/setting/DebugSettingView.kt @@ -11,9 +11,10 @@ import com.mogo.commons.AbsMogoApplication import com.mogo.commons.debug.DebugConfig import com.mogo.eagle.core.data.app.AppConfigInfo import com.mogo.eagle.core.data.autopilot.* -import com.mogo.eagle.core.data.chain.ChainConstant +import com.mogo.eagle.core.data.deva.chain.ChainConstant import com.mogo.eagle.core.data.config.FunctionBuildConfig import com.mogo.eagle.core.data.constants.MoGoConfig +import com.mogo.eagle.core.data.deva.scene.SceneModule import com.mogo.eagle.core.data.enums.TrafficTypeEnum import com.mogo.eagle.core.data.map.MogoLocation import com.mogo.eagle.core.data.obu.ObuStatusInfo @@ -424,6 +425,10 @@ class DebugSettingView @JvmOverloads constructor( } } } + + override fun moduleLogChanged(moduleTag: MutableMap) { + //todo 模块日志 tag 发生变化,需要更新对应 UI + } }) tbLogDebugView.setOnCheckedChangeListener { _, isChecked -> if (isChecked) { diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/tools/AutoPilotAndCheckView.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/tools/AutoPilotAndCheckView.kt index 960adf8bbf..72fc255bcd 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/tools/AutoPilotAndCheckView.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/tools/AutoPilotAndCheckView.kt @@ -37,6 +37,7 @@ class AutoPilotAndCheckView @JvmOverloads constructor( private var clickListener: ClickListener? = null private var keyBoardUtil: KeyBoardUtil? = null private var connectStatus = false + private var lastTime = 0L init { LayoutInflater.from(context).inflate(R.layout.view_auto_pilot_check, this, true) @@ -51,10 +52,6 @@ class AutoPilotAndCheckView @JvmOverloads constructor( keyBoardUtil?.setActionListener { inputContent -> inputContent.toIntOrNull()?.let { speed -> when { - !connectStatus -> { - ToastUtils.showShort("设置车速失败,请启动域控制器") - keyBoardUtil?.hideKeyboard() - } speed > 60 -> { // 设置失败键盘不消失,让用户直接修改 ToastUtils.showShort("超过最大限速值60,设置失败") @@ -90,22 +87,28 @@ class AutoPilotAndCheckView @JvmOverloads constructor( ivDebugFeedback.onClick { clickListener?.showFeedbackView() } - etInputSpeed.setOnTouchListener { v, _ -> - if (!connectStatus) { - ToastUtils.showShort("设置车速失败,请启动域控制器") - keyBoardUtil?.hideKeyboard() - return@setOnTouchListener true - } else { - llSpeedPosition.background = resources.getDrawable(R.drawable.pilot_speed_high_light_bg) - if (etInputSpeed.hasFocusable()) { + etInputSpeed.setOnFocusChangeListener { v, hasFocus -> + when { + hasFocus -> { + llSpeedPosition.background = resources.getDrawable(R.drawable.pilot_speed_high_light_bg) if (keyBoardUtil == null) { keyBoardUtil = KeyBoardUtil(sKeyBoardView, etInputSpeed) } keyBoardUtil?.showKeyboard() } - if (!etInputSpeed.hasFocus()) { - etInputSpeed.requestFocus() - } + else -> llSpeedPosition.background = resources.getDrawable(R.drawable.pilot_speed_bg) + } + } + etInputSpeed.setOnTouchListener { v, event -> + var curTime = System.currentTimeMillis() + if (curTime - lastTime < 1000) { + return@setOnTouchListener true + } + if (!connectStatus) { + ToastUtils.showShort("设置车速失败,请启动域控制器") + keyBoardUtil?.hideKeyboard() + return@setOnTouchListener true + } else { return@setOnTouchListener false } } diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/turnlight/TurnLightViewStatus.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/turnlight/TurnLightViewStatus.kt index f71a762d9d..222aad6344 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/turnlight/TurnLightViewStatus.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/turnlight/TurnLightViewStatus.kt @@ -9,6 +9,9 @@ import android.view.animation.Animation import android.view.animation.LinearInterpolator import android.widget.ImageView import androidx.constraintlayout.widget.ConstraintLayout +import com.mogo.eagle.core.function.call.map.CallerVisualAngleManager +import com.mogo.eagle.core.function.call.map.CallerVisualAngleManager.Scene.Default +import com.mogo.eagle.core.function.call.map.CallerVisualAngleManager.Scene.Turning import com.mogo.eagle.core.function.hmi.R import kotlinx.android.synthetic.main.view_turn_light_status.view.* import kotlinx.coroutines.Dispatchers @@ -35,6 +38,9 @@ class TurnLightViewStatus @JvmOverloads constructor( private var isRightLight :Boolean = false private var isDisappare :Boolean = false + @Volatile + private var isVisualAngleChanged = false + /** * 转向灯动画 */ @@ -46,6 +52,13 @@ class TurnLightViewStatus @JvmOverloads constructor( isShowNormalBg = true } + if (directionLight == 1 || directionLight == 2) { + if (!isVisualAngleChanged) { + isVisualAngleChanged = true + CallerVisualAngleManager.changeVisualAngle(Turning) + } + } + //根据左右进行显示和隐藏,实际要判断每个来的时间和频度 if (directionLight == 1) { //左转向 if (!isLeftLight) { @@ -73,6 +86,8 @@ class TurnLightViewStatus @JvmOverloads constructor( } } else { //消失 + CallerVisualAngleManager.changeVisualAngle(Default()) + isVisualAngleChanged = false if (!isDisappare) { GlobalScope.launch(Dispatchers.Main) { animationDisappear() diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/utils/NoticeGlobalTools.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/utils/NoticeGlobalTools.kt index d1a736cdb4..f22a239803 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/utils/NoticeGlobalTools.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/utils/NoticeGlobalTools.kt @@ -1,10 +1,6 @@ package com.mogo.eagle.core.function.hmi.ui.utils -import android.content.Context import android.view.View -import com.alibaba.android.arouter.launcher.ARouter -import com.mogo.service.IMogoServiceApis -import com.mogo.eagle.core.data.constants.MogoServicePaths /** * @author congtaowang @@ -12,15 +8,6 @@ import com.mogo.eagle.core.data.constants.MogoServicePaths * * 描述 */ -private var apis: IMogoServiceApis? = null - -fun getApis(context: Context): IMogoServiceApis { - if (apis == null) { - apis = ARouter.getInstance().build(com.mogo.eagle.core.data.constants.MogoServicePaths.PATH_SERVICE_APIS).navigation(context) as IMogoServiceApis; - } - return apis!! -} - fun View.gone() { if (this.visibility != View.GONE) { this.visibility = View.GONE diff --git a/core/function-impl/mogo-core-function-hmi/src/main/res/layout/dialog_modify_bindingcar.xml b/core/function-impl/mogo-core-function-hmi/src/main/res/layout/dialog_modify_bindingcar.xml new file mode 100644 index 0000000000..64c3ef0350 --- /dev/null +++ b/core/function-impl/mogo-core-function-hmi/src/main/res/layout/dialog_modify_bindingcar.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-hmi/src/main/res/layout/dialog_to_bindingcar.xml b/core/function-impl/mogo-core-function-hmi/src/main/res/layout/dialog_to_bindingcar.xml new file mode 100644 index 0000000000..481c87c50b --- /dev/null +++ b/core/function-impl/mogo-core-function-hmi/src/main/res/layout/dialog_to_bindingcar.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-hmi/src/main/res/values/strings.xml b/core/function-impl/mogo-core-function-hmi/src/main/res/values/strings.xml index 829ada6ab6..579ee51972 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/res/values/strings.xml +++ b/core/function-impl/mogo-core-function-hmi/src/main/res/values/strings.xml @@ -39,4 +39,9 @@ 确认 取消 + + 绑定车机 + 是否修改车机绑定? + 是否绑定车机? + diff --git a/core/function-impl/mogo-core-function-main/build.gradle b/core/function-impl/mogo-core-function-main/build.gradle index ece45dd1c2..58076f0352 100644 --- a/core/function-impl/mogo-core-function-main/build.gradle +++ b/core/function-impl/mogo-core-function-main/build.gradle @@ -79,6 +79,7 @@ dependencies { api rootProject.ext.dependencies.mogo_core_function_obu_mogo api rootProject.ext.dependencies.mogo_core_function_hmi api rootProject.ext.dependencies.mogo_core_function_notice + api rootProject.ext.dependencies.mogo_core_function_bindingcar api rootProject.ext.dependencies.mogo_core_function_autopilot api rootProject.ext.dependencies.mogo_core_function_check api rootProject.ext.dependencies.mogo_core_function_map @@ -116,6 +117,7 @@ dependencies { api project(':core:function-impl:mogo-core-function-dispatch') api project(':core:mogo-core-function-call') api project(':core:function-impl:mogo-core-function-chat') + api project(':core:function-impl:mogo-core-function-bindingcar') } } diff --git a/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml b/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml index b068b0c04a..9ed171e1dc 100644 --- a/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml +++ b/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml @@ -9,6 +9,7 @@ + /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml +10 +11 diff --git a/modules/mogo-module-carchatting/build/intermediates/merged_java_res/debug/out.jar b/modules/mogo-module-carchatting/build/intermediates/merged_java_res/debug/out.jar new file mode 100644 index 0000000000..54e96fa1d4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/merged_java_res/debug/out.jar differ diff --git a/modules/mogo-module-carchatting/build/intermediates/merged_manifests/debug/output.json b/modules/mogo-module-carchatting/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..07027f82a7 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.1.16.10","enabled":true,"outputFile":"mogo-module-carchatting-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.mogo.module.carchatting","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged-classes/debug/classes.jar b/modules/mogo-module-carchatting/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000000..13c19bb32b Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_launcher_calling_bg.9.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_launcher_calling_bg.9.png new file mode 100644 index 0000000000..96ddb81326 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_launcher_calling_bg.9.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment.png new file mode 100644 index 0000000000..950d184e38 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_close_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_close_normal.png new file mode 100644 index 0000000000..12ae03bfed Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_close_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_close_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_close_pressed.png new file mode 100644 index 0000000000..f81ff730e4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_close_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_x.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_x.png new file mode 100644 index 0000000000..f7530c5024 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_fragment_x.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_head_default.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_head_default.png new file mode 100644 index 0000000000..eacbf33bf8 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_head_default.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_join_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_join_normal.png new file mode 100644 index 0000000000..6f301e97ab Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_join_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_join_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_join_pressed.png new file mode 100644 index 0000000000..6f5411a704 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_join_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_normal.png new file mode 100644 index 0000000000..ee7fbb5dfe Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_pressed.png new file mode 100644 index 0000000000..0b1873ee8f Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_head_default.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_head_default.png new file mode 100644 index 0000000000..4a891e57e5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_head_default.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_join_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_join_normal.png new file mode 100644 index 0000000000..acf19225e1 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_join_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_join_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_join_pressed.png new file mode 100644 index 0000000000..d13ff23373 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_join_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_refuse_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_refuse_normal.png new file mode 100644 index 0000000000..f7530c5024 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_refuse_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_refuse_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_refuse_pressed.png new file mode 100644 index 0000000000..950d184e38 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_invitation_refuse_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_quit_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_quit_normal.png new file mode 100644 index 0000000000..0bd4b588e1 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_quit_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_quit_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_quit_pressed.png new file mode 100644 index 0000000000..8954c0a15e Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-hdpi-v4/module_carchatting_team_quit_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_launcher_calling_bg.9.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_launcher_calling_bg.9.png new file mode 100644 index 0000000000..fa35eccafd Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_launcher_calling_bg.9.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment.png new file mode 100644 index 0000000000..b04650a030 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_close_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_close_normal.png new file mode 100644 index 0000000000..12ae03bfed Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_close_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_close_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_close_pressed.png new file mode 100644 index 0000000000..f81ff730e4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_close_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_x.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_x.png new file mode 100644 index 0000000000..f274a5fa76 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_fragment_x.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_head_default.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_head_default.png new file mode 100644 index 0000000000..53051d4e9e Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_head_default.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_join_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_join_normal.png new file mode 100644 index 0000000000..cf3e4aa222 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_join_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_join_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_join_pressed.png new file mode 100644 index 0000000000..b5a28f5583 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_join_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_refuse_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_refuse_normal.png new file mode 100644 index 0000000000..f274a5fa76 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_refuse_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_refuse_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_refuse_pressed.png new file mode 100644 index 0000000000..b04650a030 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_invitation_refuse_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_quit_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_quit_normal.png new file mode 100644 index 0000000000..f22c026f58 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_quit_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_quit_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_quit_pressed.png new file mode 100644 index 0000000000..a1f1234504 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_carchatting_team_quit_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_launcher_calling_bg.9.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_launcher_calling_bg.9.png new file mode 100644 index 0000000000..96ddb81326 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_launcher_calling_bg.9.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_launcher_hawk_eye_calling_bg.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_launcher_hawk_eye_calling_bg.png new file mode 100644 index 0000000000..2357cb985b Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_launcher_hawk_eye_calling_bg.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_bg.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_bg.png new file mode 100644 index 0000000000..c2c244c134 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_bg.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_head_default.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_head_default.png new file mode 100644 index 0000000000..eacbf33bf8 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_head_default.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_join_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_join_normal.png new file mode 100644 index 0000000000..6f301e97ab Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_join_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_join_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_join_pressed.png new file mode 100644 index 0000000000..6f5411a704 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_join_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_normal.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_normal.png new file mode 100644 index 0000000000..ee7fbb5dfe Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_normal.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_pressed.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_pressed.png new file mode 100644 index 0000000000..0b1873ee8f Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_carchatting_team_invitation_hawk_eye_refuse_pressed.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue.xml new file mode 100644 index 0000000000..be1941fa09 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue_normal.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue_normal.xml new file mode 100644 index 0000000000..e8d86c9442 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue_normal.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue_pressed.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue_pressed.xml new file mode 100644 index 0000000000..c55995839e --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_shape_gradient_blue_pressed.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg.xml new file mode 100644 index 0000000000..83ee0bdebb --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg_normal.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg_normal.xml new file mode 100644 index 0000000000..b9765da6bb --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg_normal.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg_pressed.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg_pressed.xml new file mode 100644 index 0000000000..21bf8c6e8e --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_callchatting_user_pop_call_bg_pressed.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_aicloud_incoming.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_aicloud_incoming.png new file mode 100644 index 0000000000..a6aef500e9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_aicloud_incoming.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_fragment_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_fragment_bg.xml new file mode 100644 index 0000000000..1965671b5d --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_fragment_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_fragment_close.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_fragment_close.xml new file mode 100644 index 0000000000..b369d3a308 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_fragment_close.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_bg.xml new file mode 100644 index 0000000000..28a3d7870b --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_bg.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_header_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_header_bg.xml new file mode 100644 index 0000000000..ef8a4f7ea6 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_header_bg.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_join.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_join.xml new file mode 100644 index 0000000000..a38fdde074 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_join.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_refuse.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_refuse.xml new file mode 100644 index 0000000000..f934359daf --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_hawk_eye_refuse.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_join.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_join.xml new file mode 100644 index 0000000000..12f805d13f --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_join.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_refuse.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_refuse.xml new file mode 100644 index 0000000000..2981370f58 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_refuse.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_title_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_title_bg.xml new file mode 100644 index 0000000000..0bd680b478 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_invitation_title_bg.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_quit.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_quit.xml new file mode 100644 index 0000000000..286dfde9e6 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_quit.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_bg.xml new file mode 100644 index 0000000000..c1e6217fbe --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_follower_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_follower_bg.xml new file mode 100644 index 0000000000..e1f1abd61e --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_follower_bg.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_leader_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_leader_bg.xml new file mode 100644 index 0000000000..72421b5d37 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_team_teammate_leader_bg.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_vr_calling_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_vr_calling_bg.xml new file mode 100644 index 0000000000..2b00cf2b11 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_vr_calling_bg.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_vr_team_num_bg.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_vr_team_num_bg.xml new file mode 100644 index 0000000000..ca94787528 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/drawable/module_carchatting_vr_team_num_bg.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_fragment_team_view.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_fragment_team_view.xml new file mode 100644 index 0000000000..6dff11c8fb --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_fragment_team_view.xml @@ -0,0 +1,42 @@ + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_calling_hawk_eye_view.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_calling_hawk_eye_view.xml new file mode 100644 index 0000000000..e252081659 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_calling_hawk_eye_view.xml @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_calling_view.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_calling_view.xml new file mode 100644 index 0000000000..61858e7909 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_calling_view.xml @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_incoming_hawk_eye_view.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_incoming_hawk_eye_view.xml new file mode 100644 index 0000000000..799bc5faec --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_incoming_hawk_eye_view.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_team_invitation_hawk_eye_view.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_team_invitation_hawk_eye_view.xml new file mode 100644 index 0000000000..3e68b3ab98 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_team_invitation_hawk_eye_view.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_team_invitation_view.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_team_invitation_view.xml new file mode 100644 index 0000000000..48c915f342 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_team_invitation_view.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_teammate_item.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_teammate_item.xml new file mode 100644 index 0000000000..f58bf9d3d5 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_teammate_item.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_user_view.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_user_view.xml new file mode 100644 index 0000000000..1de23819e8 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/layout/module_car_chatting_launcher_user_view.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_match.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_match.png new file mode 100644 index 0000000000..08bcfd78a0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_match.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_caller.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_caller.png new file mode 100644 index 0000000000..cd5fb91de2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_caller.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_close.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_close.png new file mode 100644 index 0000000000..aa5d44c24d Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_close.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_join_team.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_join_team.png new file mode 100644 index 0000000000..fc4b862902 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_callchatting_user_join_team.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_caller.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_caller.png new file mode 100644 index 0000000000..0f16300e2e Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_caller.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_default_head_img.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_default_head_img.png new file mode 100644 index 0000000000..97e9ddda74 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_default_head_img.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_launcher_calling_hangup.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_launcher_calling_hangup.png new file mode 100644 index 0000000000..41e7375716 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_launcher_calling_hangup.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_user_cover_bg.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_user_cover_bg.png new file mode 100644 index 0000000000..89153623c3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/module_carchatting_user_cover_bg.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_match.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_match.png new file mode 100644 index 0000000000..08bcfd78a0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_match.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_caller.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_caller.png new file mode 100644 index 0000000000..a15e56ada7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_caller.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_close.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_close.png new file mode 100644 index 0000000000..a74b6c7341 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_close.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_join_team.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_join_team.png new file mode 100644 index 0000000000..b49d9f707f Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_callchatting_user_join_team.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_caller.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_caller.png new file mode 100644 index 0000000000..c3cb5f4aaa Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_caller.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_default_head_img.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_default_head_img.png new file mode 100644 index 0000000000..88cd08b75a Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_default_head_img.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_launcher_calling_hangup.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_launcher_calling_hangup.png new file mode 100644 index 0000000000..0fe0ca3fd5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_launcher_calling_hangup.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_user_cover_bg.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_user_cover_bg.png new file mode 100644 index 0000000000..ab7640f350 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_carchatting_user_cover_bg.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-mdpi-1920x720-v4/module_callchatting_match.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-mdpi-1920x720-v4/module_callchatting_match.png new file mode 100644 index 0000000000..08bcfd78a0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-mdpi-1920x720-v4/module_callchatting_match.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_launcher_incoming_answer.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_launcher_incoming_answer.png new file mode 100644 index 0000000000..ab8a1f46ef Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_launcher_incoming_answer.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_launcher_incoming_hangup.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_launcher_incoming_hangup.png new file mode 100644 index 0000000000..3bc95a36d5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_launcher_incoming_hangup.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_caller.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_caller.png new file mode 100644 index 0000000000..cd5fb91de2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_caller.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_close.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_close.png new file mode 100644 index 0000000000..aa5d44c24d Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_close.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_join_team.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_join_team.png new file mode 100644 index 0000000000..fc4b862902 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_callchatting_user_join_team.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_caller.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_caller.png new file mode 100644 index 0000000000..0f16300e2e Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_caller.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_default_head_img.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_default_head_img.png new file mode 100644 index 0000000000..97e9ddda74 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_default_head_img.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_hawk_eye_default_head_img.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_hawk_eye_default_head_img.png new file mode 100644 index 0000000000..c86d55182a Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_hawk_eye_default_head_img.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_launcher_calling_hangup.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_launcher_calling_hangup.png new file mode 100644 index 0000000000..41e7375716 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_launcher_calling_hangup.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_user_cover_bg.png b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_user_cover_bg.png new file mode 100644 index 0000000000..89153623c3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_carchatting_user_cover_bg.png differ diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-hdpi-v4/values-hdpi-v4.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000000..ead94a4df2 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,104 @@ + + + 6px + 100px + 23px + 82px + 10px + 27px + 18px + 18px + 37px + 26px + 63px + 72px + 38px + 80px + 30px + 32px + 25px + 39px + 30px + 10px + 90px + 50px + 70px + 56px + 30px + 82.5px + 30px + 100px + 300px + 8px + 159px + 140px + 22px + 776px + 1067px + 872px + 16px + 40px + 15px + 150px + 600px + 22px + 32px + 22px + 80.8px + 80.8px + 27.5px + 36px + 50px + 24px + 48px + -12px + -122px + 36px + 48px + 22px + 22px + 26px + 60px + 30px + 32px + 20px + 182px + 61px + 822px + 148px + 148px + 210px + 42px + 98px + 36px + 98px + 230px + 18px + 30px + 46px + 30px + 60px + 25px + 120px + 28.4px + 79.8px + 79.8px + 98px + 98px + 164px + 46px + 26px + 98px + 14px + 30px + 34px + 32px + 25px + 290px + 1370px + 30px + 740px + 854px + 37px + 355px + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-ldpi-v4/values-ldpi-v4.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-ldpi-v4/values-ldpi-v4.xml new file mode 100644 index 0000000000..98bdc910e4 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-ldpi-v4/values-ldpi-v4.xml @@ -0,0 +1,91 @@ + + + 18px + 44px + 6px + 18px + 14px + 54px + 28px + 60px + 22px + 23px + 25px + 27px + 22px + 13px + 56px + 30px + 39px + 30px + 17px + 45.8px + 16.6px + 5px + 88.3px + 82px + 560px + 478px + 10px + 22px + 10px + 83.3px + 338px + 14.6px + 18px + 13px + 44px + 44px + 10px + 20px + 28px + 14px + 26.4px + -6.6px + -66px + 19.8px + 26.4px + 11px + 14.6px + 14px + 30px + 12px + 18px + 82px + 82px + 122px + 54px + 20px + 54px + 138px + 18px + 21px + 26px + 12px + 30px + 14px + 66px + 16.5px + 43.4px + 43.4px + 56px + 56px + 86px + 26px + 15px + 54px + 8px + 12.4px + 18px + 14px + 25px + 161px + 1543px + 0px + 411px + 474px + 82px + 27px + 260px + 338px + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-mdpi-1920x720-v4/values-mdpi-1920x720-v4.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-mdpi-1920x720-v4/values-mdpi-1920x720-v4.xml new file mode 100644 index 0000000000..7800b7624e --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-mdpi-1920x720-v4/values-mdpi-1920x720-v4.xml @@ -0,0 +1,88 @@ + + + 23px + 58px + 15px + 24px + 17px + 54px + 28px + 60px + 22px + 23px + 25px + 27px + 22px + 13px + 60px + 20px + 45px + 17px + 55px + 13px + 9px + 75px + 82px + 573px + 467px + 9px + 23px + 10px + 97px + 338px + 16px + 18px + 13px + 44px + 44px + 10px + 20px + 28px + 14px + 48px + -12px + -120px + 19.8px + 48px + 13px + 16px + 14px + 9px + 12px + 18px + 82px + 82px + 122px + 54px + 20px + 54px + 18px + 21px + 26px + 12px + 9px + 14px + 66px + 16px + 43.4px + 43.4px + 56px + 56px + 86px + 26px + 15px + 54px + 8px + 12.4px + 18px + 14px + 310px + 1543px + 0px + 347px + 374px + 87px + 27px + 260px + 422px + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-mdpi-v4/values-mdpi-v4.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-mdpi-v4/values-mdpi-v4.xml new file mode 100644 index 0000000000..2808cfb58f --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-mdpi-v4/values-mdpi-v4.xml @@ -0,0 +1,91 @@ + + + 18px + 44px + 6px + 18px + 14px + 54px + 28px + 60px + 22px + 23px + 25px + 27px + 22px + 13px + 56px + 30px + 39px + 30px + 17px + 45.8px + 16.6px + 5px + 88.3px + 82px + 573px + 467px + 10px + 22px + 10px + 83.3px + 338px + 14.6px + 18px + 13px + 44px + 44px + 10px + 20px + 28px + 14px + 26.4px + -6.6px + -66px + 19.8px + 26.4px + 11px + 14.6px + 14px + 30px + 12px + 18px + 82px + 82px + 122px + 54px + 20px + 54px + 138px + 18px + 21px + 26px + 12px + 30px + 14px + 66px + 16.5px + 43.4px + 43.4px + 56px + 56px + 86px + 26px + 15px + 54px + 8px + 12.4px + 18px + 14px + 25px + 161px + 1543px + 0px + 411px + 474px + 82px + 27px + 260px + 338px + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-xhdpi-2560x1440-v4/values-xhdpi-2560x1440-v4.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-xhdpi-2560x1440-v4/values-xhdpi-2560x1440-v4.xml new file mode 100644 index 0000000000..e92b072c24 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-xhdpi-2560x1440-v4/values-xhdpi-2560x1440-v4.xml @@ -0,0 +1,29 @@ + + + 30px + 20px + 144px + 26px + 40px + 24px + 88px + 86px + 139px + 24px + 28px + 144px + 460px + 30px + 142px + 20px + 560px + 40px + 1160px + 27px + 34px + 27px + 24px + 144px + 40px + 106px + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..88655ecd27 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,1098 @@ + + + 0px + 0.1px + 0.5px + 1px + 10px + 100px + 101px + 102px + 103px + 104px + 104.5px + 105px + 106px + 107px + 108px + 109px + 11px + 110px + 111px + 112px + 113px + 114px + 115px + 116px + 117px + 118px + 119px + 12px + 120px + 121px + 122px + 123px + 124px + 125px + 126px + 127px + 128px + 129px + 13px + 130px + 1300px + 131px + 132px + 133px + 134px + 134.5px + 135px + 136px + 137px + 138px + 139px + 14px + 140px + 141px + 142px + 143px + 144px + 145px + 146px + 147px + 148px + 149px + 15px + 150px + 151px + 152px + 153px + 154px + 155px + 156px + 157px + 158px + 159px + 16px + 160px + 161px + 162px + 163px + 164px + 165px + 166px + 167px + 168px + 169px + 17px + 170px + 171px + 172px + 173px + 174px + 175px + 176px + 177px + 178px + 179px + 18px + 180px + 181px + 182px + 183px + 184px + 185px + 186px + 187px + 188px + 189px + 19px + 190px + 191px + 191.25px + 192px + 193px + 194px + 195px + 196px + 197px + 198px + 199px + 1.5px + 2px + 20px + 200px + 201px + 202px + 203px + 204px + 205px + 206px + 207px + 208px + 209px + 21px + 210px + 211px + 212px + 213px + 214px + 215px + 216px + 217px + 218px + 219px + 22px + 220px + 221px + 222px + 223px + 224px + 225px + 226px + 227px + 228px + 229px + 23px + 230px + 231px + 232px + 233px + 234px + 235px + 236px + 237px + 238px + 239px + 24px + 240px + 241px + 242px + 243px + 244px + 245px + 246px + 247px + 248px + 249px + 25px + 250px + 251px + 252px + 253px + 254px + 255px + 256px + 257px + 258px + 259px + 26px + 260px + 261px + 262px + 263px + 264px + 265px + 266px + 267px + 268px + 269px + 27px + 270px + 271px + 272px + 273px + 274px + 275px + 276px + 277px + 278px + 279px + 28px + 280px + 281px + 282px + 283px + 284px + 285px + 286px + 287px + 288px + 289px + 29px + 290px + 291px + 292px + 293px + 294px + 295px + 296px + 297px + 298px + 299px + 2.5px + 3px + 30px + 300px + 301px + 302px + 303px + 304px + 305px + 306px + 307px + 308px + 309px + 31px + 310px + 311px + 312px + 313px + 314px + 315px + 316px + 317px + 318px + 319px + 32px + 320px + 321px + 322px + 323px + 324px + 325px + 326px + 327px + 328px + 329px + 33px + 330px + 331px + 332px + 333px + 334px + 335px + 336px + 337px + 338px + 339px + 34px + 340px + 341px + 342px + 343px + 344px + 345px + 346px + 347px + 348px + 349px + 35px + 350px + 351px + 352px + 353px + 354px + 355px + 356px + 357px + 358px + 359px + 36px + 366px + 367px + 368px + 369px + 37px + 370px + 371px + 372px + 373px + 374px + 375px + 376px + 377px + 378px + 379px + 38px + 380px + 381px + 382px + 383px + 384px + 385px + 386px + 387px + 388px + 389px + 39px + 390px + 391px + 392px + 393px + 394px + 395px + 396px + 397px + 398px + 399px + 3.5px + 4px + 40px + 400px + 401px + 402px + 403px + 404px + 405px + 406px + 407px + 408px + 409px + 41px + 410px + 411px + 412px + 413px + 414px + 415px + 416px + 417px + 418px + 419px + 42px + 420px + 421px + 422px + 423px + 424px + 425px + 426px + 427px + 428px + 429px + 43px + 430px + 431px + 432px + 433px + 434px + 435px + 436px + 437px + 438px + 439px + 44px + 440px + 441px + 442px + 443px + 444px + 445px + 446px + 447px + 448px + 449px + 45px + 450px + 451px + 452px + 453px + 454px + 455px + 456px + 457px + 458px + 459px + 46px + 460px + 461px + 462px + 463px + 464px + 465px + 466px + 467px + 468px + 469px + 47px + 470px + 471px + 472px + 473px + 474px + 475px + 476px + 477px + 478px + 479px + 48px + 480px + 481px + 482px + 483px + 484px + 485px + 486px + 487px + 488px + 489px + 49px + 490px + 491px + 492px + 493px + 494px + 495px + 496px + 497px + 498px + 499px + 4.5px + 5px + 50px + 500px + 501px + 502px + 503px + 504px + 505px + 506px + 507px + 508px + 509px + 51px + 510px + 511px + 512px + 513px + 514px + 515px + 516px + 517px + 518px + 519px + 52px + 520px + 521px + 522px + 523px + 524px + 525px + 526px + 527px + 528px + 529px + 53px + 530px + 531px + 532px + 533px + 534px + 535px + 536px + 537px + 538px + 539px + 54px + 540px + 541px + 542px + 543px + 544px + 545px + 546px + 547px + 548px + 549px + 55px + 550px + 551px + 552px + 553px + 554px + 555px + 556px + 557px + 558px + 559px + 56px + 560px + 561px + 562px + 563px + 564px + 565px + 566px + 567px + 568px + 569px + 57px + 570px + 571px + 572px + 573px + 574px + 575px + 576px + 577px + 578px + 579px + 58px + 580px + 581px + 582px + 583px + 584px + 585px + 586px + 587px + 588px + 589px + 59px + 590px + 591px + 592px + 593px + 594px + 595px + 596px + 597px + 598px + 599px + 6px + 60px + 600px + 601px + 602px + 603px + 604px + 605px + 606px + 607px + 608px + 609px + 61px + 610px + 611px + 612px + 613px + 614px + 615px + 616px + 617px + 618px + 619px + 62px + 620px + 621px + 622px + 623px + 624px + 625px + 626px + 627px + 628px + 629px + 63px + 630px + 631px + 632px + 633px + 634px + 635px + 636px + 637px + 638px + 639px + 64px + 640px + 641px + 642px + 643px + 644px + 645px + 646px + 647px + 648px + 649px + 65px + 650px + 651px + 652px + 653px + 654px + 655px + 656px + 657px + 658px + 659px + 66px + 660px + 661px + 662px + 663px + 664px + 665px + 666px + 667px + 668px + 669px + 67px + 670px + 671px + 672px + 673px + 674px + 675px + 676px + 677px + 678px + 679px + 68px + 680px + 681px + 682px + 683px + 684px + 685px + 686px + 687px + 688px + 689px + 69px + 690px + 691px + 692px + 693px + 694px + 695px + 696px + 697px + 698px + 699px + 7px + 70px + 700px + 701px + 702px + 703px + 704px + 705px + 706px + 707px + 708px + 709px + 71px + 710px + 711px + 712px + 713px + 714px + 715px + 716px + 717px + 718px + 719px + 72px + 720px + 721px + 722px + 723px + 724px + 725px + 726px + 727px + 728px + 729px + 73px + 730px + 731px + 732px + 733px + 734px + 735px + 736px + 737px + 738px + 739px + 74px + 740px + 741px + 742px + 743px + 744px + 745px + 746px + 747px + 748px + 749px + 75px + 750px + 751px + 752px + 753px + 754px + 755px + 756px + 757px + 758px + 759px + 76px + 760px + 761px + 762px + 763px + 764px + 765px + 766px + 767px + 768px + 769px + 77px + 770px + 771px + 772px + 773px + 774px + 775px + 776px + 777px + 778px + 779px + 78px + 780px + 781px + 782px + 783px + 784px + 785px + 786px + 787px + 788px + 789px + 79px + 790px + 791px + 792px + 793px + 794px + 795px + 796px + 797px + 798px + 799px + 7.5px + 8px + 80px + 800px + 801px + 802px + 803px + 804px + 805px + 806px + 807px + 808px + 809px + 81px + 810px + 811px + 812px + 813px + 814px + 815px + 816px + 817px + 818px + 819px + 82px + 820px + 821px + 822px + 823px + 824px + 825px + 826px + 827px + 828px + 829px + 83px + 830px + 831px + 832px + 833px + 834px + 835px + 836px + 837px + 838px + 839px + 84px + 840px + 841px + 842px + 843px + 844px + 845px + 846px + 847px + 848px + 849px + 85px + 850px + 851px + 852px + 853px + 854px + 855px + 856px + 857px + 858px + 859px + 86px + 860px + 861px + 862px + 863px + 864px + 865px + 866px + 867px + 868px + 869px + 87px + 870px + 871px + 872px + 873px + 874px + 875px + 876px + 877px + 878px + 879px + 88px + 880px + 881px + 882px + 883px + 884px + 885px + 886px + 887px + 888px + 889px + 89px + 890px + 891px + 892px + 893px + 894px + 895px + 896px + 897px + 898px + 899px + 9px + 90px + 900px + 901px + 902px + 903px + 904px + 905px + 906px + 907px + 908px + 909px + 91px + 910px + 911px + 912px + 913px + 914px + 915px + 916px + 917px + 918px + 919px + 92px + 920px + 921px + 922px + 923px + 924px + 925px + 926px + 927px + 928px + 929px + 93px + 930px + 931px + 932px + 933px + 934px + 935px + 936px + 937px + 938px + 939px + 94px + 940px + 941px + 942px + 943px + 944px + 945px + 946px + 947px + 948px + 949px + 95px + 950px + 951px + 952px + 953px + 954px + 955px + 956px + 957px + 958px + 959px + 96px + 960px + 961px + 962px + 963px + 964px + 965px + 966px + 967px + 968px + 969px + 97px + 970px + 971px + 972px + 973px + 974px + 975px + 976px + 977px + 978px + 979px + 98px + 980px + 981px + 982px + 983px + 984px + 985px + 986px + 987px + 988px + 989px + 99px + 990px + 991px + 992px + 993px + 994px + 995px + 996px + 997px + 998px + 999px + -1px + -10px + -12px + -2px + -20px + -30px + -5px + -60px + -8px + 20px + 9px + 100px + 23px + 82px + 16px + 27px + 18px + 18px + 37px + 26px + 66px + 18px + 10px + 90px + 50px + 70px + 56px + 30px + 82.5px + 30px + 100px + 300px + 8px + 159px + 140px + 30px + 776px + 1067px + 872px + 16px + 40px + 15px + 150px + 600px + 20px + 22px + 20px + 20px + 182px + 61px + 822px + 42px + 30px + 100px + 30px + 80px + 290px + 1380px + 20px + 740px + 854px + 10px + 11px + 12px + 13px + 14px + 15px + 16px + 17px + 18px + 19px + 20px + 21px + 22px + 23px + 24px + 25px + 28px + 30px + 32px + 34px + 36px + 38px + 40px + 42px + 48px + 6px + 7px + 8px + 9px + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values/values.xml b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values/values.xml new file mode 100644 index 0000000000..df155a22ac --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,1178 @@ + + + #B5B5B5 + #66D8D8D8 + #FFFFFF + #EE433E + #7FFFFFFF + #FFFFFF + #66D8D8D8 + #FFFFFF + #FFFFFF + 0.0000px + 0.0547px + 0.2734px + 0.5469px + 5.4688px + 54.6875px + 55.2344px + 55.7812px + 56.3281px + 56.8750px + 57.1484px + 57.4219px + 57.9688px + 58.5156px + 59.0625px + 59.6094px + 6.0156px + 60.1562px + 60.7031px + 61.2500px + 61.7969px + 62.3438px + 62.8906px + 63.4375px + 63.9844px + 64.5312px + 65.0781px + 6.5625px + 65.6250px + 66.1719px + 66.7188px + 67.2656px + 67.8125px + 68.3594px + 68.9062px + 69.4531px + 70.0000px + 70.5469px + 7.1094px + 71.0938px + 710.9375px + 71.6406px + 72.1875px + 72.7344px + 73.2812px + 73.5547px + 73.8281px + 74.3750px + 74.9219px + 75.4688px + 76.0156px + 7.6562px + 76.5625px + 77.1094px + 77.6562px + 78.2031px + 78.7500px + 79.2969px + 79.8438px + 80.3906px + 80.9375px + 81.4844px + 8.2031px + 82.0312px + 82.5781px + 83.1250px + 83.6719px + 84.2188px + 84.7656px + 85.3125px + 85.8594px + 86.4062px + 86.9531px + 8.7500px + 87.5000px + 88.0469px + 88.5938px + 89.1406px + 89.6875px + 90.2344px + 90.7812px + 91.3281px + 91.8750px + 92.4219px + 9.2969px + 92.9688px + 93.5156px + 94.0625px + 94.6094px + 95.1562px + 95.7031px + 96.2500px + 96.7969px + 97.3438px + 97.8906px + 9.8438px + 98.4375px + 98.9844px + 99.5312px + 100.0781px + 100.6250px + 101.1719px + 101.7188px + 102.2656px + 102.8125px + 103.3594px + 10.3906px + 103.9062px + 104.4531px + 104.5898px + 105.0000px + 105.5469px + 106.0938px + 106.6406px + 107.1875px + 107.7344px + 108.2812px + 108.8281px + 0.8203px + 1.0938px + 10.9375px + 109.3750px + 109.9219px + 110.4688px + 111.0156px + 111.5625px + 112.1094px + 112.6562px + 113.2031px + 113.7500px + 114.2969px + 11.4844px + 114.8438px + 115.3906px + 115.9375px + 116.4844px + 117.0312px + 117.5781px + 118.1250px + 118.6719px + 119.2188px + 119.7656px + 12.0312px + 120.3125px + 120.8594px + 121.4062px + 121.9531px + 122.5000px + 123.0469px + 123.5938px + 124.1406px + 124.6875px + 125.2344px + 12.5781px + 125.7812px + 126.3281px + 126.8750px + 127.4219px + 127.9688px + 128.5156px + 129.0625px + 129.6094px + 130.1562px + 130.7031px + 13.1250px + 131.2500px + 131.7969px + 132.3438px + 132.8906px + 133.4375px + 133.9844px + 134.5312px + 135.0781px + 135.6250px + 136.1719px + 13.6719px + 136.7188px + 137.2656px + 137.8125px + 138.3594px + 138.9062px + 139.4531px + 140.0000px + 140.5469px + 141.0938px + 141.6406px + 14.2188px + 142.1875px + 142.7344px + 143.2812px + 143.8281px + 144.3750px + 144.9219px + 145.4688px + 146.0156px + 146.5625px + 147.1094px + 14.7656px + 147.6562px + 148.2031px + 148.7500px + 149.2969px + 149.8438px + 150.3906px + 150.9375px + 151.4844px + 152.0312px + 152.5781px + 15.3125px + 153.1250px + 153.6719px + 154.2188px + 154.7656px + 155.3125px + 155.8594px + 156.4062px + 156.9531px + 157.5000px + 158.0469px + 15.8594px + 158.5938px + 159.1406px + 159.6875px + 160.2344px + 160.7812px + 161.3281px + 161.8750px + 162.4219px + 162.9688px + 163.5156px + 1.3672px + 1.6406px + 16.4062px + 164.0625px + 164.6094px + 165.1562px + 165.7031px + 166.2500px + 166.7969px + 167.3438px + 167.8906px + 168.4375px + 168.9844px + 16.9531px + 169.5312px + 170.0781px + 170.6250px + 171.1719px + 171.7188px + 172.2656px + 172.8125px + 173.3594px + 173.9062px + 174.4531px + 17.5000px + 175.0000px + 175.5469px + 176.0938px + 176.6406px + 177.1875px + 177.7344px + 178.2812px + 178.8281px + 179.3750px + 179.9219px + 18.0469px + 180.4688px + 181.0156px + 181.5625px + 182.1094px + 182.6562px + 183.2031px + 183.7500px + 184.2969px + 184.8438px + 185.3906px + 18.5938px + 185.9375px + 186.4844px + 187.0312px + 187.5781px + 188.1250px + 188.6719px + 189.2188px + 189.7656px + 190.3125px + 190.8594px + 19.1406px + 191.4062px + 191.9531px + 192.5000px + 193.0469px + 193.5938px + 194.1406px + 194.6875px + 195.2344px + 195.7812px + 196.3281px + 19.6875px + 200.1562px + 200.7031px + 201.2500px + 201.7969px + 20.2344px + 202.3438px + 202.8906px + 203.4375px + 203.9844px + 204.5312px + 205.0781px + 205.6250px + 206.1719px + 206.7188px + 207.2656px + 20.7812px + 207.8125px + 208.3594px + 208.9062px + 209.4531px + 210.0000px + 210.5469px + 211.0938px + 211.6406px + 212.1875px + 212.7344px + 21.3281px + 213.2812px + 213.8281px + 214.3750px + 214.9219px + 215.4688px + 216.0156px + 216.5625px + 217.1094px + 217.6562px + 218.2031px + 1.9141px + 2.1875px + 21.8750px + 218.7500px + 219.2969px + 219.8438px + 220.3906px + 220.9375px + 221.4844px + 222.0312px + 222.5781px + 223.1250px + 223.6719px + 22.4219px + 224.2188px + 224.7656px + 225.3125px + 225.8594px + 226.4062px + 226.9531px + 227.5000px + 228.0469px + 228.5938px + 229.1406px + 22.9688px + 229.6875px + 230.2344px + 230.7812px + 231.3281px + 231.8750px + 232.4219px + 232.9688px + 233.5156px + 234.0625px + 234.6094px + 23.5156px + 235.1562px + 235.7031px + 236.2500px + 236.7969px + 237.3438px + 237.8906px + 238.4375px + 238.9844px + 239.5312px + 240.0781px + 24.0625px + 240.6250px + 241.1719px + 241.7188px + 242.2656px + 242.8125px + 243.3594px + 243.9062px + 244.4531px + 245.0000px + 245.5469px + 24.6094px + 246.0938px + 246.6406px + 247.1875px + 247.7344px + 248.2812px + 248.8281px + 249.3750px + 249.9219px + 250.4688px + 251.0156px + 25.1562px + 251.5625px + 252.1094px + 252.6562px + 253.2031px + 253.7500px + 254.2969px + 254.8438px + 255.3906px + 255.9375px + 256.4844px + 25.7031px + 257.0312px + 257.5781px + 258.1250px + 258.6719px + 259.2188px + 259.7656px + 260.3125px + 260.8594px + 261.4062px + 261.9531px + 26.2500px + 262.5000px + 263.0469px + 263.5938px + 264.1406px + 264.6875px + 265.2344px + 265.7812px + 266.3281px + 266.8750px + 267.4219px + 26.7969px + 267.9688px + 268.5156px + 269.0625px + 269.6094px + 270.1562px + 270.7031px + 271.2500px + 271.7969px + 272.3438px + 272.8906px + 2.4609px + 2.7344px + 27.3438px + 273.4375px + 273.9844px + 274.5312px + 275.0781px + 275.6250px + 276.1719px + 276.7188px + 277.2656px + 277.8125px + 278.3594px + 27.8906px + 278.9062px + 279.4531px + 280.0000px + 280.5469px + 281.0938px + 281.6406px + 282.1875px + 282.7344px + 283.2812px + 283.8281px + 28.4375px + 284.3750px + 284.9219px + 285.4688px + 286.0156px + 286.5625px + 287.1094px + 287.6562px + 288.2031px + 288.7500px + 289.2969px + 28.9844px + 289.8438px + 290.3906px + 290.9375px + 291.4844px + 292.0312px + 292.5781px + 293.1250px + 293.6719px + 294.2188px + 294.7656px + 29.5312px + 295.3125px + 295.8594px + 296.4062px + 296.9531px + 297.5000px + 298.0469px + 298.5938px + 299.1406px + 299.6875px + 300.2344px + 30.0781px + 300.7812px + 301.3281px + 301.8750px + 302.4219px + 302.9688px + 303.5156px + 304.0625px + 304.6094px + 305.1562px + 305.7031px + 30.6250px + 306.2500px + 306.7969px + 307.3438px + 307.8906px + 308.4375px + 308.9844px + 309.5312px + 310.0781px + 310.6250px + 311.1719px + 31.1719px + 311.7188px + 312.2656px + 312.8125px + 313.3594px + 313.9062px + 314.4531px + 315.0000px + 315.5469px + 316.0938px + 316.6406px + 31.7188px + 317.1875px + 317.7344px + 318.2812px + 318.8281px + 319.3750px + 319.9219px + 320.4688px + 321.0156px + 321.5625px + 322.1094px + 32.2656px + 322.6562px + 323.2031px + 323.7500px + 324.2969px + 324.8438px + 325.3906px + 325.9375px + 326.4844px + 327.0312px + 327.5781px + 3.2812px + 32.8125px + 328.1250px + 328.6719px + 329.2188px + 329.7656px + 330.3125px + 330.8594px + 331.4062px + 331.9531px + 332.5000px + 333.0469px + 33.3594px + 333.5938px + 334.1406px + 334.6875px + 335.2344px + 335.7812px + 336.3281px + 336.8750px + 337.4219px + 337.9688px + 338.5156px + 33.9062px + 339.0625px + 339.6094px + 340.1562px + 340.7031px + 341.2500px + 341.7969px + 342.3438px + 342.8906px + 343.4375px + 343.9844px + 34.4531px + 344.5312px + 345.0781px + 345.6250px + 346.1719px + 346.7188px + 347.2656px + 347.8125px + 348.3594px + 348.9062px + 349.4531px + 35.0000px + 350.0000px + 350.5469px + 351.0938px + 351.6406px + 352.1875px + 352.7344px + 353.2812px + 353.8281px + 354.3750px + 354.9219px + 35.5469px + 355.4688px + 356.0156px + 356.5625px + 357.1094px + 357.6562px + 358.2031px + 358.7500px + 359.2969px + 359.8438px + 360.3906px + 36.0938px + 360.9375px + 361.4844px + 362.0312px + 362.5781px + 363.1250px + 363.6719px + 364.2188px + 364.7656px + 365.3125px + 365.8594px + 36.6406px + 366.4062px + 366.9531px + 367.5000px + 368.0469px + 368.5938px + 369.1406px + 369.6875px + 370.2344px + 370.7812px + 371.3281px + 37.1875px + 371.8750px + 372.4219px + 372.9688px + 373.5156px + 374.0625px + 374.6094px + 375.1562px + 375.7031px + 376.2500px + 376.7969px + 37.7344px + 377.3438px + 377.8906px + 378.4375px + 378.9844px + 379.5312px + 380.0781px + 380.6250px + 381.1719px + 381.7188px + 382.2656px + 3.8281px + 38.2812px + 382.8125px + 383.3594px + 383.9062px + 384.4531px + 385.0000px + 385.5469px + 386.0938px + 386.6406px + 387.1875px + 387.7344px + 38.8281px + 388.2812px + 388.8281px + 389.3750px + 389.9219px + 390.4688px + 391.0156px + 391.5625px + 392.1094px + 392.6562px + 393.2031px + 39.3750px + 393.7500px + 394.2969px + 394.8438px + 395.3906px + 395.9375px + 396.4844px + 397.0312px + 397.5781px + 398.1250px + 398.6719px + 39.9219px + 399.2188px + 399.7656px + 400.3125px + 400.8594px + 401.4062px + 401.9531px + 402.5000px + 403.0469px + 403.5938px + 404.1406px + 40.4688px + 404.6875px + 405.2344px + 405.7812px + 406.3281px + 406.8750px + 407.4219px + 407.9688px + 408.5156px + 409.0625px + 409.6094px + 41.0156px + 410.1562px + 410.7031px + 411.2500px + 411.7969px + 412.3438px + 412.8906px + 413.4375px + 413.9844px + 414.5312px + 415.0781px + 41.5625px + 415.6250px + 416.1719px + 416.7188px + 417.2656px + 417.8125px + 418.3594px + 418.9062px + 419.4531px + 420.0000px + 420.5469px + 42.1094px + 421.0938px + 421.6406px + 422.1875px + 422.7344px + 423.2812px + 423.8281px + 424.3750px + 424.9219px + 425.4688px + 426.0156px + 42.6562px + 426.5625px + 427.1094px + 427.6562px + 428.2031px + 428.7500px + 429.2969px + 429.8438px + 430.3906px + 430.9375px + 431.4844px + 43.2031px + 432.0312px + 432.5781px + 433.1250px + 433.6719px + 434.2188px + 434.7656px + 435.3125px + 435.8594px + 436.4062px + 436.9531px + 4.1016px + 4.3750px + 43.7500px + 437.5000px + 438.0469px + 438.5938px + 439.1406px + 439.6875px + 440.2344px + 440.7812px + 441.3281px + 441.8750px + 442.4219px + 44.2969px + 442.9688px + 443.5156px + 444.0625px + 444.6094px + 445.1562px + 445.7031px + 446.2500px + 446.7969px + 447.3438px + 447.8906px + 44.8438px + 448.4375px + 448.9844px + 449.5312px + 450.0781px + 450.6250px + 451.1719px + 451.7188px + 452.2656px + 452.8125px + 453.3594px + 45.3906px + 453.9062px + 454.4531px + 455.0000px + 455.5469px + 456.0938px + 456.6406px + 457.1875px + 457.7344px + 458.2812px + 458.8281px + 45.9375px + 459.3750px + 459.9219px + 460.4688px + 461.0156px + 461.5625px + 462.1094px + 462.6562px + 463.2031px + 463.7500px + 464.2969px + 46.4844px + 464.8438px + 465.3906px + 465.9375px + 466.4844px + 467.0312px + 467.5781px + 468.1250px + 468.6719px + 469.2188px + 469.7656px + 47.0312px + 470.3125px + 470.8594px + 471.4062px + 471.9531px + 472.5000px + 473.0469px + 473.5938px + 474.1406px + 474.6875px + 475.2344px + 47.5781px + 475.7812px + 476.3281px + 476.8750px + 477.4219px + 477.9688px + 478.5156px + 479.0625px + 479.6094px + 480.1562px + 480.7031px + 48.1250px + 481.2500px + 481.7969px + 482.3438px + 482.8906px + 483.4375px + 483.9844px + 484.5312px + 485.0781px + 485.6250px + 486.1719px + 48.6719px + 486.7188px + 487.2656px + 487.8125px + 488.3594px + 488.9062px + 489.4531px + 490.0000px + 490.5469px + 491.0938px + 491.6406px + 4.9219px + 49.2188px + 492.1875px + 492.7344px + 493.2812px + 493.8281px + 494.3750px + 494.9219px + 495.4688px + 496.0156px + 496.5625px + 497.1094px + 49.7656px + 497.6562px + 498.2031px + 498.7500px + 499.2969px + 499.8438px + 500.3906px + 500.9375px + 501.4844px + 502.0312px + 502.5781px + 50.3125px + 503.1250px + 503.6719px + 504.2188px + 504.7656px + 505.3125px + 505.8594px + 506.4062px + 506.9531px + 507.5000px + 508.0469px + 50.8594px + 508.5938px + 509.1406px + 509.6875px + 510.2344px + 510.7812px + 511.3281px + 511.8750px + 512.4219px + 512.9688px + 513.5156px + 51.4062px + 514.0625px + 514.6094px + 515.1562px + 515.7031px + 516.2500px + 516.7969px + 517.3438px + 517.8906px + 518.4375px + 518.9844px + 51.9531px + 519.5312px + 520.0781px + 520.6250px + 521.1719px + 521.7188px + 522.2656px + 522.8125px + 523.3594px + 523.9062px + 524.4531px + 52.5000px + 525.0000px + 525.5469px + 526.0938px + 526.6406px + 527.1875px + 527.7344px + 528.2812px + 528.8281px + 529.3750px + 529.9219px + 53.0469px + 530.4688px + 531.0156px + 531.5625px + 532.1094px + 532.6562px + 533.2031px + 533.7500px + 534.2969px + 534.8438px + 535.3906px + 53.5938px + 535.9375px + 536.4844px + 537.0312px + 537.5781px + 538.1250px + 538.6719px + 539.2188px + 539.7656px + 540.3125px + 540.8594px + 54.1406px + 541.4062px + 541.9531px + 542.5000px + 543.0469px + 543.5938px + 544.1406px + 544.6875px + 545.2344px + 545.7812px + 546.3281px + -0.5469px + -5.4688px + -6.5625px + -1.0938px + -10.9375px + -16.4062px + -2.7344px + -32.8125px + -4.3750px + 23px + 58px + 8px + 24px + 17px + 86px + 139px + 54px + 28px + 60px + 22px + 23px + 25px + 27px + 22px + 5px + 50px + 17px + 40px + 30px + 17px + 45px + 11px + 5px + 63px + 82px + 30px + 142px + 20px + 560px + 573px + 467px + 9px + 20px + 8px + 74px + 338px + 22px + 24px + 22px + 80.8px + 80.8px + 27.5px + 36px + 50px + 24px + 48px + -12px + -120px + 19.8px + 48px + 22px + 22px + 17px + 30px + 30px + 32px + 148px + 148px + 210px + 98px + 36px + 98px + 18px + 30px + 46px + 30px + 30px + 25px + 120px + 28.4px + 79.8px + 79.8px + 198px + 98px + 164px + 46px + 26px + 98px + 14px + 30px + 34px + 32px + 25px + 240px + 746px + 2px + 411px + 474px + 82px + 27px + 260px + 338px + 5.4688px + 6.0156px + 6.5625px + 7.1094px + 7.6562px + 8.2031px + 8.7500px + 9.2969px + 9.8438px + 10.3906px + 10.9375px + 11.4844px + 12.0312px + 12.5781px + 13.1250px + 13.6719px + 15.3125px + 16.4062px + 17.5000px + 18.5938px + 19.6875px + 20.7812px + 21.8750px + 22.9688px + 26.2500px + 3.2812px + 3.8281px + 4.3750px + 4.9219px + CarChatting + 已取消 + 已挂断 + 对方无应答 + 正在通话中,请稍后再试 + SN 不能为 null + 挂断失败 + 当前正在通话中 + 对方已有车队 + 车友%1$s邀请你加入车队! + 已加入车队,你可以直接跟队友通话 + 当前匹配人数较少,请稍后重试 + 匹配车友聊天 + 正在为您匹配车友... + 取消 + 等待接听 + 请检查网络状态 + 好的 + 拨打电话失败,不能打点话给自己 + 车队通话中... + 点击查看信息 + 已邀请 + 有车友邀请你加入车队,你可以对我说,加入或拒绝 + 退出车队 + 打电话 + 用户信息缺失,请稍后再试 + 加入车队 + 车队已解散 + %1$skm + %1$sm + \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/modules/mogo-module-carchatting/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..de1766b26f --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,5465 @@ +com.mogo.module.carchatting +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +anim design_bottom_sheet_slide_in +anim design_bottom_sheet_slide_out +anim design_snackbar_in +anim design_snackbar_out +anim fragment_fast_out_extra_slow_in +anim mtrl_bottom_sheet_slide_in +anim mtrl_bottom_sheet_slide_out +anim mtrl_card_lowers_interpolator +animator design_appbar_state_list_animator +animator design_fab_hide_motion_spec +animator design_fab_show_motion_spec +animator fragment_close_enter +animator fragment_close_exit +animator fragment_fade_enter +animator fragment_fade_exit +animator fragment_open_enter +animator fragment_open_exit +animator linear_indeterminate_line1_head_interpolator +animator linear_indeterminate_line1_tail_interpolator +animator linear_indeterminate_line2_head_interpolator +animator linear_indeterminate_line2_tail_interpolator +animator mtrl_btn_state_list_anim +animator mtrl_btn_unelevated_state_list_anim +animator mtrl_card_state_list_anim +animator mtrl_chip_state_list_anim +animator mtrl_extended_fab_change_size_collapse_motion_spec +animator mtrl_extended_fab_change_size_expand_motion_spec +animator mtrl_extended_fab_hide_motion_spec +animator mtrl_extended_fab_show_motion_spec +animator mtrl_extended_fab_state_list_animator +animator mtrl_fab_hide_motion_spec +animator mtrl_fab_show_motion_spec +animator mtrl_fab_transformation_sheet_collapse_spec +animator mtrl_fab_transformation_sheet_expand_spec +attr ConstraintRotate +attr OtherHeartImg +attr SharedValue +attr SharedValueId +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseContentDescription +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeTheme +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionTextColorAlpha +attr actionViewClass +attr activityChooserViewStyle +attr actualImageResource +attr actualImageScaleType +attr actualImageUri +attr ad_marker_color +attr ad_marker_width +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr altSrc +attr animateCircleAngleTo +attr animateRelativeTo +attr animate_relativeTo +attr animationMode +attr appBarLayoutStyle +attr applyMotionScene +attr arcMode +attr arrowHeadLength +attr arrowShaftLength +attr attributeName +attr autoCompleteMode +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr autoTransition +attr background +attr backgroundColor +attr backgroundImage +attr backgroundInsetBottom +attr backgroundInsetEnd +attr backgroundInsetStart +attr backgroundInsetTop +attr backgroundOverlayColorAlpha +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr badgeGravity +attr badgeStyle +attr badgeTextColor +attr barLength +attr bar_height +attr barrierAllowsGoneWidgets +attr barrierDirection +attr barrierMargin +attr behavior_autoHide +attr behavior_autoShrink +attr behavior_draggable +attr behavior_expandedOffset +attr behavior_fitToContents +attr behavior_halfExpandedRatio +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_saveFlags +attr behavior_skipCollapsed +attr blendSrc +attr borderRound +attr borderRoundPercent +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetStyle +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeErrorColor +attr boxStrokeWidth +attr boxStrokeWidthFocused +attr brightness +attr buffered_color +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr cardBackgroundColor +attr cardCornerRadius +attr cardElevation +attr cardForegroundColor +attr cardMaxElevation +attr cardPreventCornerOverlap +attr cardUseCompatPadding +attr cardViewStyle +attr carousel_backwardTransition +attr carousel_emptyViewsBehavior +attr carousel_firstView +attr carousel_forwardTransition +attr carousel_infinite +attr carousel_nextState +attr carousel_previousState +attr carousel_touchUpMode +attr carousel_touchUp_dampeningFactor +attr carousel_touchUp_velocityThreshold +attr chainUseRtl +attr checkboxStyle +attr checkedButton +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconMargin +attr checkedIconSize +attr checkedIconTint +attr checkedIconVisible +attr checkedTextViewStyle +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipMinTouchTargetSize +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr chipSurfaceColor +attr circleRadius +attr circularProgressIndicatorStyle +attr circularflow_angles +attr circularflow_defaultAngle +attr circularflow_defaultRadius +attr circularflow_radiusInDP +attr circularflow_viewCenter +attr civ_border_color +attr civ_border_overlay +attr civ_border_width +attr civ_circle_background_color +attr civ_fill_color +attr clearsTag +attr clickAction +attr clickable +attr clockFaceBackgroundColor +attr clockHandColor +attr clockIcon +attr clockNumberTextColor +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr collapsedSize +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr collapsingToolbarLayoutStyle +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorOnBackground +attr colorOnError +attr colorOnPrimary +attr colorOnPrimarySurface +attr colorOnSecondary +attr colorOnSurface +attr colorPrimary +attr colorPrimaryDark +attr colorPrimarySurface +attr colorPrimaryVariant +attr colorSecondary +attr colorSecondaryVariant +attr colorSurface +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraintSetEnd +attr constraintSetStart +attr constraint_referenced_ids +attr constraint_referenced_tags +attr constraints +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr contentPadding +attr contentPaddingBottom +attr contentPaddingEnd +attr contentPaddingLeft +attr contentPaddingRight +attr contentPaddingStart +attr contentPaddingTop +attr contentScrim +attr contrast +attr controlBackground +attr controller_layout_id +attr coordinatorLayoutStyle +attr cornerFamily +attr cornerFamilyBottomLeft +attr cornerFamilyBottomRight +attr cornerFamilyTopLeft +attr cornerFamilyTopRight +attr cornerRadius +attr cornerSize +attr cornerSizeBottomLeft +attr cornerSizeBottomRight +attr cornerSizeTopLeft +attr cornerSizeTopRight +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterOverflowTextColor +attr counterTextAppearance +attr counterTextColor +attr crossfade +attr currentState +attr curveFit +attr customBoolean +attr customColorDrawableValue +attr customColorValue +attr customDimension +attr customFloatValue +attr customIntegerValue +attr customNavigationLayout +attr customPixelDimension +attr customReference +attr customStringValue +attr dayInvalidStyle +attr daySelectedStyle +attr dayStyle +attr dayTodayStyle +attr defaultDuration +attr defaultQueryHint +attr defaultState +attr default_artwork +attr deltaPolarAngle +attr deltaPolarRadius +attr deriveConstraintsFrom +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr disappearedScale +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr download_bg_line_color +attr download_bg_line_width +attr download_line_color +attr download_line_width +attr download_text_color +attr download_text_size +attr dragDirection +attr dragScale +attr dragThreshold +attr drawPath +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr dsv_orientation +attr duration +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elenmentCount +attr elenmentEmpty +attr elenmentFill +attr elenmentHarf +attr elenmentHeight +attr elenmentPadding +attr elenmentStep +attr elenmentWidth +attr elevation +attr elevationOverlayColor +attr elevationOverlayEnabled +attr enableEdgeToEdge +attr endIconCheckable +attr endIconContentDescription +attr endIconDrawable +attr endIconMode +attr endIconTint +attr endIconTintMode +attr enforceMaterialTheme +attr enforceTextAppearance +attr ensureMinTouchTargetSize +attr errorContentDescription +attr errorEnabled +attr errorIconDrawable +attr errorIconTint +attr errorIconTintMode +attr errorTextAppearance +attr errorTextColor +attr expandActivityOverflowButtonDrawable +attr expanded +attr expandedHintEnabled +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr extendMotionSpec +attr extendedFloatingActionButtonStyle +attr extraMultilineHeightEnabled +attr fabAlignmentMode +attr fabAnimationMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fadeDuration +attr failureImage +attr failureImageScaleType +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr fastforward_increment +attr firstBaselineToTopHeight +attr floatingActionButtonStyle +attr flow_firstHorizontalBias +attr flow_firstHorizontalStyle +attr flow_firstVerticalBias +attr flow_firstVerticalStyle +attr flow_horizontalAlign +attr flow_horizontalBias +attr flow_horizontalGap +attr flow_horizontalStyle +attr flow_lastHorizontalBias +attr flow_lastHorizontalStyle +attr flow_lastVerticalBias +attr flow_lastVerticalStyle +attr flow_maxElementsWrap +attr flow_padding +attr flow_verticalAlign +attr flow_verticalBias +attr flow_verticalGap +attr flow_verticalStyle +attr flow_wrapMode +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr forceApplySystemWindowInsetTop +attr foregroundInsidePadding +attr framePosition +attr gapBetweenBars +attr gestureInsetBottomIgnored +attr goIcon +attr haloColor +attr haloRadius +attr headerLayout +attr height +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr helperTextTextColor +attr hideAnimationBehavior +attr hideMotionSpec +attr hideOnContentScroll +attr hideOnScroll +attr hide_on_touch +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr hintTextColor +attr homeAsUpIndicator +attr homeLayout +attr horizontalOffset +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr ifTagNotSet +attr ifTagSet +attr imageButtonStyle +attr imagePanX +attr imagePanY +attr imageRotate +attr imageZoom +attr indeterminateAnimationType +attr indeterminateProgressStyle +attr indicatorColor +attr indicatorDirectionCircular +attr indicatorDirectionLinear +attr indicatorInset +attr indicatorSize +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr isMaterialTheme +attr itemBackground +attr itemFillColor +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemMaxLines +attr itemPadding +attr itemRippleColor +attr itemShapeAppearance +attr itemShapeAppearanceOverlay +attr itemShapeFillColor +attr itemShapeInsetBottom +attr itemShapeInsetEnd +attr itemShapeInsetStart +attr itemShapeInsetTop +attr itemSpacing +attr itemStrokeColor +attr itemStrokeWidth +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr keyPositionType +attr keyboardIcon +attr keylines +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutDescription +attr layoutDuringTransition +attr layoutManager +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBaseline_toBottomOf +attr layout_constraintBaseline_toTopOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTag +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_goneMarginBaseline +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_marginBaseline +attr layout_optimizationLevel +attr layout_scrollFlags +attr layout_scrollInterpolator +attr layout_wrapBehaviorInParent +attr liftOnScroll +attr liftOnScrollTargetViewId +attr limitBoundsTo +attr lineHeight +attr lineSpacing +attr linearProgressIndicatorStyle +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr materialAlertDialogBodyTextStyle +attr materialAlertDialogTheme +attr materialAlertDialogTitleIconStyle +attr materialAlertDialogTitlePanelStyle +attr materialAlertDialogTitleTextStyle +attr materialButtonOutlinedStyle +attr materialButtonStyle +attr materialButtonToggleGroupStyle +attr materialCalendarDay +attr materialCalendarFullscreenTheme +attr materialCalendarHeaderCancelButton +attr materialCalendarHeaderConfirmButton +attr materialCalendarHeaderDivider +attr materialCalendarHeaderLayout +attr materialCalendarHeaderSelection +attr materialCalendarHeaderTitle +attr materialCalendarHeaderToggleButton +attr materialCalendarMonth +attr materialCalendarMonthNavigationButton +attr materialCalendarStyle +attr materialCalendarTheme +attr materialCalendarYearNavigationButton +attr materialCardViewStyle +attr materialCircleRadius +attr materialClockStyle +attr materialThemeOverlay +attr materialTimePickerStyle +attr materialTimePickerTheme +attr maxAcceleration +attr maxActionInlineWidth +attr maxButtonHeight +attr maxCharacterCount +attr maxHeight +attr maxImageSize +attr maxLines +attr maxVelocity +attr maxWidth +attr measureWithLargestChild +attr menu +attr menuGravity +attr methodName +attr minHeight +attr minHideDelay +attr minSeparation +attr minTouchTargetSize +attr minWidth +attr miv_blurRadius +attr miv_borderColor +attr miv_bottomLeftRadius +attr miv_bottomRightRadius +attr miv_failureHolder +attr miv_isBlur +attr miv_overlayImageId +attr miv_placeHolder +attr miv_radius +attr miv_shape +attr miv_shapeBorderWidth +attr miv_topLeftRadius +attr miv_topRightRadius +attr mock_diagonalsColor +attr mock_label +attr mock_labelBackgroundColor +attr mock_labelColor +attr mock_showDiagonals +attr mock_showLabel +attr motionDebug +attr motionDurationLong1 +attr motionDurationLong2 +attr motionDurationMedium1 +attr motionDurationMedium2 +attr motionDurationShort1 +attr motionDurationShort2 +attr motionEasingAccelerated +attr motionEasingDecelerated +attr motionEasingEmphasized +attr motionEasingLinear +attr motionEasingStandard +attr motionEffect_alpha +attr motionEffect_end +attr motionEffect_move +attr motionEffect_start +attr motionEffect_strict +attr motionEffect_translationX +attr motionEffect_translationY +attr motionEffect_viewTransition +attr motionInterpolator +attr motionPath +attr motionPathRotate +attr motionProgress +attr motionStagger +attr motionTarget +attr motion_postLayoutCollision +attr motion_triggerOnCollision +attr moveWhenScrollAtTop +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationIconTint +attr navigationMode +attr navigationRailStyle +attr navigationViewStyle +attr nestedScrollFlags +attr nestedScrollable +attr number +attr numericModifiers +attr onCross +attr onHide +attr onNegativeCross +attr onPositiveCross +attr onShow +attr onStateTransition +attr onTouchUp +attr overlapAnchor +attr overlay +attr overlayImage +attr paddingBottomNoButtons +attr paddingBottomSystemWindowInsets +attr paddingEnd +attr paddingLeftSystemWindowInsets +attr paddingRightSystemWindowInsets +attr paddingStart +attr paddingTopNoTitle +attr paddingTopSystemWindowInsets +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr pathMotionArc +attr path_percent +attr percentHeight +attr percentWidth +attr percentX +attr percentY +attr perpendicularPath_percent +attr pivotAnchor +attr placeholderImage +attr placeholderImageScaleType +attr placeholderText +attr placeholderTextAppearance +attr placeholderTextColor +attr placeholder_emptyVisibility +attr play_bg_line_color +attr play_bg_line_width +attr play_line_color +attr play_line_width +attr played_color +attr player_layout_id +attr polarRelativeTo +attr popupMenuBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr prefixText +attr prefixTextAppearance +attr prefixTextColor +attr preserveIconSpacing +attr pressedStateOverlayImage +attr pressedTranslationZ +attr progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +attr quantizeMotionInterpolator +attr quantizeMotionPhase +attr quantizeMotionSteps +attr queryBackground +attr queryHint +attr radioButtonStyle +attr rangeFillColor +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr reactiveGuide_animateChange +attr reactiveGuide_applyToAllConstraintSets +attr reactiveGuide_applyToConstraintSet +attr reactiveGuide_valueId +attr recyclerViewStyle +attr region_heightLessThan +attr region_heightMoreThan +attr region_widthLessThan +attr region_widthMoreThan +attr resize_mode +attr retryImage +attr retryImageScaleType +attr reverseLayout +attr rewind_increment +attr rippleColor +attr rotationCenterId +attr round +attr roundAsCircle +attr roundBottomEnd +attr roundBottomLeft +attr roundBottomRight +attr roundBottomStart +attr roundLayoutRadius +attr roundPercent +attr roundTopEnd +attr roundTopLeft +attr roundTopRight +attr roundTopStart +attr roundWithOverlayColor +attr roundedCornerRadius +attr roundingBorderColor +attr roundingBorderPadding +attr roundingBorderWidth +attr saturation +attr scaleFromTextSize +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr scrubber_color +attr scrubber_disabled_size +attr scrubber_dragged_size +attr scrubber_enabled_size +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr selectionRequired +attr selectorSize +attr setsTag +attr shapeAppearance +attr shapeAppearanceLargeComponent +attr shapeAppearanceMediumComponent +attr shapeAppearanceOverlay +attr shapeAppearanceSmallComponent +attr showAnimationBehavior +attr showAsAction +attr showDelay +attr showDividers +attr showMotionSpec +attr showPaths +attr showText +attr showTitle +attr show_timeout +attr shrinkMotionSpec +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr sizePercent +attr sliderStyle +attr snackbarButtonStyle +attr snackbarStyle +attr snackbarTextViewStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr springBoundary +attr springDamping +attr springMass +attr springStiffness +attr springStopThreshold +attr srcCompat +attr stackFromEnd +attr staggered +attr startIconCheckable +attr startIconContentDescription +attr startIconDrawable +attr startIconTint +attr startIconTintMode +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_dragged +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarForeground +attr statusBarScrim +attr stepSize +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleCentered +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suffixText +attr suffixTextAppearance +attr suffixTextColor +attr suggestionRowLayout +attr surface_type +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationDuration +attr tabIndicatorAnimationMode +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr tabUnboundedRipple +attr targetId +attr telltales_tailColor +attr telltales_tailScale +attr telltales_velocityMode +attr textAllCaps +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceLargePopupMenu +attr textAppearanceLineHeightEnabled +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearanceOverline +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textBackground +attr textBackgroundPanX +attr textBackgroundPanY +attr textBackgroundRotate +attr textBackgroundZoom +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textFillColor +attr textInputLayoutFocusedRectEnabled +attr textInputStyle +attr textLocale +attr textOutlineColor +attr textOutlineThickness +attr textPanX +attr textPanY +attr textStartPadding +attr textureBlurFactor +attr textureEffect +attr textureHeight +attr textureWidth +attr theme +attr themeLineHeight +attr thickness +attr thumbColor +attr thumbElevation +attr thumbRadius +attr thumbStrokeColor +attr thumbStrokeWidth +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickColor +attr tickColorActive +attr tickColorInactive +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tickVisible +attr tint +attr tintMode +attr title +attr titleCentered +attr titleCollapseMode +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipStyle +attr tooltipText +attr touchAnchorId +attr touchAnchorSide +attr touchRegionId +attr touch_target_height +attr track +attr trackColor +attr trackColorActive +attr trackColorInactive +attr trackCornerRadius +attr trackHeight +attr trackThickness +attr trackTint +attr trackTintMode +attr transformPivotTarget +attr transitionDisable +attr transitionEasing +attr transitionFlags +attr transitionPathRotate +attr transitionShapeAppearance +attr triggerId +attr triggerReceiver +attr triggerSlack +attr ttcIndex +attr unplayed_color +attr upDuration +attr useCompatPadding +attr useMaterialThemeColors +attr use_artwork +attr use_controller +attr values +attr verticalOffset +attr viewAspectRatio +attr viewInflaterClass +attr viewTransitionMode +attr viewTransitionOnCross +attr viewTransitionOnNegativeCross +attr viewTransitionOnPositiveCross +attr visibilityMode +attr voiceIcon +attr warmth +attr waveDecay +attr waveOffset +attr wavePeriod +attr wavePhase +attr waveShape +attr waveVariesBy +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +attr yearSelectedStyle +attr yearStyle +attr yearTodayStyle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool abc_config_showMenuShortcutsWhenKeyboardPresent +bool mtrl_btn_textappearance_all_caps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_decor_view_status_guard +color abc_decor_view_status_guard_light +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color bottom_container_bg +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color checkbox_themeable_attribute_color +color design_bottom_navigation_shadow_color +color design_box_stroke_color +color design_dark_default_color_background +color design_dark_default_color_error +color design_dark_default_color_on_background +color design_dark_default_color_on_error +color design_dark_default_color_on_primary +color design_dark_default_color_on_secondary +color design_dark_default_color_on_surface +color design_dark_default_color_primary +color design_dark_default_color_primary_dark +color design_dark_default_color_primary_variant +color design_dark_default_color_secondary +color design_dark_default_color_secondary_variant +color design_dark_default_color_surface +color design_default_color_background +color design_default_color_error +color design_default_color_on_background +color design_default_color_on_error +color design_default_color_on_primary +color design_default_color_on_secondary +color design_default_color_on_surface +color design_default_color_primary +color design_default_color_primary_dark +color design_default_color_primary_variant +color design_default_color_secondary +color design_default_color_secondary_variant +color design_default_color_surface +color design_error +color design_fab_shadow_end_color +color design_fab_shadow_mid_color +color design_fab_shadow_start_color +color design_fab_stroke_end_inner_color +color design_fab_stroke_end_outer_color +color design_fab_stroke_top_inner_color +color design_fab_stroke_top_outer_color +color design_icon_tint +color design_snackbar_background_color +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material +color error_color_material_dark +color error_color_material_light +color exo_edit_mode_background_color +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_cursor_color +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color material_on_background_disabled +color material_on_background_emphasis_high_type +color material_on_background_emphasis_medium +color material_on_primary_disabled +color material_on_primary_emphasis_high_type +color material_on_primary_emphasis_medium +color material_on_surface_disabled +color material_on_surface_emphasis_high_type +color material_on_surface_emphasis_medium +color material_on_surface_stroke +color material_slider_active_tick_marks_color +color material_slider_active_track_color +color material_slider_halo_color +color material_slider_inactive_tick_marks_color +color material_slider_inactive_track_color +color material_slider_thumb_color +color material_timepicker_button_background +color material_timepicker_button_stroke +color material_timepicker_clock_text_color +color material_timepicker_clockface +color material_timepicker_modebutton_tint +color module_carchatting_hawk_eye_status_color +color module_carchatting_match_line +color module_carchatting_nick_color +color module_carchatting_red_color +color module_carchatting_status_color +color module_carchatting_team_leader +color module_carchatting_team_line +color module_carchatting_user_call +color module_carchatting_white_color +color module_commons_FFF_333 +color module_commons_dlg_bkg +color module_commons_wm_dialog_text_textColor +color module_ext_color_voice_text +color module_mogo_autopilot_status_disable +color module_mogo_autopilot_status_enable +color module_switch_map_bg +color modules_commons_toast_text_color +color mtrl_btn_bg_color_selector +color mtrl_btn_ripple_color +color mtrl_btn_stroke_color_selector +color mtrl_btn_text_btn_bg_color_selector +color mtrl_btn_text_btn_ripple_color +color mtrl_btn_text_color_disabled +color mtrl_btn_text_color_selector +color mtrl_btn_transparent_bg_color +color mtrl_calendar_item_stroke_color +color mtrl_calendar_selected_range +color mtrl_card_view_foreground +color mtrl_card_view_ripple +color mtrl_chip_background_color +color mtrl_chip_close_icon_tint +color mtrl_chip_surface_color +color mtrl_chip_text_color +color mtrl_choice_chip_background_color +color mtrl_choice_chip_ripple_color +color mtrl_choice_chip_text_color +color mtrl_error +color mtrl_fab_bg_color_selector +color mtrl_fab_icon_text_color_selector +color mtrl_fab_ripple_color +color mtrl_filled_background_color +color mtrl_filled_icon_tint +color mtrl_filled_stroke_color +color mtrl_indicator_text_color +color mtrl_navigation_bar_colored_item_tint +color mtrl_navigation_bar_colored_ripple_color +color mtrl_navigation_bar_item_tint +color mtrl_navigation_bar_ripple_color +color mtrl_navigation_item_background_color +color mtrl_navigation_item_icon_tint +color mtrl_navigation_item_text_color +color mtrl_on_primary_text_btn_text_color_selector +color mtrl_on_surface_ripple_color +color mtrl_outlined_icon_tint +color mtrl_outlined_stroke_color +color mtrl_popupmenu_overlay_color +color mtrl_scrim_color +color mtrl_tabs_colored_ripple_color +color mtrl_tabs_icon_color_selector +color mtrl_tabs_icon_color_selector_colored +color mtrl_tabs_legacy_text_color_selector +color mtrl_tabs_ripple_color +color mtrl_text_btn_text_color_selector +color mtrl_textinput_default_box_stroke_color +color mtrl_textinput_disabled_color +color mtrl_textinput_filled_box_default_background_color +color mtrl_textinput_focused_box_stroke_color +color mtrl_textinput_hovered_box_stroke_color +color notification_action_color_filter +color notification_icon_bg_color +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color radiobutton_themeable_attribute_color +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color style_color +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color test_mtrl_calendar_day +color test_mtrl_calendar_day_selected +color tooltip_background_dark +color tooltip_background_light +color v2x_FFF_666 +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_progress_bar_size +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_star_big +dimen abc_star_medium +dimen abc_star_small +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen action_bar_size +dimen appcompat_dialog_background_inset +dimen brightness_icon +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +dimen clock_face_margin_start +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen default_dimension +dimen design_appbar_elevation +dimen design_bottom_navigation_active_item_max_width +dimen design_bottom_navigation_active_item_min_width +dimen design_bottom_navigation_active_text_size +dimen design_bottom_navigation_elevation +dimen design_bottom_navigation_height +dimen design_bottom_navigation_icon_size +dimen design_bottom_navigation_item_max_width +dimen design_bottom_navigation_item_min_width +dimen design_bottom_navigation_label_padding +dimen design_bottom_navigation_margin +dimen design_bottom_navigation_shadow_height +dimen design_bottom_navigation_text_size +dimen design_bottom_sheet_elevation +dimen design_bottom_sheet_modal_elevation +dimen design_bottom_sheet_peek_height_min +dimen design_fab_border_width +dimen design_fab_elevation +dimen design_fab_image_size +dimen design_fab_size_mini +dimen design_fab_size_normal +dimen design_fab_translation_z_hovered_focused +dimen design_fab_translation_z_pressed +dimen design_navigation_elevation +dimen design_navigation_icon_padding +dimen design_navigation_icon_size +dimen design_navigation_item_horizontal_padding +dimen design_navigation_item_icon_padding +dimen design_navigation_max_width +dimen design_navigation_padding_bottom +dimen design_navigation_separator_vertical_padding +dimen design_snackbar_action_inline_max_width +dimen design_snackbar_action_text_color_alpha +dimen design_snackbar_background_corner_radius +dimen design_snackbar_elevation +dimen design_snackbar_extra_spacing_horizontal +dimen design_snackbar_max_width +dimen design_snackbar_min_width +dimen design_snackbar_padding_horizontal +dimen design_snackbar_padding_vertical +dimen design_snackbar_padding_vertical_2lines +dimen design_snackbar_text_size +dimen design_tab_max_width +dimen design_tab_scrollable_min_width +dimen design_tab_text_size +dimen design_tab_text_size_2line +dimen design_textinput_caption_translate_y +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen dp_0 +dimen dp_0_1 +dimen dp_0_5 +dimen dp_1 +dimen dp_10 +dimen dp_100 +dimen dp_1000 +dimen dp_101 +dimen dp_102 +dimen dp_103 +dimen dp_104 +dimen dp_104_5 +dimen dp_105 +dimen dp_106 +dimen dp_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_111 +dimen dp_112 +dimen dp_113 +dimen dp_114 +dimen dp_115 +dimen dp_116 +dimen dp_117 +dimen dp_118 +dimen dp_119 +dimen dp_12 +dimen dp_120 +dimen dp_121 +dimen dp_122 +dimen dp_123 +dimen dp_124 +dimen dp_125 +dimen dp_126 +dimen dp_127 +dimen dp_128 +dimen dp_129 +dimen dp_13 +dimen dp_130 +dimen dp_1300 +dimen dp_131 +dimen dp_132 +dimen dp_133 +dimen dp_134 +dimen dp_134_5 +dimen dp_135 +dimen dp_136 +dimen dp_137 +dimen dp_138 +dimen dp_139 +dimen dp_14 +dimen dp_140 +dimen dp_141 +dimen dp_142 +dimen dp_143 +dimen dp_144 +dimen dp_145 +dimen dp_146 +dimen dp_147 +dimen dp_148 +dimen dp_149 +dimen dp_15 +dimen dp_150 +dimen dp_151 +dimen dp_152 +dimen dp_153 +dimen dp_154 +dimen dp_155 +dimen dp_156 +dimen dp_157 +dimen dp_158 +dimen dp_159 +dimen dp_16 +dimen dp_160 +dimen dp_161 +dimen dp_162 +dimen dp_163 +dimen dp_164 +dimen dp_165 +dimen dp_166 +dimen dp_167 +dimen dp_168 +dimen dp_169 +dimen dp_17 +dimen dp_170 +dimen dp_171 +dimen dp_172 +dimen dp_173 +dimen dp_174 +dimen dp_175 +dimen dp_176 +dimen dp_177 +dimen dp_178 +dimen dp_179 +dimen dp_18 +dimen dp_180 +dimen dp_181 +dimen dp_182 +dimen dp_183 +dimen dp_184 +dimen dp_185 +dimen dp_186 +dimen dp_187 +dimen dp_188 +dimen dp_189 +dimen dp_19 +dimen dp_190 +dimen dp_191 +dimen dp_191_25 +dimen dp_192 +dimen dp_1920 +dimen dp_193 +dimen dp_194 +dimen dp_195 +dimen dp_196 +dimen dp_197 +dimen dp_198 +dimen dp_199 +dimen dp_1_5 +dimen dp_2 +dimen dp_20 +dimen dp_200 +dimen dp_201 +dimen dp_202 +dimen dp_203 +dimen dp_204 +dimen dp_205 +dimen dp_206 +dimen dp_207 +dimen dp_208 +dimen dp_209 +dimen dp_21 +dimen dp_210 +dimen dp_211 +dimen dp_212 +dimen dp_213 +dimen dp_214 +dimen dp_215 +dimen dp_216 +dimen dp_217 +dimen dp_218 +dimen dp_219 +dimen dp_22 +dimen dp_220 +dimen dp_221 +dimen dp_222 +dimen dp_223 +dimen dp_224 +dimen dp_225 +dimen dp_226 +dimen dp_227 +dimen dp_228 +dimen dp_229 +dimen dp_23 +dimen dp_230 +dimen dp_231 +dimen dp_232 +dimen dp_233 +dimen dp_234 +dimen dp_235 +dimen dp_236 +dimen dp_237 +dimen dp_238 +dimen dp_239 +dimen dp_24 +dimen dp_240 +dimen dp_241 +dimen dp_242 +dimen dp_243 +dimen dp_244 +dimen dp_245 +dimen dp_246 +dimen dp_247 +dimen dp_248 +dimen dp_249 +dimen dp_25 +dimen dp_250 +dimen dp_251 +dimen dp_252 +dimen dp_253 +dimen dp_254 +dimen dp_255 +dimen dp_256 +dimen dp_257 +dimen dp_258 +dimen dp_259 +dimen dp_26 +dimen dp_260 +dimen dp_261 +dimen dp_262 +dimen dp_263 +dimen dp_264 +dimen dp_265 +dimen dp_266 +dimen dp_267 +dimen dp_268 +dimen dp_269 +dimen dp_27 +dimen dp_270 +dimen dp_271 +dimen dp_272 +dimen dp_273 +dimen dp_274 +dimen dp_275 +dimen dp_276 +dimen dp_277 +dimen dp_278 +dimen dp_279 +dimen dp_28 +dimen dp_280 +dimen dp_281 +dimen dp_282 +dimen dp_283 +dimen dp_284 +dimen dp_285 +dimen dp_286 +dimen dp_287 +dimen dp_288 +dimen dp_289 +dimen dp_29 +dimen dp_290 +dimen dp_291 +dimen dp_292 +dimen dp_293 +dimen dp_294 +dimen dp_295 +dimen dp_296 +dimen dp_297 +dimen dp_298 +dimen dp_299 +dimen dp_2_5 +dimen dp_3 +dimen dp_30 +dimen dp_300 +dimen dp_301 +dimen dp_302 +dimen dp_303 +dimen dp_304 +dimen dp_305 +dimen dp_306 +dimen dp_307 +dimen dp_308 +dimen dp_309 +dimen dp_31 +dimen dp_310 +dimen dp_311 +dimen dp_312 +dimen dp_313 +dimen dp_314 +dimen dp_315 +dimen dp_316 +dimen dp_317 +dimen dp_318 +dimen dp_319 +dimen dp_32 +dimen dp_320 +dimen dp_321 +dimen dp_322 +dimen dp_323 +dimen dp_324 +dimen dp_325 +dimen dp_326 +dimen dp_327 +dimen dp_328 +dimen dp_329 +dimen dp_33 +dimen dp_330 +dimen dp_331 +dimen dp_332 +dimen dp_333 +dimen dp_334 +dimen dp_335 +dimen dp_336 +dimen dp_337 +dimen dp_338 +dimen dp_339 +dimen dp_34 +dimen dp_340 +dimen dp_341 +dimen dp_342 +dimen dp_343 +dimen dp_344 +dimen dp_345 +dimen dp_346 +dimen dp_347 +dimen dp_348 +dimen dp_349 +dimen dp_35 +dimen dp_350 +dimen dp_351 +dimen dp_352 +dimen dp_353 +dimen dp_354 +dimen dp_355 +dimen dp_356 +dimen dp_357 +dimen dp_358 +dimen dp_359 +dimen dp_36 +dimen dp_366 +dimen dp_367 +dimen dp_368 +dimen dp_369 +dimen dp_37 +dimen dp_370 +dimen dp_371 +dimen dp_372 +dimen dp_373 +dimen dp_374 +dimen dp_375 +dimen dp_376 +dimen dp_377 +dimen dp_378 +dimen dp_379 +dimen dp_38 +dimen dp_380 +dimen dp_381 +dimen dp_382 +dimen dp_383 +dimen dp_384 +dimen dp_385 +dimen dp_386 +dimen dp_387 +dimen dp_388 +dimen dp_389 +dimen dp_39 +dimen dp_390 +dimen dp_391 +dimen dp_392 +dimen dp_393 +dimen dp_394 +dimen dp_395 +dimen dp_396 +dimen dp_397 +dimen dp_398 +dimen dp_399 +dimen dp_3_5 +dimen dp_4 +dimen dp_40 +dimen dp_400 +dimen dp_401 +dimen dp_402 +dimen dp_403 +dimen dp_404 +dimen dp_405 +dimen dp_406 +dimen dp_407 +dimen dp_408 +dimen dp_409 +dimen dp_41 +dimen dp_410 +dimen dp_411 +dimen dp_412 +dimen dp_413 +dimen dp_414 +dimen dp_415 +dimen dp_416 +dimen dp_417 +dimen dp_418 +dimen dp_419 +dimen dp_42 +dimen dp_420 +dimen dp_421 +dimen dp_422 +dimen dp_423 +dimen dp_424 +dimen dp_425 +dimen dp_426 +dimen dp_427 +dimen dp_428 +dimen dp_429 +dimen dp_43 +dimen dp_430 +dimen dp_431 +dimen dp_432 +dimen dp_433 +dimen dp_434 +dimen dp_435 +dimen dp_436 +dimen dp_437 +dimen dp_438 +dimen dp_439 +dimen dp_44 +dimen dp_440 +dimen dp_441 +dimen dp_442 +dimen dp_443 +dimen dp_444 +dimen dp_445 +dimen dp_446 +dimen dp_447 +dimen dp_448 +dimen dp_449 +dimen dp_45 +dimen dp_450 +dimen dp_451 +dimen dp_452 +dimen dp_453 +dimen dp_454 +dimen dp_455 +dimen dp_456 +dimen dp_457 +dimen dp_458 +dimen dp_459 +dimen dp_46 +dimen dp_460 +dimen dp_461 +dimen dp_462 +dimen dp_463 +dimen dp_464 +dimen dp_465 +dimen dp_466 +dimen dp_467 +dimen dp_468 +dimen dp_469 +dimen dp_47 +dimen dp_470 +dimen dp_471 +dimen dp_472 +dimen dp_473 +dimen dp_474 +dimen dp_475 +dimen dp_476 +dimen dp_477 +dimen dp_478 +dimen dp_479 +dimen dp_48 +dimen dp_480 +dimen dp_481 +dimen dp_482 +dimen dp_483 +dimen dp_484 +dimen dp_485 +dimen dp_486 +dimen dp_487 +dimen dp_488 +dimen dp_489 +dimen dp_49 +dimen dp_490 +dimen dp_491 +dimen dp_492 +dimen dp_493 +dimen dp_494 +dimen dp_495 +dimen dp_496 +dimen dp_497 +dimen dp_498 +dimen dp_499 +dimen dp_4_5 +dimen dp_5 +dimen dp_50 +dimen dp_500 +dimen dp_501 +dimen dp_502 +dimen dp_503 +dimen dp_504 +dimen dp_505 +dimen dp_506 +dimen dp_507 +dimen dp_508 +dimen dp_509 +dimen dp_51 +dimen dp_510 +dimen dp_511 +dimen dp_512 +dimen dp_513 +dimen dp_514 +dimen dp_515 +dimen dp_516 +dimen dp_517 +dimen dp_518 +dimen dp_519 +dimen dp_52 +dimen dp_520 +dimen dp_521 +dimen dp_522 +dimen dp_523 +dimen dp_524 +dimen dp_525 +dimen dp_526 +dimen dp_527 +dimen dp_528 +dimen dp_529 +dimen dp_53 +dimen dp_530 +dimen dp_531 +dimen dp_532 +dimen dp_533 +dimen dp_534 +dimen dp_535 +dimen dp_536 +dimen dp_537 +dimen dp_538 +dimen dp_539 +dimen dp_54 +dimen dp_540 +dimen dp_541 +dimen dp_542 +dimen dp_543 +dimen dp_544 +dimen dp_545 +dimen dp_546 +dimen dp_547 +dimen dp_548 +dimen dp_549 +dimen dp_55 +dimen dp_550 +dimen dp_551 +dimen dp_552 +dimen dp_553 +dimen dp_554 +dimen dp_555 +dimen dp_556 +dimen dp_557 +dimen dp_558 +dimen dp_559 +dimen dp_56 +dimen dp_560 +dimen dp_561 +dimen dp_562 +dimen dp_563 +dimen dp_564 +dimen dp_565 +dimen dp_566 +dimen dp_567 +dimen dp_568 +dimen dp_569 +dimen dp_57 +dimen dp_570 +dimen dp_571 +dimen dp_572 +dimen dp_573 +dimen dp_574 +dimen dp_575 +dimen dp_576 +dimen dp_577 +dimen dp_578 +dimen dp_579 +dimen dp_58 +dimen dp_580 +dimen dp_581 +dimen dp_582 +dimen dp_583 +dimen dp_584 +dimen dp_585 +dimen dp_586 +dimen dp_587 +dimen dp_588 +dimen dp_589 +dimen dp_59 +dimen dp_590 +dimen dp_591 +dimen dp_592 +dimen dp_593 +dimen dp_594 +dimen dp_595 +dimen dp_596 +dimen dp_597 +dimen dp_598 +dimen dp_599 +dimen dp_6 +dimen dp_60 +dimen dp_600 +dimen dp_601 +dimen dp_602 +dimen dp_603 +dimen dp_604 +dimen dp_605 +dimen dp_606 +dimen dp_607 +dimen dp_608 +dimen dp_609 +dimen dp_61 +dimen dp_610 +dimen dp_611 +dimen dp_612 +dimen dp_613 +dimen dp_614 +dimen dp_615 +dimen dp_616 +dimen dp_617 +dimen dp_618 +dimen dp_619 +dimen dp_62 +dimen dp_620 +dimen dp_621 +dimen dp_622 +dimen dp_623 +dimen dp_624 +dimen dp_625 +dimen dp_626 +dimen dp_627 +dimen dp_628 +dimen dp_629 +dimen dp_63 +dimen dp_630 +dimen dp_631 +dimen dp_632 +dimen dp_633 +dimen dp_634 +dimen dp_635 +dimen dp_636 +dimen dp_637 +dimen dp_638 +dimen dp_639 +dimen dp_64 +dimen dp_640 +dimen dp_641 +dimen dp_642 +dimen dp_643 +dimen dp_644 +dimen dp_645 +dimen dp_646 +dimen dp_647 +dimen dp_648 +dimen dp_649 +dimen dp_65 +dimen dp_650 +dimen dp_651 +dimen dp_652 +dimen dp_653 +dimen dp_654 +dimen dp_655 +dimen dp_656 +dimen dp_657 +dimen dp_658 +dimen dp_659 +dimen dp_66 +dimen dp_660 +dimen dp_661 +dimen dp_662 +dimen dp_663 +dimen dp_664 +dimen dp_665 +dimen dp_666 +dimen dp_667 +dimen dp_668 +dimen dp_669 +dimen dp_67 +dimen dp_670 +dimen dp_671 +dimen dp_672 +dimen dp_673 +dimen dp_674 +dimen dp_675 +dimen dp_676 +dimen dp_677 +dimen dp_678 +dimen dp_679 +dimen dp_68 +dimen dp_680 +dimen dp_681 +dimen dp_682 +dimen dp_683 +dimen dp_684 +dimen dp_685 +dimen dp_686 +dimen dp_687 +dimen dp_688 +dimen dp_689 +dimen dp_69 +dimen dp_690 +dimen dp_691 +dimen dp_692 +dimen dp_693 +dimen dp_694 +dimen dp_695 +dimen dp_696 +dimen dp_697 +dimen dp_698 +dimen dp_699 +dimen dp_7 +dimen dp_70 +dimen dp_700 +dimen dp_701 +dimen dp_702 +dimen dp_703 +dimen dp_704 +dimen dp_705 +dimen dp_706 +dimen dp_707 +dimen dp_708 +dimen dp_709 +dimen dp_71 +dimen dp_710 +dimen dp_711 +dimen dp_712 +dimen dp_713 +dimen dp_714 +dimen dp_715 +dimen dp_716 +dimen dp_717 +dimen dp_718 +dimen dp_719 +dimen dp_72 +dimen dp_720 +dimen dp_721 +dimen dp_722 +dimen dp_723 +dimen dp_724 +dimen dp_725 +dimen dp_726 +dimen dp_727 +dimen dp_728 +dimen dp_729 +dimen dp_73 +dimen dp_730 +dimen dp_731 +dimen dp_732 +dimen dp_733 +dimen dp_734 +dimen dp_735 +dimen dp_736 +dimen dp_737 +dimen dp_738 +dimen dp_739 +dimen dp_74 +dimen dp_740 +dimen dp_741 +dimen dp_742 +dimen dp_743 +dimen dp_744 +dimen dp_745 +dimen dp_746 +dimen dp_747 +dimen dp_748 +dimen dp_749 +dimen dp_75 +dimen dp_750 +dimen dp_751 +dimen dp_752 +dimen dp_753 +dimen dp_754 +dimen dp_755 +dimen dp_756 +dimen dp_757 +dimen dp_758 +dimen dp_759 +dimen dp_76 +dimen dp_760 +dimen dp_761 +dimen dp_762 +dimen dp_763 +dimen dp_764 +dimen dp_765 +dimen dp_766 +dimen dp_767 +dimen dp_768 +dimen dp_769 +dimen dp_77 +dimen dp_770 +dimen dp_771 +dimen dp_772 +dimen dp_773 +dimen dp_774 +dimen dp_775 +dimen dp_776 +dimen dp_777 +dimen dp_778 +dimen dp_779 +dimen dp_78 +dimen dp_780 +dimen dp_781 +dimen dp_782 +dimen dp_783 +dimen dp_784 +dimen dp_785 +dimen dp_786 +dimen dp_787 +dimen dp_788 +dimen dp_789 +dimen dp_79 +dimen dp_790 +dimen dp_791 +dimen dp_792 +dimen dp_793 +dimen dp_794 +dimen dp_795 +dimen dp_796 +dimen dp_797 +dimen dp_798 +dimen dp_799 +dimen dp_7_5 +dimen dp_8 +dimen dp_80 +dimen dp_800 +dimen dp_801 +dimen dp_802 +dimen dp_803 +dimen dp_804 +dimen dp_805 +dimen dp_806 +dimen dp_807 +dimen dp_808 +dimen dp_809 +dimen dp_81 +dimen dp_810 +dimen dp_811 +dimen dp_812 +dimen dp_813 +dimen dp_814 +dimen dp_815 +dimen dp_816 +dimen dp_817 +dimen dp_818 +dimen dp_819 +dimen dp_82 +dimen dp_820 +dimen dp_821 +dimen dp_822 +dimen dp_823 +dimen dp_824 +dimen dp_825 +dimen dp_826 +dimen dp_827 +dimen dp_828 +dimen dp_829 +dimen dp_83 +dimen dp_830 +dimen dp_831 +dimen dp_832 +dimen dp_833 +dimen dp_834 +dimen dp_835 +dimen dp_836 +dimen dp_837 +dimen dp_838 +dimen dp_839 +dimen dp_84 +dimen dp_840 +dimen dp_841 +dimen dp_842 +dimen dp_843 +dimen dp_844 +dimen dp_845 +dimen dp_846 +dimen dp_847 +dimen dp_848 +dimen dp_849 +dimen dp_85 +dimen dp_850 +dimen dp_851 +dimen dp_852 +dimen dp_853 +dimen dp_854 +dimen dp_855 +dimen dp_856 +dimen dp_857 +dimen dp_858 +dimen dp_859 +dimen dp_86 +dimen dp_860 +dimen dp_861 +dimen dp_862 +dimen dp_863 +dimen dp_864 +dimen dp_865 +dimen dp_866 +dimen dp_867 +dimen dp_868 +dimen dp_869 +dimen dp_87 +dimen dp_870 +dimen dp_871 +dimen dp_872 +dimen dp_873 +dimen dp_874 +dimen dp_875 +dimen dp_876 +dimen dp_877 +dimen dp_878 +dimen dp_879 +dimen dp_88 +dimen dp_880 +dimen dp_881 +dimen dp_882 +dimen dp_883 +dimen dp_884 +dimen dp_885 +dimen dp_886 +dimen dp_887 +dimen dp_888 +dimen dp_889 +dimen dp_89 +dimen dp_890 +dimen dp_891 +dimen dp_892 +dimen dp_893 +dimen dp_894 +dimen dp_895 +dimen dp_896 +dimen dp_897 +dimen dp_898 +dimen dp_899 +dimen dp_9 +dimen dp_90 +dimen dp_900 +dimen dp_901 +dimen dp_902 +dimen dp_903 +dimen dp_904 +dimen dp_905 +dimen dp_906 +dimen dp_907 +dimen dp_908 +dimen dp_909 +dimen dp_91 +dimen dp_910 +dimen dp_911 +dimen dp_912 +dimen dp_913 +dimen dp_914 +dimen dp_915 +dimen dp_916 +dimen dp_917 +dimen dp_918 +dimen dp_919 +dimen dp_92 +dimen dp_920 +dimen dp_921 +dimen dp_922 +dimen dp_923 +dimen dp_924 +dimen dp_925 +dimen dp_926 +dimen dp_927 +dimen dp_928 +dimen dp_929 +dimen dp_93 +dimen dp_930 +dimen dp_931 +dimen dp_932 +dimen dp_933 +dimen dp_934 +dimen dp_935 +dimen dp_936 +dimen dp_937 +dimen dp_938 +dimen dp_939 +dimen dp_94 +dimen dp_940 +dimen dp_941 +dimen dp_942 +dimen dp_943 +dimen dp_944 +dimen dp_945 +dimen dp_946 +dimen dp_947 +dimen dp_948 +dimen dp_949 +dimen dp_95 +dimen dp_950 +dimen dp_951 +dimen dp_952 +dimen dp_953 +dimen dp_954 +dimen dp_955 +dimen dp_956 +dimen dp_957 +dimen dp_958 +dimen dp_959 +dimen dp_96 +dimen dp_960 +dimen dp_961 +dimen dp_962 +dimen dp_963 +dimen dp_964 +dimen dp_965 +dimen dp_966 +dimen dp_967 +dimen dp_968 +dimen dp_969 +dimen dp_97 +dimen dp_970 +dimen dp_971 +dimen dp_972 +dimen dp_973 +dimen dp_974 +dimen dp_975 +dimen dp_976 +dimen dp_977 +dimen dp_978 +dimen dp_979 +dimen dp_98 +dimen dp_980 +dimen dp_981 +dimen dp_982 +dimen dp_983 +dimen dp_984 +dimen dp_985 +dimen dp_986 +dimen dp_987 +dimen dp_988 +dimen dp_989 +dimen dp_99 +dimen dp_990 +dimen dp_991 +dimen dp_992 +dimen dp_993 +dimen dp_994 +dimen dp_995 +dimen dp_996 +dimen dp_997 +dimen dp_998 +dimen dp_999 +dimen dp_m_1 +dimen dp_m_10 +dimen dp_m_12 +dimen dp_m_2 +dimen dp_m_20 +dimen dp_m_30 +dimen dp_m_5 +dimen dp_m_60 +dimen dp_m_8 +dimen exo_media_button_height +dimen exo_media_button_width +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen heart_ratingbar_height +dimen heart_ratingbar_width +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen layout_margin_bottom +dimen material_bottom_sheet_max_width +dimen material_clock_display_padding +dimen material_clock_face_margin_top +dimen material_clock_hand_center_dot_radius +dimen material_clock_hand_padding +dimen material_clock_hand_stroke_width +dimen material_clock_number_text_size +dimen material_clock_period_toggle_height +dimen material_clock_period_toggle_margin_left +dimen material_clock_period_toggle_width +dimen material_clock_size +dimen material_cursor_inset_bottom +dimen material_cursor_inset_top +dimen material_cursor_width +dimen material_emphasis_disabled +dimen material_emphasis_high_type +dimen material_emphasis_medium +dimen material_filled_edittext_font_1_3_padding_bottom +dimen material_filled_edittext_font_1_3_padding_top +dimen material_filled_edittext_font_2_0_padding_bottom +dimen material_filled_edittext_font_2_0_padding_top +dimen material_font_1_3_box_collapsed_padding_top +dimen material_font_2_0_box_collapsed_padding_top +dimen material_helper_text_default_padding_top +dimen material_helper_text_font_1_3_padding_horizontal +dimen material_helper_text_font_1_3_padding_top +dimen material_input_text_to_prefix_suffix_padding +dimen material_text_view_test_line_height +dimen material_text_view_test_line_height_override +dimen material_textinput_default_width +dimen material_textinput_max_width +dimen material_textinput_min_width +dimen material_time_picker_minimum_screen_height +dimen material_time_picker_minimum_screen_width +dimen material_timepicker_dialog_buttons_margin_top +dimen module_call_chat_calling_bg_radius +dimen module_call_chat_calling_iv_hawk_eye_margin_left_right +dimen module_call_chat_calling_iv_hawk_eye_width_height +dimen module_call_chat_calling_iv_margin_left_right +dimen module_call_chat_calling_iv_width_height +dimen module_call_chat_calling_text_hawk_eye_margin_top_bottom +dimen module_call_chat_calling_text_hawk_eye_name_size +dimen module_call_chat_calling_text_hawk_eye_time_size +dimen module_call_chat_calling_text_margin_top_bottom +dimen module_call_chat_calling_text_name_size +dimen module_call_chat_calling_text_time_size +dimen module_call_chat_hawk_eye_circle_btn_size +dimen module_call_chat_hawk_eye_incoming_circle_btn_size +dimen module_call_chat_incoming_aisdk_tag_width +dimen module_call_chat_match_iv_height +dimen module_call_chat_match_iv_left_margin +dimen module_call_chat_match_iv_width +dimen module_call_chat_match_text_size +dimen module_call_chat_match_view_left_margin +dimen module_call_chat_match_view_line_margin_top_bottom +dimen module_call_chat_match_view_right_margin +dimen module_call_chat_matching_text_size +dimen module_call_chat_matching_textsize +dimen module_call_chat_state_caller_drawable_padding +dimen module_call_chat_state_caller_height +dimen module_call_chat_state_caller_margin_bottom +dimen module_call_chat_state_caller_margin_left_right +dimen module_call_chat_state_caller_padding_left +dimen module_call_chat_state_caller_text_size +dimen module_call_chat_state_close_icon_width +dimen module_call_chat_state_close_margin +dimen module_call_chat_state_hawk_eye_height +dimen module_call_chat_state_hawk_eye_width +dimen module_call_chat_state_head_border +dimen module_call_chat_state_head_margin_top +dimen module_call_chat_state_height +dimen module_call_chat_state_incoming_hawk_eye_call_margin_right +dimen module_call_chat_state_incoming_hawk_eye_height +dimen module_call_chat_state_incoming_hawk_eye_margin_left +dimen module_call_chat_state_incoming_hawk_eye_width +dimen module_call_chat_state_location_hawk_eye_x +dimen module_call_chat_state_location_hawk_eye_y +dimen module_call_chat_state_location_x +dimen module_call_chat_state_location_y +dimen module_call_chat_state_nick_name_margin_top +dimen module_call_chat_state_nick_name_size +dimen module_call_chat_state_rating_margin_top +dimen module_call_chat_state_user_head_width +dimen module_call_chat_state_width +dimen module_call_chat_team_calling_left_margin +dimen module_call_chat_team_calling_size +dimen module_call_chat_team_calling_top_margin +dimen module_call_chat_team_chatting_margin_top +dimen module_call_chat_team_chatting_text_size +dimen module_call_chat_team_fragment_close_view_height +dimen module_call_chat_team_fragment_close_view_width +dimen module_call_chat_team_fragment_margin +dimen module_call_chat_team_fragment_num_text_size +dimen module_call_chat_team_fragment_padding +dimen module_call_chat_team_fragment_teammates__margin_top +dimen module_call_chat_team_head_view_height +dimen module_call_chat_team_head_view_left_margin +dimen module_call_chat_team_head_view_left_margin4 +dimen module_call_chat_team_head_view_top_margin +dimen module_call_chat_team_head_view_width +dimen module_call_chat_team_info_bottom_margin +dimen module_call_chat_team_info_left_margin +dimen module_call_chat_team_info_margin_bottom +dimen module_call_chat_team_info_size +dimen module_call_chat_team_info_text_size +dimen module_call_chat_team_invitation_content_margin_bottom +dimen module_call_chat_team_invitation_content_margin_left +dimen module_call_chat_team_invitation_content_text_size +dimen module_call_chat_team_invitation_hawk_eye_bg_corner +dimen module_call_chat_team_invitation_hawk_eye_height +dimen module_call_chat_team_invitation_hawk_eye_padding +dimen module_call_chat_team_invitation_hawk_eye_width +dimen module_call_chat_team_invitation_head_height +dimen module_call_chat_team_invitation_head_width +dimen module_call_chat_team_invitation_height +dimen module_call_chat_team_invitation_join_hawk_eye_margin_right +dimen module_call_chat_team_invitation_join_height +dimen module_call_chat_team_invitation_join_margin_right +dimen module_call_chat_team_invitation_join_width +dimen module_call_chat_team_invitation_layout_height +dimen module_call_chat_team_invitation_margin +dimen module_call_chat_team_invitation_padding +dimen module_call_chat_team_invitation_title_height +dimen module_call_chat_team_invitation_title_margin_left +dimen module_call_chat_team_invitation_title_margin_top +dimen module_call_chat_team_invitation_title_text_size +dimen module_call_chat_team_invitation_title_width +dimen module_call_chat_team_ll_head_width +dimen module_call_chat_team_num_text_size +dimen module_call_chat_team_num_width +dimen module_call_chat_team_quit_right_margin +dimen module_call_chat_team_quit_view_height +dimen module_call_chat_team_quit_view_width +dimen module_call_chat_team_teammate_head_height +dimen module_call_chat_team_teammate_head_width +dimen module_call_chat_team_teammate_height +dimen module_call_chat_team_teammate_identity_height +dimen module_call_chat_team_teammate_identity_text_size +dimen module_call_chat_team_teammate_identity_width +dimen module_call_chat_team_teammate_margin +dimen module_call_chat_team_teammate_nickname_margin_left +dimen module_call_chat_team_teammate_nickname_text_size +dimen module_call_chat_team_teammate_padding +dimen module_call_chat_team_view_line_margin_top_bottom +dimen module_call_chat_user_caller_x +dimen module_call_chat_user_state_location_x +dimen module_call_chat_user_state_location_y +dimen module_call_chat_user_state_x +dimen module_call_chat_user_state_y +dimen module_call_chat_view_height +dimen module_call_chat_view_margin_end +dimen module_call_chat_view_match_width +dimen module_call_chat_view_width +dimen module_common_shadow_width +dimen module_common_shadow_width_pos +dimen module_commons_toast_icon_width +dimen module_commons_toast_marginBottom +dimen module_commons_toast_marginLeft +dimen module_commons_toast_marginRight +dimen module_commons_toast_marginTop +dimen module_commons_toast_maxWidth +dimen module_commons_toast_minWidth +dimen module_commons_toast_space_between_icon_and_msg +dimen module_commons_toast_textSize +dimen module_commons_toast_with_left_drawable_marginBottom +dimen module_commons_toast_with_left_drawable_marginLeft +dimen module_commons_toast_with_left_drawable_marginTop +dimen module_commons_toast_y_offset +dimen module_ext_arcView_center_text_size +dimen module_ext_arcView_des_text_size +dimen module_ext_arcView_height +dimen module_ext_arcView_stroke_with +dimen module_ext_arcView_top +dimen module_ext_arcView_width +dimen module_ext_speed_height +dimen module_ext_speed_padding +dimen module_ext_speed_width +dimen module_ext_speed_width_big_radius +dimen module_ext_speed_width_sm_radius +dimen module_hmi_autopilot_status_bg_big_radius +dimen module_hmi_autopilot_status_bg_sm_radius +dimen module_hmi_btn_size +dimen module_hmi_btn_text_size +dimen module_hmi_check_left +dimen module_hmi_check_size +dimen module_map_amap_my_location_bg_size +dimen module_map_amap_my_location_icon_height +dimen module_map_amap_my_location_icon_width +dimen module_mogo_autopilot_status_bg_height +dimen module_mogo_autopilot_status_bg_width +dimen module_mogo_autopilot_status_icon_margin +dimen module_mogo_autopilot_status_icon_width +dimen module_mogo_autopilot_status_margin_left +dimen module_mogo_autopilot_status_margin_top +dimen module_mogo_autopilot_status_padding +dimen module_mogo_autopilot_status_text_margin_start +dimen module_mogo_autopilot_status_text_size +dimen module_service_content_minWidth +dimen module_service_content_textSize +dimen module_service_id_marker_content_paddingRight +dimen module_service_id_marker_content_paddingRight_widthoutCall +dimen module_service_marker_anchor_size +dimen module_service_marker_bounds_bottomMargin +dimen module_service_marker_bounds_leftMargin +dimen module_service_marker_bounds_rightMargin +dimen module_service_marker_bounds_topMargin +dimen module_service_marker_bubble_height +dimen module_service_marker_bubble_icon_height +dimen module_service_marker_bubble_icon_marginBottom +dimen module_service_marker_bubble_icon_vr_height +dimen module_service_marker_bubble_icon_vr_width +dimen module_service_marker_bubble_icon_width +dimen module_service_marker_bubble_vr_height +dimen module_service_marker_bubble_vr_width +dimen module_service_marker_bubble_width +dimen module_service_marker_dot_marginTop +dimen module_service_tag_textSize +dimen module_service_user_header_height +dimen module_service_user_header_width +dimen module_services_empty_tip_marginTop +dimen module_services_empty_tip_textSize +dimen module_services_id_panel_item_avatar_border_width +dimen module_services_id_panel_item_distance_marginLeft +dimen module_services_info_window_height +dimen module_services_info_window_paddingEnd +dimen module_services_info_window_paddingStart +dimen module_services_load_strategy_marginRight +dimen module_services_load_strategy_paddingLeft +dimen module_services_load_strategy_paddingTop +dimen module_services_load_strategy_textSize +dimen module_services_online_car_panel_close_margin_top +dimen module_services_online_car_panel_marginBottom +dimen module_services_online_car_panel_marginRight +dimen module_services_online_car_panel_marginTop +dimen module_services_online_car_panel_paddingBottom +dimen module_services_online_car_panel_paddingLeft +dimen module_services_online_car_panel_recycler_view_margin_top +dimen module_services_online_car_panel_title_margin_top +dimen module_services_online_car_panel_title_text_size +dimen module_services_panel_item_avatar_size +dimen module_services_panel_item_corner +dimen module_services_panel_item_detail_bkg_corner +dimen module_services_panel_item_detail_padding +dimen module_services_panel_item_detail_textSize +dimen module_services_panel_item_distance_textSize +dimen module_services_panel_item_marginBottom +dimen module_services_panel_item_nickname_marginLeft +dimen module_services_panel_item_nickname_textSize +dimen module_services_panel_item_padding +dimen module_services_panel_strategy_button_bkg_corner +dimen module_services_panel_strategy_button_marginTop +dimen module_switch_image +dimen module_switch_image_circle +dimen module_switch_map +dimen module_switch_map_height +dimen module_switch_margin_left +dimen module_switch_text_size +dimen module_v2n_image_margin_left +dimen module_v2n_tip_height +dimen module_v2n_tip_text_margin_right +dimen module_v2n_tip_text_width +dimen module_v2n_tip_width +dimen module_v2x_brake_image_margin_left +dimen module_v2x_brake_image_margin_right +dimen module_v2x_brake_image_width +dimen module_v2x_brake_tip_height +dimen module_v2x_brake_tip_width +dimen module_vip_height +dimen module_vip_margin_left +dimen module_vip_margin_top +dimen module_vip_width +dimen mtrl_alert_dialog_background_inset_bottom +dimen mtrl_alert_dialog_background_inset_end +dimen mtrl_alert_dialog_background_inset_start +dimen mtrl_alert_dialog_background_inset_top +dimen mtrl_alert_dialog_picker_background_inset +dimen mtrl_badge_horizontal_edge_offset +dimen mtrl_badge_long_text_horizontal_padding +dimen mtrl_badge_radius +dimen mtrl_badge_text_horizontal_edge_offset +dimen mtrl_badge_text_size +dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset +dimen mtrl_badge_toolbar_action_menu_item_vertical_offset +dimen mtrl_badge_with_text_radius +dimen mtrl_bottomappbar_fabOffsetEndMode +dimen mtrl_bottomappbar_fab_bottom_margin +dimen mtrl_bottomappbar_fab_cradle_margin +dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius +dimen mtrl_bottomappbar_fab_cradle_vertical_offset +dimen mtrl_bottomappbar_height +dimen mtrl_btn_corner_radius +dimen mtrl_btn_dialog_btn_min_width +dimen mtrl_btn_disabled_elevation +dimen mtrl_btn_disabled_z +dimen mtrl_btn_elevation +dimen mtrl_btn_focused_z +dimen mtrl_btn_hovered_z +dimen mtrl_btn_icon_btn_padding_left +dimen mtrl_btn_icon_padding +dimen mtrl_btn_inset +dimen mtrl_btn_letter_spacing +dimen mtrl_btn_max_width +dimen mtrl_btn_padding_bottom +dimen mtrl_btn_padding_left +dimen mtrl_btn_padding_right +dimen mtrl_btn_padding_top +dimen mtrl_btn_pressed_z +dimen mtrl_btn_snackbar_margin_horizontal +dimen mtrl_btn_stroke_size +dimen mtrl_btn_text_btn_icon_padding +dimen mtrl_btn_text_btn_padding_left +dimen mtrl_btn_text_btn_padding_right +dimen mtrl_btn_text_size +dimen mtrl_btn_z +dimen mtrl_calendar_action_confirm_button_min_width +dimen mtrl_calendar_action_height +dimen mtrl_calendar_action_padding +dimen mtrl_calendar_bottom_padding +dimen mtrl_calendar_content_padding +dimen mtrl_calendar_day_corner +dimen mtrl_calendar_day_height +dimen mtrl_calendar_day_horizontal_padding +dimen mtrl_calendar_day_today_stroke +dimen mtrl_calendar_day_vertical_padding +dimen mtrl_calendar_day_width +dimen mtrl_calendar_days_of_week_height +dimen mtrl_calendar_dialog_background_inset +dimen mtrl_calendar_header_content_padding +dimen mtrl_calendar_header_content_padding_fullscreen +dimen mtrl_calendar_header_divider_thickness +dimen mtrl_calendar_header_height +dimen mtrl_calendar_header_height_fullscreen +dimen mtrl_calendar_header_selection_line_height +dimen mtrl_calendar_header_text_padding +dimen mtrl_calendar_header_toggle_margin_bottom +dimen mtrl_calendar_header_toggle_margin_top +dimen mtrl_calendar_landscape_header_width +dimen mtrl_calendar_maximum_default_fullscreen_minor_axis +dimen mtrl_calendar_month_horizontal_padding +dimen mtrl_calendar_month_vertical_padding +dimen mtrl_calendar_navigation_bottom_padding +dimen mtrl_calendar_navigation_height +dimen mtrl_calendar_navigation_top_padding +dimen mtrl_calendar_pre_l_text_clip_padding +dimen mtrl_calendar_selection_baseline_to_top_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_bottom +dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_top +dimen mtrl_calendar_text_input_padding_top +dimen mtrl_calendar_title_baseline_to_top +dimen mtrl_calendar_title_baseline_to_top_fullscreen +dimen mtrl_calendar_year_corner +dimen mtrl_calendar_year_height +dimen mtrl_calendar_year_horizontal_padding +dimen mtrl_calendar_year_vertical_padding +dimen mtrl_calendar_year_width +dimen mtrl_card_checked_icon_margin +dimen mtrl_card_checked_icon_size +dimen mtrl_card_corner_radius +dimen mtrl_card_dragged_z +dimen mtrl_card_elevation +dimen mtrl_card_spacing +dimen mtrl_chip_pressed_translation_z +dimen mtrl_chip_text_size +dimen mtrl_edittext_rectangle_top_offset +dimen mtrl_exposed_dropdown_menu_popup_elevation +dimen mtrl_exposed_dropdown_menu_popup_vertical_offset +dimen mtrl_exposed_dropdown_menu_popup_vertical_padding +dimen mtrl_extended_fab_bottom_padding +dimen mtrl_extended_fab_corner_radius +dimen mtrl_extended_fab_disabled_elevation +dimen mtrl_extended_fab_disabled_translation_z +dimen mtrl_extended_fab_elevation +dimen mtrl_extended_fab_end_padding +dimen mtrl_extended_fab_end_padding_icon +dimen mtrl_extended_fab_icon_size +dimen mtrl_extended_fab_icon_text_spacing +dimen mtrl_extended_fab_min_height +dimen mtrl_extended_fab_min_width +dimen mtrl_extended_fab_start_padding +dimen mtrl_extended_fab_start_padding_icon +dimen mtrl_extended_fab_top_padding +dimen mtrl_extended_fab_translation_z_base +dimen mtrl_extended_fab_translation_z_hovered_focused +dimen mtrl_extended_fab_translation_z_pressed +dimen mtrl_fab_elevation +dimen mtrl_fab_min_touch_target +dimen mtrl_fab_translation_z_hovered_focused +dimen mtrl_fab_translation_z_pressed +dimen mtrl_high_ripple_default_alpha +dimen mtrl_high_ripple_focused_alpha +dimen mtrl_high_ripple_hovered_alpha +dimen mtrl_high_ripple_pressed_alpha +dimen mtrl_large_touch_target +dimen mtrl_low_ripple_default_alpha +dimen mtrl_low_ripple_focused_alpha +dimen mtrl_low_ripple_hovered_alpha +dimen mtrl_low_ripple_pressed_alpha +dimen mtrl_min_touch_target_size +dimen mtrl_navigation_bar_item_default_icon_size +dimen mtrl_navigation_bar_item_default_margin +dimen mtrl_navigation_elevation +dimen mtrl_navigation_item_horizontal_padding +dimen mtrl_navigation_item_icon_padding +dimen mtrl_navigation_item_icon_size +dimen mtrl_navigation_item_shape_horizontal_margin +dimen mtrl_navigation_item_shape_vertical_margin +dimen mtrl_navigation_rail_active_text_size +dimen mtrl_navigation_rail_compact_width +dimen mtrl_navigation_rail_default_width +dimen mtrl_navigation_rail_elevation +dimen mtrl_navigation_rail_icon_margin +dimen mtrl_navigation_rail_icon_size +dimen mtrl_navigation_rail_margin +dimen mtrl_navigation_rail_text_bottom_margin +dimen mtrl_navigation_rail_text_size +dimen mtrl_progress_circular_inset +dimen mtrl_progress_circular_inset_extra_small +dimen mtrl_progress_circular_inset_medium +dimen mtrl_progress_circular_inset_small +dimen mtrl_progress_circular_radius +dimen mtrl_progress_circular_size +dimen mtrl_progress_circular_size_extra_small +dimen mtrl_progress_circular_size_medium +dimen mtrl_progress_circular_size_small +dimen mtrl_progress_circular_track_thickness_extra_small +dimen mtrl_progress_circular_track_thickness_medium +dimen mtrl_progress_circular_track_thickness_small +dimen mtrl_progress_indicator_full_rounded_corner_radius +dimen mtrl_progress_track_thickness +dimen mtrl_shape_corner_size_large_component +dimen mtrl_shape_corner_size_medium_component +dimen mtrl_shape_corner_size_small_component +dimen mtrl_slider_halo_radius +dimen mtrl_slider_label_padding +dimen mtrl_slider_label_radius +dimen mtrl_slider_label_square_side +dimen mtrl_slider_thumb_elevation +dimen mtrl_slider_thumb_radius +dimen mtrl_slider_track_height +dimen mtrl_slider_track_side_padding +dimen mtrl_slider_track_top +dimen mtrl_slider_widget_height +dimen mtrl_snackbar_action_text_color_alpha +dimen mtrl_snackbar_background_corner_radius +dimen mtrl_snackbar_background_overlay_color_alpha +dimen mtrl_snackbar_margin +dimen mtrl_snackbar_message_margin_horizontal +dimen mtrl_snackbar_padding_horizontal +dimen mtrl_switch_thumb_elevation +dimen mtrl_textinput_box_corner_radius_medium +dimen mtrl_textinput_box_corner_radius_small +dimen mtrl_textinput_box_label_cutout_padding +dimen mtrl_textinput_box_stroke_width_default +dimen mtrl_textinput_box_stroke_width_focused +dimen mtrl_textinput_counter_margin_start +dimen mtrl_textinput_end_icon_margin_start +dimen mtrl_textinput_outline_box_expanded_padding +dimen mtrl_textinput_start_icon_margin_end +dimen mtrl_toolbar_default_height +dimen mtrl_tooltip_arrowSize +dimen mtrl_tooltip_cornerSize +dimen mtrl_tooltip_minHeight +dimen mtrl_tooltip_minWidth +dimen mtrl_tooltip_padding +dimen mtrl_transition_shared_axis_slide_distance +dimen notice_current_time_margin +dimen notice_fullscreen_bt +dimen notice_loading_bt +dimen notice_play_bottom +dimen notice_play_height +dimen notice_play_marginleft +dimen notice_play_marginleft_small +dimen notice_play_marginright +dimen notice_play_marginright_small +dimen notice_seekbar_bottom +dimen notice_seekbar_width +dimen notice_seekbar_width_small +dimen notice_time_bottom +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen panel_list_item_title_size +dimen ratingbar_padding +dimen seek_bar_image +dimen share_item_address +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_13 +dimen sp_14 +dimen sp_15 +dimen sp_16 +dimen sp_17 +dimen sp_18 +dimen sp_19 +dimen sp_20 +dimen sp_21 +dimen sp_22 +dimen sp_23 +dimen sp_24 +dimen sp_25 +dimen sp_28 +dimen sp_30 +dimen sp_32 +dimen sp_34 +dimen sp_36 +dimen sp_38 +dimen sp_40 +dimen sp_42 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_8 +dimen sp_9 +dimen test_mtrl_calendar_day_cornerSize +dimen test_navigation_bar_active_item_max_width +dimen test_navigation_bar_active_item_min_width +dimen test_navigation_bar_active_text_size +dimen test_navigation_bar_elevation +dimen test_navigation_bar_height +dimen test_navigation_bar_icon_size +dimen test_navigation_bar_item_max_width +dimen test_navigation_bar_item_min_width +dimen test_navigation_bar_label_padding +dimen test_navigation_bar_shadow_height +dimen test_navigation_bar_text_size +dimen time_textsize +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +dimen v2x_panel_loading_top +dimen v2x_share_btn_height +dimen v2x_share_btn_width +dimen video_progress_dialog_margin_top +dimen video_volume_dialog_margin_left +dimen warning_distance_right +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_star_black_48dp +drawable abc_star_half_black_48dp +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable avd_hide_password +drawable avd_show_password +drawable bg_map_marker_yellow_info +drawable bg_shape_reverse_yellow +drawable bg_v2x_cancel_help +drawable bg_v2x_event_type_blue +drawable bg_v2x_event_type_orange +drawable bg_v2x_event_type_orange_vr +drawable bg_v2x_event_type_read +drawable bg_v2x_event_type_red_vr +drawable bg_waring_limiting_velocity +drawable bg_waring_traffic_light_vr +drawable bg_warning_bg +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable check_error_image +drawable common_marker_bottom_floor +drawable dark_color_close +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable empty_drawable +drawable exo_controls_fastforward +drawable exo_controls_next +drawable exo_controls_pause +drawable exo_controls_play +drawable exo_controls_previous +drawable exo_controls_rewind +drawable exo_edit_mode_logo +drawable ic_amap_navi_cursor +drawable ic_clock_black_24dp +drawable ic_keyboard_black_24dp +drawable ic_mtrl_checked_circle +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable ic_navi_start +drawable ic_navi_target +drawable icon_autopilot_status +drawable icon_autopilot_status_disabled +drawable icon_car_red +drawable icon_common_heart_animation_vr00 +drawable icon_common_heart_animation_vr02 +drawable icon_default_user_head +drawable icon_heart_choose +drawable icon_heart_second +drawable icon_heart_second_other +drawable icon_heart_unchoose +drawable icon_heart_unchoose_other +drawable icon_map_marker_book +drawable icon_map_marker_car_gray +drawable icon_map_marker_car_gray_selected +drawable icon_map_marker_car_type2 +drawable icon_map_marker_car_type_110 +drawable icon_map_marker_car_type_119 +drawable icon_map_marker_car_type_120 +drawable icon_map_marker_car_type_bus +drawable icon_map_marker_car_type_taxi +drawable icon_map_marker_living +drawable icon_map_marker_location_yellow +drawable icon_map_marker_location_yellow_vr +drawable icon_map_marker_misic +drawable icon_map_marker_news +drawable icon_map_marker_pondingl2 +drawable icon_map_marker_road_block_off +drawable icon_map_marker_road_block_up +drawable icon_map_marker_road_block_up2 +drawable icon_waring_traffic_light_green_vr +drawable icon_waring_traffic_light_red_vr +drawable icon_waring_traffic_light_yellow_vr +drawable icon_warning_v2x_abnormal_vehicle +drawable icon_warning_v2x_blind_area_collision +drawable icon_warning_v2x_collision_warning +drawable icon_warning_v2x_congestion +drawable icon_warning_v2x_emergency_brake +drawable icon_warning_v2x_give_way +drawable icon_warning_v2x_hump_bridge +drawable icon_warning_v2x_motorcycle_collision +drawable icon_warning_v2x_no_parking +drawable icon_warning_v2x_optimal_route +drawable icon_warning_v2x_over_speed +drawable icon_warning_v2x_pedestrian_crossing +drawable icon_warning_v2x_reverse_overtaking +drawable icon_warning_v2x_road_construction +drawable icon_warning_v2x_road_dangerous +drawable icon_warning_v2x_roundaboutpng +drawable icon_warning_v2x_school +drawable icon_warning_v2x_special_vehicle_access +drawable icon_warning_v2x_test_section +drawable icon_warning_v2x_traffic_light_gray +drawable icon_warning_v2x_traffic_light_green +drawable icon_warning_v2x_traffic_light_red +drawable icon_warning_v2x_traffic_light_yellow +drawable icon_warning_v2x_traffic_lights_green +drawable icon_warning_v2x_traffic_lights_red +drawable icon_warning_v2x_tramcar +drawable icon_warning_v2x_turn_left_sharp +drawable icon_warning_v2x_turn_right_sharp +drawable icon_warning_v2x_vehicle_control +drawable icon_warning_v2x_vip_turn_light +drawable lock +drawable map_api_ic_current_location2 +drawable material_cursor_drawable +drawable material_ic_calendar_black_24dp +drawable material_ic_clear_black_24dp +drawable material_ic_edit_black_24dp +drawable material_ic_keyboard_arrow_left_black_24dp +drawable material_ic_keyboard_arrow_next_black_24dp +drawable material_ic_keyboard_arrow_previous_black_24dp +drawable material_ic_keyboard_arrow_right_black_24dp +drawable material_ic_menu_arrow_down_black_24dp +drawable material_ic_menu_arrow_up_black_24dp +drawable module_callchatting_shape_gradient_blue +drawable module_callchatting_shape_gradient_blue_normal +drawable module_callchatting_shape_gradient_blue_pressed +drawable module_callchatting_user_pop_call_bg +drawable module_callchatting_user_pop_call_bg_normal +drawable module_callchatting_user_pop_call_bg_pressed +drawable module_camera_real_time_traffic +drawable module_carchatting_aicloud_incoming +drawable module_carchatting_launcher_calling_bg +drawable module_carchatting_launcher_hawk_eye_calling_bg +drawable module_carchatting_team_fragment +drawable module_carchatting_team_fragment_bg +drawable module_carchatting_team_fragment_close +drawable module_carchatting_team_fragment_close_normal +drawable module_carchatting_team_fragment_close_pressed +drawable module_carchatting_team_fragment_x +drawable module_carchatting_team_invitation_bg +drawable module_carchatting_team_invitation_hawk_eye_bg +drawable module_carchatting_team_invitation_hawk_eye_head_default +drawable module_carchatting_team_invitation_hawk_eye_header_bg +drawable module_carchatting_team_invitation_hawk_eye_join +drawable module_carchatting_team_invitation_hawk_eye_join_normal +drawable module_carchatting_team_invitation_hawk_eye_join_pressed +drawable module_carchatting_team_invitation_hawk_eye_refuse +drawable module_carchatting_team_invitation_hawk_eye_refuse_normal +drawable module_carchatting_team_invitation_hawk_eye_refuse_pressed +drawable module_carchatting_team_invitation_head_default +drawable module_carchatting_team_invitation_join +drawable module_carchatting_team_invitation_join_normal +drawable module_carchatting_team_invitation_join_pressed +drawable module_carchatting_team_invitation_refuse +drawable module_carchatting_team_invitation_refuse_normal +drawable module_carchatting_team_invitation_refuse_pressed +drawable module_carchatting_team_invitation_title_bg +drawable module_carchatting_team_quit +drawable module_carchatting_team_quit_normal +drawable module_carchatting_team_quit_pressed +drawable module_carchatting_team_teammate_bg +drawable module_carchatting_team_teammate_follower_bg +drawable module_carchatting_team_teammate_leader_bg +drawable module_carchatting_vr_calling_bg +drawable module_carchatting_vr_team_num_bg +drawable module_common_close_selector +drawable module_common_close_selector_vr +drawable module_common_default_user_head +drawable module_common_ic_rc_accident3 +drawable module_common_ic_rc_accident3_white +drawable module_common_ic_rc_dark_frog2 +drawable module_common_ic_rc_dark_frog2_white +drawable module_common_ic_rc_freeze2 +drawable module_common_ic_rc_freeze2_white +drawable module_common_ic_rc_illegal_park +drawable module_common_ic_rc_illegal_park_white +drawable module_common_ic_rc_parking2 +drawable module_common_icon_close +drawable module_common_icon_close_press +drawable module_common_icon_close_vr +drawable module_common_icon_like_selected_vr +drawable module_common_icon_like_vr +drawable module_common_icon_map_marker_4s +drawable module_common_icon_map_marker_living +drawable module_common_icon_map_marker_living_white +drawable module_common_icon_map_marker_pondingl2 +drawable module_common_icon_map_marker_pondingl2_white +drawable module_common_icon_map_marker_refuel +drawable module_common_icon_map_marker_road_block_off2 +drawable module_common_icon_map_marker_road_block_off2_white +drawable module_common_icon_map_marker_road_block_up2 +drawable module_common_icon_map_marker_road_block_up2_white +drawable module_common_icon_map_marker_road_check2 +drawable module_common_icon_map_marker_road_check2_white +drawable module_common_icon_map_marker_road_work2 +drawable module_common_icon_map_marker_road_work2_white +drawable module_common_icon_map_marker_shear_news +drawable module_common_icon_map_marker_shop +drawable module_common_icon_map_marker_shop_discount +drawable module_common_icon_seek_help +drawable module_common_icon_unlike_selected_vr +drawable module_common_icon_unlike_vr +drawable module_common_like_vr +drawable module_common_my_location_bg +drawable module_common_selector_call +drawable module_common_unlike_vr +drawable module_commons_dialog_bg +drawable module_commons_dialog_left_bg +drawable module_commons_dialog_right_bg +drawable module_commons_heart_ratingbar_drawable +drawable module_commons_shape_dlg_round_bkg +drawable module_commons_shape_left_btn_bkg +drawable module_commons_shape_right_btn_bkg +drawable module_commons_toast_bkg +drawable module_dw_common_corner_bkg_light +drawable module_ext_check +drawable module_ext_drawable_shadow_bg +drawable module_ext_shadow_bkg +drawable module_ext_shadow_bkg_pressed +drawable module_hmi_autopilot_status_bg +drawable module_hmi_autopilot_status_checked_bg +drawable module_hmi_autopilot_status_disabled_bg +drawable module_hmi_autopilot_status_enable_bg +drawable module_hmi_warning_bkg_bottom +drawable module_hmi_warning_bkg_left +drawable module_hmi_warning_bkg_right +drawable module_hmi_warning_bkg_top +drawable module_map_amap_my_location_icon +drawable module_service_ic_call +drawable module_service_ic_rc_accident +drawable module_service_ic_rc_accident2 +drawable module_service_ic_rc_accident3 +drawable module_service_ic_rc_accident3_white +drawable module_service_ic_rc_dark_frog +drawable module_service_ic_rc_dark_frog2 +drawable module_service_ic_rc_dark_frog2_white +drawable module_service_ic_rc_freeze +drawable module_service_ic_rc_freeze2 +drawable module_service_ic_rc_freeze2_white +drawable module_service_ic_rc_illegal_park +drawable module_service_ic_rc_illegal_park_white +drawable module_service_ic_rc_parking +drawable module_service_ic_rc_parking2 +drawable module_service_ic_rc_road_slippery +drawable module_service_ic_rc_road_slippery_light +drawable module_service_ic_seek_helping +drawable module_services_marker_bkg +drawable module_services_marker_vr_bkg +drawable module_services_marker_vr_bkg_checked +drawable module_switch_map_angle +drawable module_switch_map_bg +drawable mogo_image_accident_small +drawable mogo_image_daolushigong_nor +drawable mogo_image_daolushigong_small +drawable mogo_image_fenglu_nor +drawable mogo_image_fenglu_small +drawable mogo_image_jiaotongjiancha_nor +drawable mogo_image_jiaotongjiancha_small +drawable mogo_image_jiaotongshigu_nor +drawable mogo_image_jiebing_nor +drawable mogo_image_jiebing_small +drawable mogo_image_jishui_nor +drawable mogo_image_jishui_small +drawable mogo_image_nongwu_nor +drawable mogo_image_nongwu_small +drawable mogo_image_shishilukuang_small +drawable mogo_image_shishlukuang_nor +drawable mogo_image_yongdu_nor +drawable mogo_image_yongdu_small +drawable mtrl_dialog_background +drawable mtrl_dropdown_arrow +drawable mtrl_ic_arrow_drop_down +drawable mtrl_ic_arrow_drop_up +drawable mtrl_ic_cancel +drawable mtrl_ic_error +drawable mtrl_navigation_bar_item_background +drawable mtrl_popupmenu_background +drawable mtrl_popupmenu_background_dark +drawable mtrl_tabs_default_indicator +drawable navigation_empty_icon +drawable notice_banner_default +drawable notice_banner_icon_video +drawable notice_player_ic_circle_nor +drawable notice_seekbar_style +drawable notice_video_after_pause +drawable notice_video_pause +drawable notice_video_play +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable placeholder +drawable selector_call_btn_normal +drawable selector_call_btn_pressed +drawable sr +drawable sy +drawable test_custom_background +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable unlock +drawable utils_toast_bg +drawable v2x_icon_ahead_car_brake +drawable v2x_icon_car_collide_warning +drawable v2x_icon_daolushigong_vr +drawable v2x_icon_fenglu_vr +drawable v2x_icon_jiaotongjiancha_vr +drawable v2x_icon_jiaotongshigu_vr +drawable v2x_icon_jiebing_vr +drawable v2x_icon_jishui_vr +drawable v2x_icon_live_logo +drawable v2x_icon_nongwu_vr +drawable v2x_icon_yongdu_vr +drawable v_to_x_event_ugc_fenglu +drawable v_to_x_event_ugc_shigu +drawable v_to_x_event_ugc_yongdu +drawable v_to_x_marker_1 +drawable v_to_x_marker_11 +drawable v_to_x_marker_16 +drawable v_to_x_marker_2 +drawable v_to_x_marker_3 +drawable v_to_x_marker_5 +drawable v_to_x_marker_6 +drawable v_to_x_marker_7 +drawable v_to_x_marker_8 +drawable v_to_x_marker_9 +drawable v_to_x_marker_express +drawable v_to_x_marker_taxi +drawable v_to_x_warning_car_red +drawable video_back +drawable video_backward_icon +drawable video_brightness_6_white_36dp +drawable video_click_error_selector +drawable video_click_pause_selector +drawable video_click_play_selector +drawable video_dialog_progress +drawable video_dialog_progress_bg +drawable video_enlarge +drawable video_error_normal +drawable video_error_pressed +drawable video_forward_icon +drawable video_jump_btn_bg +drawable video_loading +drawable video_loading_bg +drawable video_pause_normal +drawable video_pause_pressed +drawable video_play_normal +drawable video_play_pressed +drawable video_progress +drawable video_seek_progress +drawable video_seek_thumb +drawable video_seek_thumb_normal +drawable video_seek_thumb_pressed +drawable video_shrink +drawable video_small_close +drawable video_title_bg +drawable video_volume_icon +drawable video_volume_progress_bg +drawable yi_biao_pan_bg_nor +drawable yi_biao_pan_bg_speeding +id BOTTOM_END +id BOTTOM_START +id Full +id Half +id NO_DEBUG +id SHOW_ALL +id SHOW_PATH +id SHOW_PROGRESS +id TOP_END +id TOP_START +id accelerate +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id actionDown +id actionDownUp +id actionUp +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id ad_full_id +id ad_small_id +id ad_time +id add +id alertTitle +id aligned +id allStates +id animateToEnd +id animateToStart +id antiClockwise +id anticipate +id app_video_brightness +id app_video_brightness_box +id app_video_brightness_icon +id arc +id asConfigured +id async +id auto +id autoComplete +id autoCompleteToEnd +id autoCompleteToStart +id back +id back_tiny +id barrier +id baseline +id bestChoice +id bezier_view +id blocking +id bottom +id bottom_progressbar +id bounce +id buttonPanel +id cancel_button +id carryVelocity +id center +id centerCrop +id centerInside +id chain +id checkbox +id checked +id chip +id chip1 +id chip2 +id chip3 +id chip_group +id chronometer +id circle +id circle_center +id clMarkerContent +id clMarkerTopView +id clear_text +id clockwise +id closest +id confirm_button +id constraint +id container +id content +id contentPanel +id contiguous +id continuousVelocity +id coordinator +id cos +id counterclockwise +id current +id currentState +id custom +id customPanel +id customRatingBar +id cut +id date_picker_actions +id decelerate +id decelerateAndComplete +id decor_content_parent +id default_activity_button +id deltaRelative +id design_bottom_sheet +id design_menu_item_action_area +id design_menu_item_action_area_stub +id design_menu_item_text +id design_navigation_view +id dialog_button +id disjoint +id dragAnticlockwise +id dragClockwise +id dragDown +id dragEnd +id dragLeft +id dragRight +id dragStart +id dragUp +id dropdown_menu +id duration_image_tip +id duration_progressbar +id easeIn +id easeInOut +id easeOut +id east +id edit_query +id elastic +id end +id endToStart +id exo_artwork +id exo_content_frame +id exo_controller_placeholder +id exo_duration +id exo_ffwd +id exo_next +id exo_overlay +id exo_pause +id exo_play +id exo_position +id exo_prev +id exo_progress +id exo_rew +id exo_shutter +id exo_subtitles +id expand_activities_button +id expanded_menu +id fade +id fill +id filled +id fit +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id fixed +id fixed_height +id fixed_width +id flip +id floating +id focusCrop +id forever +id fragment_container_view_tag +id frost +id full_id +id fullscreen +id ghost_view +id ghost_view_holder +id glide_custom_view_target_tag +id gone +id group_divider +id guideline +id header_title +id home +id honorRequest +id horizontal +id horizontal_only +id icon +id icon_group +id ignore +id ignoreRequest +id image +id immediateStop +id included +id info +id invisible +id inward +id italic +id item_touch_helper_previous_elevation +id item_video_cover +id ivCar +id ivIcon +id ivReverseTriangle +id ivUserHead +id iv_camera_traffic +id iv_close +id jumpToEnd +id jumpToStart +id jump_ad +id labeled +id layout +id layout_bottom +id layout_top +id left +id leftToRight +id line1 +id line3 +id linear +id listMode +id list_item +id loading +id loading_imageview +id loading_liner_layout +id loading_text +id lock_screen +id masked +id match_constraint +id match_parent +id material_clock_display +id material_clock_face +id material_clock_hand +id material_clock_period_am_button +id material_clock_period_pm_button +id material_clock_period_toggle +id material_hour_text_input +id material_hour_tv +id material_label +id material_minute_text_input +id material_minute_tv +id material_textinput_timepicker +id material_timepicker_cancel_button +id material_timepicker_container +id material_timepicker_edit_text +id material_timepicker_mode_button +id material_timepicker_ok_button +id material_timepicker_view +id material_value_index +id message +id middle +id mini +id moduleCallChatBg +id moduleCallChatCoverBg +id moduleCallChatRatingBar +id moduleCallChatUserCaller +id moduleCallChatUserClose +id moduleCallChatUserHead +id moduleCallChatUserJoinTeam +id moduleCallChatUserNickName +id module_carchatting_call_hangUp +id module_carchatting_call_head +id module_carchatting_call_nickname +id module_carchatting_call_time +id module_carchatting_civ_head +id module_carchatting_civ_head0 +id module_carchatting_civ_head1 +id module_carchatting_civ_head2 +id module_carchatting_civ_head3 +id module_carchatting_civ_head4 +id module_carchatting_incoming_answer +id module_carchatting_incoming_hangUp +id module_carchatting_iv_join +id module_carchatting_iv_refuse +id module_carchatting_iv_team_quit +id module_carchatting_rl_call_view +id module_carchatting_rl_incoming_view +id module_carchatting_rl_match_init_view +id module_carchatting_rl_matching_view +id module_carchatting_team_ll_head +id module_carchatting_team_num +id module_carchatting_team_rl_view +id module_carchatting_team_tv_info +id module_carchatting_tv_cancel_match +id module_carchatting_tv_content +id module_carchatting_tv_identity +id module_carchatting_tv_nickname +id module_carchatting_tv_title +id module_commons_marker_car_model +id module_commons_toast_left_drawable +id module_commons_toast_msg +id module_commons_wm_dialog_button_cancel +id module_commons_wm_dialog_button_ok +id module_commons_wm_dialog_content +id module_map_amap_my_location_bg_iv +id module_map_amap_my_location_iv +id month_grid +id month_navigation_bar +id month_navigation_fragment_toggle +id month_navigation_next +id month_navigation_previous +id month_title +id motion_base +id mtrl_anchor_parent +id mtrl_calendar_day_selector_frame +id mtrl_calendar_days_of_week +id mtrl_calendar_frame +id mtrl_calendar_main_pane +id mtrl_calendar_months +id mtrl_calendar_selection_frame +id mtrl_calendar_text_input_frame +id mtrl_calendar_year_selector_frame +id mtrl_card_checked_layer_id +id mtrl_child_content_container +id mtrl_internal_children_alpha_tag +id mtrl_motion_snapshot_view +id mtrl_picker_fullscreen +id mtrl_picker_header +id mtrl_picker_header_selection_text +id mtrl_picker_header_title_and_selection +id mtrl_picker_header_toggle +id mtrl_picker_text_input_date +id mtrl_picker_text_input_range_end +id mtrl_picker_text_input_range_start +id mtrl_picker_title_text +id mtrl_view_tag_bottom_padding +id multiply +id navigation_bar_item_icon_view +id navigation_bar_item_labels_group +id navigation_bar_item_large_label_view +id navigation_bar_item_small_label_view +id navigation_header_container +id neverCompleteToEnd +id neverCompleteToStart +id noState +id none +id normal +id north +id notification_background +id notification_main_column +id notification_main_column_container +id off +id on +id outline +id outward +id overshoot +id packed +id parallax +id parent +id parentPanel +id parentRelative +id parent_matrix +id password_toggle +id path +id pathRelative +id percent +id pin +id position +id postLayout +id preview_layout +id progress +id progress_circular +id progress_horizontal +id radio +id rectangles +id refresh_button +id reverseSawtooth +id right +id rightToLeft +id right_icon +id right_side +id round +id rounded +id row_index_key +id rv_teammates +id save_non_transition_alpha +id save_overlay_view +id sawtooth +id scale +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id scrollable +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id selected +id selection_type +id shape_id +id sharedValueSet +id sharedValueUnset +id shortcut +id sin +id skipped +id slide +id small_close +id small_id +id snackbar_action +id snackbar_text +id south +id spacer +id special_effects_controller_view_tag +id spline +id split_action_bar +id spread +id spread_inside +id spring +id square +id src_atop +id src_in +id src_over +id standard +id start +id startHorizontal +id startToEnd +id startVertical +id staticLayout +id staticPostLayout +id stop +id stretch +id submenuarrow +id submit_area +id surface_container +id surface_view +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_click_time +id tag_on_apply_window_listener +id tag_on_receive_content_listener +id tag_on_receive_content_mime_types +id tag_screen_reader_focusable +id tag_state_description +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +id test_checkbox_android_button_tint +id test_checkbox_app_button_tint +id test_radiobutton_android_button_tint +id test_radiobutton_app_button_tint +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id text_input_end_icon +id text_input_error_icon +id text_input_start_icon +id textinput_counter +id textinput_error +id textinput_helper_text +id textinput_placeholder +id textinput_prefix_text +id textinput_suffix_text +id texture_view +id thumb +id thumbImage +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id total +id touch_outside +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id triangle +id tvMarkerContent +id tv_current +id tv_duration +id tv_num +id unchecked +id uniform +id unlabeled +id up +id utvBottomIconView +id utvLeftIconView +id utvRightIconView +id utvTopIconView +id vertical +id vertical_only +id view_lifecycle_owner +id view_offset_helper +id view_transition +id view_tree_lifecycle_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +id visible +id visible_removing_fragment_view_tag +id volume_progressbar +id west +id widget_container +id withinBounds +id wrap +id wrap_content +id wrap_content_constrained +id x_left +id x_right +id zero_corner_chip +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer app_bar_elevation_anim_duration +integer bottom_sheet_slide_duration +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer design_snackbar_text_max_lines +integer design_tab_indicator_anim_duration_ms +integer hide_password_duration +integer material_motion_duration_long_1 +integer material_motion_duration_long_2 +integer material_motion_duration_medium_1 +integer material_motion_duration_medium_2 +integer material_motion_duration_short_1 +integer material_motion_duration_short_2 +integer material_motion_path +integer mtrl_badge_max_character_count +integer mtrl_btn_anim_delay_ms +integer mtrl_btn_anim_duration_ms +integer mtrl_calendar_header_orientation +integer mtrl_calendar_selection_text_lines +integer mtrl_calendar_year_selector_span +integer mtrl_card_anim_delay_ms +integer mtrl_card_anim_duration_ms +integer mtrl_chip_anim_duration +integer mtrl_tab_indicator_anim_duration_ms +integer show_password_duration +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +interpolator mtrl_fast_out_linear_in +interpolator mtrl_fast_out_slow_in +interpolator mtrl_linear +interpolator mtrl_linear_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout custom_dialog +layout design_bottom_navigation_item +layout design_bottom_sheet_dialog +layout design_layout_snackbar +layout design_layout_snackbar_include +layout design_layout_tab_icon +layout design_layout_tab_text +layout design_menu_item_action_area +layout design_navigation_item +layout design_navigation_item_header +layout design_navigation_item_separator +layout design_navigation_item_subheader +layout design_navigation_menu +layout design_navigation_menu_item +layout design_text_input_end_icon +layout design_text_input_start_icon +layout exo_playback_control_view +layout exo_simple_player_view +layout item_notice_video +layout item_notice_video_small +layout item_v2x_crossroad_live_video +layout material_chip_input_combo +layout material_clock_display +layout material_clock_display_divider +layout material_clock_period_toggle +layout material_clock_period_toggle_land +layout material_clockface_textview +layout material_clockface_view +layout material_radial_view_group +layout material_textinput_timepicker +layout material_time_chip +layout material_time_input +layout material_timepicker +layout material_timepicker_dialog +layout material_timepicker_textinput_display +layout modeules_commons_layout_custom_ratingbar +layout modudle_camera_layout_info +layout modudle_services_marker_layout +layout modudle_services_marker_layout_info +layout modudle_services_marker_vr_layout +layout module_car_chatting_fragment_team_view +layout module_car_chatting_launcher_calling_hawk_eye_view +layout module_car_chatting_launcher_calling_view +layout module_car_chatting_launcher_incoming_hawk_eye_view +layout module_car_chatting_launcher_team_invitation_hawk_eye_view +layout module_car_chatting_launcher_team_invitation_view +layout module_car_chatting_launcher_teammate_item +layout module_car_chatting_launcher_user_view +layout module_common_bezier_layout +layout module_common_my_location +layout module_common_warning_marker_bottom +layout module_common_warning_marker_front +layout module_commons_layout_car +layout module_commons_layout_toast +layout module_commons_layout_toast_with_left_drawable +layout module_commons_layout_wm_dialog +layout mtrl_alert_dialog +layout mtrl_alert_dialog_actions +layout mtrl_alert_dialog_title +layout mtrl_alert_select_dialog_item +layout mtrl_alert_select_dialog_multichoice +layout mtrl_alert_select_dialog_singlechoice +layout mtrl_calendar_day +layout mtrl_calendar_day_of_week +layout mtrl_calendar_days_of_week +layout mtrl_calendar_horizontal +layout mtrl_calendar_month +layout mtrl_calendar_month_labeled +layout mtrl_calendar_month_navigation +layout mtrl_calendar_months +layout mtrl_calendar_vertical +layout mtrl_calendar_year +layout mtrl_layout_snackbar +layout mtrl_layout_snackbar_include +layout mtrl_navigation_rail_item +layout mtrl_picker_actions +layout mtrl_picker_dialog +layout mtrl_picker_fullscreen +layout mtrl_picker_header_dialog +layout mtrl_picker_header_fullscreen +layout mtrl_picker_header_selection_text +layout mtrl_picker_header_title_text +layout mtrl_picker_header_toggle +layout mtrl_picker_text_input_date +layout mtrl_picker_text_input_date_range +layout network_loading_item +layout notice_video_card_layout +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +layout test_action_chip +layout test_chip_zero_corner_radius +layout test_design_checkbox +layout test_design_radiobutton +layout test_navigation_bar_item_layout +layout test_reflow_chipgroup +layout test_toolbar +layout test_toolbar_custom_background +layout test_toolbar_elevation +layout test_toolbar_surface +layout text_view_with_line_height_from_appearance +layout text_view_with_line_height_from_layout +layout text_view_with_line_height_from_style +layout text_view_with_theme_line_height +layout text_view_without_line_height +layout utils_toast_view +layout video_brightness +layout video_layout_ad +layout video_layout_custom +layout video_layout_normal +layout video_layout_sample_ad +layout video_layout_standard +layout video_progress_dialog +layout video_volume_dialog +mipmap module_callchatting_launcher_incoming_answer +mipmap module_callchatting_launcher_incoming_hangup +mipmap module_callchatting_match +mipmap module_callchatting_user_caller +mipmap module_callchatting_user_close +mipmap module_callchatting_user_join_team +mipmap module_carchatting_caller +mipmap module_carchatting_default_head_img +mipmap module_carchatting_hawk_eye_default_head_img +mipmap module_carchatting_launcher_calling_hangup +mipmap module_carchatting_user_cover_bg +plurals mtrl_badge_content_description +raw call +raw chuzuche +raw fangkuang +raw jiantou +raw match1 +raw match2 +raw match3 +raw qfpz +raw shexiangtou +raw special_vehicle +raw stopline +raw traffic_daba +raw traffic_kache +raw traffic_motuoche +raw traffic_people +raw traffic_tachexiaoche +raw traffic_unkonwn +raw traffic_zixingche +raw v2x_daolujiebing +raw v2x_daolujishui +raw v2x_daolushigong +raw v2x_guzhangqiuzhu +raw v2x_jiaotongjiancha +raw v2x_nongwu +raw v2x_shigong_warning +raw v2x_shigu +raw v2x_shishilukuang +raw v2x_yongdu +raw xiaobache +raw ziche +string N_A +string TrackType_audio +string TrackType_metadata +string TrackType_subtitle +string TrackType_timedtext +string TrackType_unknown +string TrackType_video +string VideoView_ar_16_9_fit_parent +string VideoView_ar_4_3_fit_parent +string VideoView_ar_aspect_fill_parent +string VideoView_ar_aspect_fit_parent +string VideoView_ar_aspect_wrap_content +string VideoView_ar_match_parent +string VideoView_error_button +string VideoView_error_text_invalid_progressive_playback +string VideoView_error_text_unknown +string VideoView_info_text_video_not_supported +string VideoView_player_AndroidMediaPlayer +string VideoView_player_IjkExoMediaPlayer +string VideoView_player_IjkMediaPlayer +string VideoView_player_none +string VideoView_render_none +string VideoView_render_surface_view +string VideoView_render_texture_view +string a_cache +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string androidx_startup +string app_name +string appbar_scrolling_view_behavior +string bit_rate +string bottom_sheet_behavior +string bottomsheet_action_expand_halfway +string character_counter_content_description +string character_counter_overflowed_content_description +string character_counter_pattern +string chip_text +string clear_text_end_icon_content_description +string close +string error_icon_content_description +string exit +string exo_controls_fastforward_description +string exo_controls_next_description +string exo_controls_pause_description +string exo_controls_play_description +string exo_controls_previous_description +string exo_controls_rewind_description +string exo_controls_stop_description +string exposed_dropdown_menu_content_description +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string file_not_support +string fps +string hide_bottom_view_on_scroll_behavior +string icon_content_description +string ijkplayer_dummy +string item_view_role_description +string jump_ad +string load_cost +string material_clock_display_divider +string material_clock_toggle_content_description +string material_hour_selection +string material_hour_suffix +string material_minute_selection +string material_minute_suffix +string material_motion_easing_accelerated +string material_motion_easing_decelerated +string material_motion_easing_emphasized +string material_motion_easing_linear +string material_motion_easing_standard +string material_slider_range_end +string material_slider_range_start +string material_timepicker_am +string material_timepicker_clock_mode_description +string material_timepicker_hour +string material_timepicker_minute +string material_timepicker_pm +string material_timepicker_select_time +string material_timepicker_text_input_mode_description +string media_information +string mi__selected_audio_track +string mi__selected_subtitle_track +string mi__selected_video_track +string mi_bit_rate +string mi_channels +string mi_codec +string mi_frame_rate +string mi_language +string mi_length +string mi_media +string mi_pixel_format +string mi_player +string mi_profile_level +string mi_resolution +string mi_sample_rate +string mi_stream_fmt1 +string mi_type +string module_car_chat_already_cancel +string module_car_chat_call_hangup +string module_car_chat_call_refuse +string module_car_chat_can_not_call +string module_car_chat_error_call_test +string module_car_chat_hangup_fail +string module_car_chat_in_call +string module_car_chat_in_the_team +string module_car_chat_invitation_window +string module_car_chat_joined_team +string module_car_chat_match_less +string module_car_chat_match_tip +string module_car_chat_matching +string module_car_chat_matching_cancel +string module_car_chat_matching_wait +string module_car_chat_network_error +string module_car_chat_ok +string module_car_chat_self_error +string module_car_chat_team_calling +string module_car_chat_team_info +string module_car_chat_team_invited +string module_car_chat_team_invited_prompt +string module_car_chat_team_quit +string module_car_chat_user_caller +string module_car_chat_user_info_null +string module_car_chat_user_join_team +string module_car_chat_vehicle_dismiss +string module_commons_button_cancel +string module_commons_button_ok +string module_commons_exit_navi_content +string module_distance_kilometre +string module_distance_metre +string module_map_model_faster +string module_map_model_normal +string mtrl_badge_numberless_content_description +string mtrl_chip_close_icon_content_description +string mtrl_exceed_max_badge_number_content_description +string mtrl_exceed_max_badge_number_suffix +string mtrl_picker_a11y_next_month +string mtrl_picker_a11y_prev_month +string mtrl_picker_announce_current_selection +string mtrl_picker_cancel +string mtrl_picker_confirm +string mtrl_picker_date_header_selected +string mtrl_picker_date_header_title +string mtrl_picker_date_header_unselected +string mtrl_picker_day_of_week_column_header +string mtrl_picker_invalid_format +string mtrl_picker_invalid_format_example +string mtrl_picker_invalid_format_use +string mtrl_picker_invalid_range +string mtrl_picker_navigate_to_year_description +string mtrl_picker_out_of_range +string mtrl_picker_range_header_only_end_selected +string mtrl_picker_range_header_only_start_selected +string mtrl_picker_range_header_selected +string mtrl_picker_range_header_title +string mtrl_picker_range_header_unselected +string mtrl_picker_save +string mtrl_picker_text_input_date_hint +string mtrl_picker_text_input_date_range_end_hint +string mtrl_picker_text_input_date_range_start_hint +string mtrl_picker_text_input_day_abbr +string mtrl_picker_text_input_month_abbr +string mtrl_picker_text_input_year_abbr +string mtrl_picker_toggle_to_calendar_input_mode +string mtrl_picker_toggle_to_day_selection +string mtrl_picker_toggle_to_text_input_mode +string mtrl_picker_toggle_to_year_selection +string no_net +string no_url +string password_toggle_content_description +string path_password_eye +string path_password_eye_mask_strike_through +string path_password_eye_mask_visible +string path_password_strike_through +string recent +string sample +string search_menu_title +string seek_cost +string seek_load_cost +string settings +string show_info +string status_bar_notification_info_overflow +string tcp_speed +string tips_not_wifi +string tips_not_wifi_cancel +string tips_not_wifi_confirm +string toggle_player +string toggle_ratio +string toggle_render +string tracks +string v_cache +string vdec +style ActivityTranslucent +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style AndroidThemeColorAccentYellow +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style Animation_MaterialComponents_BottomSheetDialog +style BaseFloatDialogStyle +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_CardView +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_MaterialAlertDialog_MaterialComponents_Title_Icon +style Base_MaterialAlertDialog_MaterialComponents_Title_Panel +style Base_MaterialAlertDialog_MaterialComponents_Title_Text +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_MaterialComponents_Badge +style Base_TextAppearance_MaterialComponents_Button +style Base_TextAppearance_MaterialComponents_Headline6 +style Base_TextAppearance_MaterialComponents_Subtitle2 +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_ThemeOverlay_MaterialComponents_Dialog +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_MaterialComponents +style Base_Theme_MaterialComponents_Bridge +style Base_Theme_MaterialComponents_CompactMenu +style Base_Theme_MaterialComponents_Dialog +style Base_Theme_MaterialComponents_DialogWhenLarge +style Base_Theme_MaterialComponents_Dialog_Alert +style Base_Theme_MaterialComponents_Dialog_Bridge +style Base_Theme_MaterialComponents_Dialog_FixedSize +style Base_Theme_MaterialComponents_Dialog_MinWidth +style Base_Theme_MaterialComponents_Light +style Base_Theme_MaterialComponents_Light_Bridge +style Base_Theme_MaterialComponents_Light_DarkActionBar +style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_Theme_MaterialComponents_Light_Dialog +style Base_Theme_MaterialComponents_Light_DialogWhenLarge +style Base_Theme_MaterialComponents_Light_Dialog_Alert +style Base_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_Theme_MaterialComponents_Light_Dialog_FixedSize +style Base_Theme_MaterialComponents_Light_Dialog_MinWidth +style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_V14_Theme_MaterialComponents +style Base_V14_Theme_MaterialComponents_Bridge +style Base_V14_Theme_MaterialComponents_Dialog +style Base_V14_Theme_MaterialComponents_Dialog_Bridge +style Base_V14_Theme_MaterialComponents_Light +style Base_V14_Theme_MaterialComponents_Light_Bridge +style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_V14_Theme_MaterialComponents_Light_Dialog +style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_Theme_MaterialComponents +style Base_V21_Theme_MaterialComponents_Dialog +style Base_V21_Theme_MaterialComponents_Light +style Base_V21_Theme_MaterialComponents_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Base_Widget_Design_TabLayout +style Base_Widget_MaterialComponents_AutoCompleteTextView +style Base_Widget_MaterialComponents_CheckedTextView +style Base_Widget_MaterialComponents_Chip +style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +style Base_Widget_MaterialComponents_PopupMenu +style Base_Widget_MaterialComponents_PopupMenu_ContextMenu +style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Base_Widget_MaterialComponents_PopupMenu_Overflow +style Base_Widget_MaterialComponents_Slider +style Base_Widget_MaterialComponents_Snackbar +style Base_Widget_MaterialComponents_TextInputEditText +style Base_Widget_MaterialComponents_TextInputLayout +style Base_Widget_MaterialComponents_TextView +style CardView +style CardView_Dark +style CardView_Light +style EmptyTheme +style ExoMediaButton +style ExoMediaButton_FastForward +style ExoMediaButton_Next +style ExoMediaButton_Pause +style ExoMediaButton_Play +style ExoMediaButton_Previous +style ExoMediaButton_Rewind +style MaterialAlertDialog_MaterialComponents +style MaterialAlertDialog_MaterialComponents_Body_Text +style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +style MaterialAlertDialog_MaterialComponents_Title_Icon +style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Panel +style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Text +style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_MaterialComponents +style Platform_MaterialComponents_Dialog +style Platform_MaterialComponents_Light +style Platform_MaterialComponents_Light_Dialog +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style ShapeAppearanceOverlay +style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +style ShapeAppearanceOverlay_BottomRightCut +style ShapeAppearanceOverlay_Cut +style ShapeAppearanceOverlay_DifferentCornerSize +style ShapeAppearanceOverlay_MaterialComponents_BottomSheet +style ShapeAppearanceOverlay_MaterialComponents_Chip +style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +style ShapeAppearanceOverlay_TopLeftCut +style ShapeAppearanceOverlay_TopRightDifferentCornerSize +style ShapeAppearance_MaterialComponents +style ShapeAppearance_MaterialComponents_LargeComponent +style ShapeAppearance_MaterialComponents_MediumComponent +style ShapeAppearance_MaterialComponents_SmallComponent +style ShapeAppearance_MaterialComponents_Test +style ShapeAppearance_MaterialComponents_Tooltip +style TestStyleWithLineHeight +style TestStyleWithLineHeightAppearance +style TestStyleWithThemeLineHeightAttribute +style TestStyleWithoutLineHeight +style TestThemeWithLineHeight +style TestThemeWithLineHeightDisabled +style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style Test_Theme_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar_Day +style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +style TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Design_Counter +style TextAppearance_Design_Counter_Overflow +style TextAppearance_Design_Error +style TextAppearance_Design_HelperText +style TextAppearance_Design_Hint +style TextAppearance_Design_Placeholder +style TextAppearance_Design_Prefix +style TextAppearance_Design_Snackbar_Message +style TextAppearance_Design_Suffix +style TextAppearance_Design_Tab +style TextAppearance_MaterialComponents_Badge +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Chip +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_TimePicker_Title +style TextAppearance_MaterialComponents_Tooltip +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlayColorAccentRed +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style ThemeOverlay_Design_TextInputEditText +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_ActionBar_Primary +style ThemeOverlay_MaterialComponents_ActionBar_Surface +style ThemeOverlay_MaterialComponents_AutoCompleteTextView +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_BottomAppBar_Primary +style ThemeOverlay_MaterialComponents_BottomAppBar_Surface +style ThemeOverlay_MaterialComponents_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_MaterialAlertDialog +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +style ThemeOverlay_MaterialComponents_MaterialCalendar +style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +style ThemeOverlay_MaterialComponents_TextInputEditText +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_TimePicker +style ThemeOverlay_MaterialComponents_TimePicker_Display +style ThemeOverlay_MaterialComponents_Toolbar_Primary +style ThemeOverlay_MaterialComponents_Toolbar_Surface +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Empty +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_BottomSheetDialog +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_DayNight +style Theme_MaterialComponents_DayNight_BottomSheetDialog +style Theme_MaterialComponents_DayNight_Bridge +style Theme_MaterialComponents_DayNight_DarkActionBar +style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +style Theme_MaterialComponents_DayNight_Dialog +style Theme_MaterialComponents_DayNight_DialogWhenLarge +style Theme_MaterialComponents_DayNight_Dialog_Alert +style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +style Theme_MaterialComponents_DayNight_Dialog_Bridge +style Theme_MaterialComponents_DayNight_Dialog_FixedSize +style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_DayNight_Dialog_MinWidth +style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_DayNight_NoActionBar +style Theme_MaterialComponents_DayNight_NoActionBar_Bridge +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_Alert_Bridge +style Theme_MaterialComponents_Dialog_Bridge +style Theme_MaterialComponents_Dialog_FixedSize +style Theme_MaterialComponents_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BarSize +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_Alert_Bridge +style Theme_MaterialComponents_Light_Dialog_Bridge +style Theme_MaterialComponents_Light_Dialog_FixedSize +style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light_LargeTouch +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputEditText +style Widget_Design_TextInputLayout +style Widget_MaterialComponents_ActionBar_Primary +style Widget_MaterialComponents_ActionBar_PrimarySurface +style Widget_MaterialComponents_ActionBar_Solid +style Widget_MaterialComponents_ActionBar_Surface +style Widget_MaterialComponents_AppBarLayout_Primary +style Widget_MaterialComponents_AppBarLayout_PrimarySurface +style Widget_MaterialComponents_AppBarLayout_Surface +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style Widget_MaterialComponents_Badge +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomAppBar_PrimarySurface +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomNavigationView_PrimarySurface +style Widget_MaterialComponents_BottomSheet +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_Icon +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_OutlinedButton_Icon +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Flush +style Widget_MaterialComponents_Button_TextButton_Dialog_Icon +style Widget_MaterialComponents_Button_TextButton_Icon +style Widget_MaterialComponents_Button_TextButton_Snackbar +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_Button_UnelevatedButton_Icon +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_CheckedTextView +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_CircularProgressIndicator +style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall +style Widget_MaterialComponents_CircularProgressIndicator_Medium +style Widget_MaterialComponents_CircularProgressIndicator_Small +style Widget_MaterialComponents_CollapsingToolbar +style Widget_MaterialComponents_CompoundButton_CheckBox +style Widget_MaterialComponents_CompoundButton_RadioButton +style Widget_MaterialComponents_CompoundButton_Switch +style Widget_MaterialComponents_ExtendedFloatingActionButton +style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_Light_ActionBar_Solid +style Widget_MaterialComponents_LinearProgressIndicator +style Widget_MaterialComponents_MaterialButtonToggleGroup +style Widget_MaterialComponents_MaterialCalendar +style Widget_MaterialComponents_MaterialCalendar_Day +style Widget_MaterialComponents_MaterialCalendar_DayTextView +style Widget_MaterialComponents_MaterialCalendar_Day_Invalid +style Widget_MaterialComponents_MaterialCalendar_Day_Selected +style Widget_MaterialComponents_MaterialCalendar_Day_Today +style Widget_MaterialComponents_MaterialCalendar_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +style Widget_MaterialComponents_MaterialCalendar_HeaderDivider +style Widget_MaterialComponents_MaterialCalendar_HeaderLayout +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderTitle +style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +style Widget_MaterialComponents_MaterialCalendar_Item +style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +style Widget_MaterialComponents_MaterialCalendar_MonthTextView +style Widget_MaterialComponents_MaterialCalendar_Year +style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +style Widget_MaterialComponents_MaterialCalendar_Year_Selected +style Widget_MaterialComponents_MaterialCalendar_Year_Today +style Widget_MaterialComponents_NavigationRailView +style Widget_MaterialComponents_NavigationRailView_Colored +style Widget_MaterialComponents_NavigationRailView_Colored_Compact +style Widget_MaterialComponents_NavigationRailView_Compact +style Widget_MaterialComponents_NavigationRailView_PrimarySurface +style Widget_MaterialComponents_NavigationView +style Widget_MaterialComponents_PopupMenu +style Widget_MaterialComponents_PopupMenu_ContextMenu +style Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Widget_MaterialComponents_PopupMenu_Overflow +style Widget_MaterialComponents_ProgressIndicator +style Widget_MaterialComponents_ShapeableImageView +style Widget_MaterialComponents_Slider +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_Snackbar_TextView +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TabLayout_PrimarySurface +style Widget_MaterialComponents_TextInputEditText_FilledBox +style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +style Widget_MaterialComponents_TextInputEditText_OutlinedBox +style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextView +style Widget_MaterialComponents_TimePicker +style Widget_MaterialComponents_TimePicker_Button +style Widget_MaterialComponents_TimePicker_Clock +style Widget_MaterialComponents_TimePicker_Display +style Widget_MaterialComponents_TimePicker_Display_TextInputEditText +style Widget_MaterialComponents_TimePicker_ImageButton +style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance +style Widget_MaterialComponents_Toolbar +style Widget_MaterialComponents_Toolbar_Primary +style Widget_MaterialComponents_Toolbar_PrimarySurface +style Widget_MaterialComponents_Toolbar_Surface +style Widget_MaterialComponents_Tooltip +style Widget_Support_CoordinatorLayout +style customHeartHeartRatingBarStyle +style video_popup_toast_anim +style video_style_dialog_progress +style video_vertical_progressBar +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable AspectRatioFrameLayout resize_mode +styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset +styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness +styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets +styleable BottomNavigationView itemHorizontalTranslationEnabled +styleable BottomSheetBehavior_Layout android_elevation android_maxWidth backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay +styleable ButtonBarLayout allowStacking +styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +styleable Carousel carousel_backwardTransition carousel_emptyViewsBehavior carousel_firstView carousel_forwardTransition carousel_infinite carousel_nextState carousel_previousState carousel_touchUpMode carousel_touchUp_dampeningFactor carousel_touchUp_velocityThreshold +styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance android_textColor android_textSize checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding +styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection +styleable CircleImageView civ_border_color civ_border_overlay civ_border_width civ_circle_background_color +styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize +styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor +styleable ClockHandView clockHandColor materialCircleRadius selectorSize +styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable Constraint android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintLayout_Layout android_elevation android_layout_height android_layout_margin android_layout_marginBottom android_layout_marginEnd android_layout_marginHorizontal android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_marginVertical android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_padding android_paddingBottom android_paddingEnd android_paddingLeft android_paddingRight android_paddingStart android_paddingTop android_visibility barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl circularflow_angles circularflow_defaultAngle circularflow_defaultRadius circularflow_radiusInDP circularflow_viewCenter constraintSet constraint_referenced_ids constraint_referenced_tags flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_optimizationLevel layout_wrapBehaviorInParent +styleable ConstraintLayout_ReactiveGuide reactiveGuide_animateChange reactiveGuide_applyToAllConstraintSets reactiveGuide_applyToConstraintSet reactiveGuide_valueId +styleable ConstraintLayout_placeholder content placeholder_emptyVisibility +styleable ConstraintOverride android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBottom_creator layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintRight_creator layout_constraintTag layout_constraintTop_creator layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger motionTarget pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintSet ConstraintRotate android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_pivotX android_pivotY android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionSteps transitionEasing transitionPathRotate +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customReference customStringValue methodName +styleable CustomCircleImageView civ_border_color civ_border_overlay civ_border_width civ_fill_color +styleable CustomRatingBar OtherHeartImg clickable elenmentCount elenmentEmpty elenmentFill elenmentHarf elenmentHeight elenmentPadding elenmentStep elenmentWidth stepSize +styleable DefaultTimeBar ad_marker_color ad_marker_width bar_height buffered_color played_color scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_enabled_size touch_target_height unplayed_color +styleable DiscreteScrollView dsv_orientation +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec +styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink +styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding +styleable FloatingActionButton_Behavior_Layout behavior_autoHide +styleable FlowLayout itemSpacing lineSpacing +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding +styleable Fragment android_id android_name android_tag +styleable FragmentContainerView android_name android_tag +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable ImageFilterView altSrc blendSrc brightness contrast crossfade imagePanX imagePanY imageRotate imageZoom overlay round roundPercent saturation warmth +styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets +styleable KeyAttribute android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transformPivotTarget transitionEasing transitionPathRotate +styleable KeyCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod wavePhase waveShape waveVariesBy +styleable KeyFrame +styleable KeyFramesAcceleration +styleable KeyFramesVelocity +styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing +styleable KeyTimeCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod wavePhase waveShape +styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack viewTransitionOnCross viewTransitionOnNegativeCross viewTransitionOnPositiveCross +styleable Layout android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_orientation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent maxHeight maxWidth minHeight minWidth +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop +styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle +styleable MaterialAutoCompleteTextView android_inputType +styleable MaterialButton android_background android_checkable android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection +styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle +styleable MaterialCalendarItem android_insetBottom android_insetLeft android_insetRight android_insetTop itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor +styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth +styleable MaterialCheckBox buttonTint useMaterialThemeColors +styleable MaterialRadioButton buttonTint useMaterialThemeColors +styleable MaterialShape shapeAppearance shapeAppearanceOverlay +styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight +styleable MaterialTextView android_lineHeight android_textAppearance lineHeight +styleable MaterialTimePicker clockIcon keyboardIcon +styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel +styleable MogoImageView miv_blurRadius miv_borderColor miv_bottomLeftRadius miv_bottomRightRadius miv_failureHolder miv_isBlur miv_overlayImageId miv_placeHolder miv_radius miv_shape miv_shapeBorderWidth miv_topLeftRadius miv_topRightRadius +styleable Motion animateCircleAngleTo animateRelativeTo animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transitionEasing +styleable MotionEffect motionEffect_alpha motionEffect_end motionEffect_move motionEffect_start motionEffect_strict motionEffect_translationX motionEffect_translationY motionEffect_viewTransition +styleable MotionHelper onHide onShow +styleable MotionLabel android_autoSizeTextType android_fontFamily android_gravity android_shadowRadius android_text android_textColor android_textSize android_textStyle android_typeface borderRound borderRoundPercent scaleFromTextSize textBackground textBackgroundPanX textBackgroundPanY textBackgroundRotate textBackgroundZoom textOutlineColor textOutlineThickness textPanX textPanY textureBlurFactor textureEffect textureHeight textureWidth +styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths +styleable MotionScene defaultDuration layoutDuringTransition +styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode +styleable NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable NavigationRailView headerLayout menuGravity +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay +styleable OnClick clickAction targetId +styleable OnSwipe autoCompleteMode dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp rotationCenterId springBoundary springDamping springMass springStiffness springStopThreshold touchAnchorId touchAnchorSide touchRegionId +styleable PlaybackControlView controller_layout_id fastforward_increment rewind_increment show_timeout +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable PropertySet android_alpha android_visibility layout_constraintTag motionProgress visibilityMode +styleable RadialViewGroup materialCircleRadius +styleable RangeSlider minSeparation values +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable RoundLayout roundLayoutRadius +styleable Scale disappearedScale +styleable ScrimInsetsFrameLayout insetForeground +styleable ScrollingViewBehavior_Layout behavior_overlapTop +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight +styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable SimpleExoPlayerView controller_layout_id default_artwork fastforward_increment hide_on_touch player_layout_id resize_mode rewind_increment show_timeout surface_type use_artwork use_controller +styleable Slider android_enabled android_stepSize android_value android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight +styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle +styleable SnackbarLayout actionTextColorAlpha android_maxWidth animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable State android_id constraints +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable StateSet defaultState +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable SwitchMaterial useMaterialThemeColors +styleable TabItem android_icon android_layout android_text +styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable TextEffects android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_text android_textSize android_textStyle android_typeface borderRound borderRoundPercent textFillColor textOutlineColor textOutlineThickness +styleable TextInputEditText textInputLayoutFocusedRectEnabled +styleable TextInputLayout android_enabled android_hint android_maxWidth android_minWidth android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor +styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable Tooltip android_layout_margin android_minHeight android_minWidth android_padding android_text android_textAppearance backgroundTint +styleable Transform android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ transformPivotTarget +styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags +styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewPager2 android_orientation +styleable ViewStubCompat android_id android_inflatedId android_layout +styleable ViewTransition SharedValue SharedValueId android_id clearsTag duration ifTagNotSet ifTagSet motionInterpolator motionTarget onStateTransition pathMotionArc setsTag transitionDisable upDuration viewTransitionMode +styleable download download_bg_line_color download_bg_line_width download_line_color download_line_width download_text_color download_text_size +styleable include constraintSet +styleable play play_bg_line_color play_bg_line_width play_line_color play_line_width +xml standalone_badge +xml standalone_badge_gravity_bottom_end +xml standalone_badge_gravity_bottom_start +xml standalone_badge_gravity_top_start +xml standalone_badge_offset +xml util_code_provider_paths diff --git a/modules/mogo-module-carchatting/build/intermediates/runtime_library_classes/debug/classes.jar b/modules/mogo-module-carchatting/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..8e310fedc1 Binary files /dev/null and b/modules/mogo-module-carchatting/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-carchatting/build/intermediates/symbols/debug/R.txt b/modules/mogo-module-carchatting/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..9e7c85f166 --- /dev/null +++ b/modules/mogo-module-carchatting/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,7343 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int anim design_bottom_sheet_slide_in 0x7f010019 +int anim design_bottom_sheet_slide_out 0x7f01001a +int anim design_snackbar_in 0x7f01001b +int anim design_snackbar_out 0x7f01001c +int anim fragment_fast_out_extra_slow_in 0x7f01001d +int anim mtrl_bottom_sheet_slide_in 0x7f01001e +int anim mtrl_bottom_sheet_slide_out 0x7f01001f +int anim mtrl_card_lowers_interpolator 0x7f010020 +int animator design_appbar_state_list_animator 0x7f020001 +int animator design_fab_hide_motion_spec 0x7f020002 +int animator design_fab_show_motion_spec 0x7f020003 +int animator fragment_close_enter 0x7f020004 +int animator fragment_close_exit 0x7f020005 +int animator fragment_fade_enter 0x7f020006 +int animator fragment_fade_exit 0x7f020007 +int animator fragment_open_enter 0x7f020008 +int animator fragment_open_exit 0x7f020009 +int animator linear_indeterminate_line1_head_interpolator 0x7f02000a +int animator linear_indeterminate_line1_tail_interpolator 0x7f02000b +int animator linear_indeterminate_line2_head_interpolator 0x7f02000c +int animator linear_indeterminate_line2_tail_interpolator 0x7f02000d +int animator mtrl_btn_state_list_anim 0x7f02000e +int animator mtrl_btn_unelevated_state_list_anim 0x7f02000f +int animator mtrl_card_state_list_anim 0x7f020010 +int animator mtrl_chip_state_list_anim 0x7f020011 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020012 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f020013 +int animator mtrl_extended_fab_hide_motion_spec 0x7f020014 +int animator mtrl_extended_fab_show_motion_spec 0x7f020015 +int animator mtrl_extended_fab_state_list_animator 0x7f020016 +int animator mtrl_fab_hide_motion_spec 0x7f020017 +int animator mtrl_fab_show_motion_spec 0x7f020018 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020019 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02001a +int attr ConstraintRotate 0x7f040001 +int attr OtherHeartImg 0x7f040002 +int attr SharedValue 0x7f040003 +int attr SharedValueId 0x7f040004 +int attr actionBarDivider 0x7f040005 +int attr actionBarItemBackground 0x7f040006 +int attr actionBarPopupTheme 0x7f040007 +int attr actionBarSize 0x7f040008 +int attr actionBarSplitStyle 0x7f040009 +int attr actionBarStyle 0x7f04000a +int attr actionBarTabBarStyle 0x7f04000b +int attr actionBarTabStyle 0x7f04000c +int attr actionBarTabTextStyle 0x7f04000d +int attr actionBarTheme 0x7f04000e +int attr actionBarWidgetTheme 0x7f04000f +int attr actionButtonStyle 0x7f040010 +int attr actionDropDownStyle 0x7f040011 +int attr actionLayout 0x7f040012 +int attr actionMenuTextAppearance 0x7f040013 +int attr actionMenuTextColor 0x7f040014 +int attr actionModeBackground 0x7f040015 +int attr actionModeCloseButtonStyle 0x7f040016 +int attr actionModeCloseContentDescription 0x7f040017 +int attr actionModeCloseDrawable 0x7f040018 +int attr actionModeCopyDrawable 0x7f040019 +int attr actionModeCutDrawable 0x7f04001a +int attr actionModeFindDrawable 0x7f04001b +int attr actionModePasteDrawable 0x7f04001c +int attr actionModePopupWindowStyle 0x7f04001d +int attr actionModeSelectAllDrawable 0x7f04001e +int attr actionModeShareDrawable 0x7f04001f +int attr actionModeSplitBackground 0x7f040020 +int attr actionModeStyle 0x7f040021 +int attr actionModeTheme 0x7f040022 +int attr actionModeWebSearchDrawable 0x7f040023 +int attr actionOverflowButtonStyle 0x7f040024 +int attr actionOverflowMenuStyle 0x7f040025 +int attr actionProviderClass 0x7f040026 +int attr actionTextColorAlpha 0x7f040027 +int attr actionViewClass 0x7f040028 +int attr activityChooserViewStyle 0x7f040029 +int attr actualImageResource 0x7f04002a +int attr actualImageScaleType 0x7f04002b +int attr actualImageUri 0x7f04002c +int attr ad_marker_color 0x7f04002d +int attr ad_marker_width 0x7f04002e +int attr alertDialogButtonGroupStyle 0x7f04002f +int attr alertDialogCenterButtons 0x7f040030 +int attr alertDialogStyle 0x7f040031 +int attr alertDialogTheme 0x7f040032 +int attr allowStacking 0x7f040033 +int attr alpha 0x7f040034 +int attr alphabeticModifiers 0x7f040035 +int attr altSrc 0x7f040036 +int attr animateCircleAngleTo 0x7f040037 +int attr animateRelativeTo 0x7f040038 +int attr animate_relativeTo 0x7f040039 +int attr animationMode 0x7f04003a +int attr appBarLayoutStyle 0x7f04003b +int attr applyMotionScene 0x7f04003c +int attr arcMode 0x7f04003d +int attr arrowHeadLength 0x7f04003e +int attr arrowShaftLength 0x7f04003f +int attr attributeName 0x7f040040 +int attr autoCompleteMode 0x7f040041 +int attr autoCompleteTextViewStyle 0x7f040042 +int attr autoSizeMaxTextSize 0x7f040043 +int attr autoSizeMinTextSize 0x7f040044 +int attr autoSizePresetSizes 0x7f040045 +int attr autoSizeStepGranularity 0x7f040046 +int attr autoSizeTextType 0x7f040047 +int attr autoTransition 0x7f040048 +int attr background 0x7f040049 +int attr backgroundColor 0x7f04004a +int attr backgroundImage 0x7f04004b +int attr backgroundInsetBottom 0x7f04004c +int attr backgroundInsetEnd 0x7f04004d +int attr backgroundInsetStart 0x7f04004e +int attr backgroundInsetTop 0x7f04004f +int attr backgroundOverlayColorAlpha 0x7f040050 +int attr backgroundSplit 0x7f040051 +int attr backgroundStacked 0x7f040052 +int attr backgroundTint 0x7f040053 +int attr backgroundTintMode 0x7f040054 +int attr badgeGravity 0x7f040055 +int attr badgeStyle 0x7f040056 +int attr badgeTextColor 0x7f040057 +int attr barLength 0x7f040058 +int attr bar_height 0x7f040059 +int attr barrierAllowsGoneWidgets 0x7f04005a +int attr barrierDirection 0x7f04005b +int attr barrierMargin 0x7f04005c +int attr behavior_autoHide 0x7f04005d +int attr behavior_autoShrink 0x7f04005e +int attr behavior_draggable 0x7f04005f +int attr behavior_expandedOffset 0x7f040060 +int attr behavior_fitToContents 0x7f040061 +int attr behavior_halfExpandedRatio 0x7f040062 +int attr behavior_hideable 0x7f040063 +int attr behavior_overlapTop 0x7f040064 +int attr behavior_peekHeight 0x7f040065 +int attr behavior_saveFlags 0x7f040066 +int attr behavior_skipCollapsed 0x7f040067 +int attr blendSrc 0x7f040068 +int attr borderRound 0x7f040069 +int attr borderRoundPercent 0x7f04006a +int attr borderWidth 0x7f04006b +int attr borderlessButtonStyle 0x7f04006c +int attr bottomAppBarStyle 0x7f04006d +int attr bottomNavigationStyle 0x7f04006e +int attr bottomSheetDialogTheme 0x7f04006f +int attr bottomSheetStyle 0x7f040070 +int attr boxBackgroundColor 0x7f040071 +int attr boxBackgroundMode 0x7f040072 +int attr boxCollapsedPaddingTop 0x7f040073 +int attr boxCornerRadiusBottomEnd 0x7f040074 +int attr boxCornerRadiusBottomStart 0x7f040075 +int attr boxCornerRadiusTopEnd 0x7f040076 +int attr boxCornerRadiusTopStart 0x7f040077 +int attr boxStrokeColor 0x7f040078 +int attr boxStrokeErrorColor 0x7f040079 +int attr boxStrokeWidth 0x7f04007a +int attr boxStrokeWidthFocused 0x7f04007b +int attr brightness 0x7f04007c +int attr buffered_color 0x7f04007d +int attr buttonBarButtonStyle 0x7f04007e +int attr buttonBarNegativeButtonStyle 0x7f04007f +int attr buttonBarNeutralButtonStyle 0x7f040080 +int attr buttonBarPositiveButtonStyle 0x7f040081 +int attr buttonBarStyle 0x7f040082 +int attr buttonCompat 0x7f040083 +int attr buttonGravity 0x7f040084 +int attr buttonIconDimen 0x7f040085 +int attr buttonPanelSideLayout 0x7f040086 +int attr buttonStyle 0x7f040087 +int attr buttonStyleSmall 0x7f040088 +int attr buttonTint 0x7f040089 +int attr buttonTintMode 0x7f04008a +int attr cardBackgroundColor 0x7f04008b +int attr cardCornerRadius 0x7f04008c +int attr cardElevation 0x7f04008d +int attr cardForegroundColor 0x7f04008e +int attr cardMaxElevation 0x7f04008f +int attr cardPreventCornerOverlap 0x7f040090 +int attr cardUseCompatPadding 0x7f040091 +int attr cardViewStyle 0x7f040092 +int attr carousel_backwardTransition 0x7f040093 +int attr carousel_emptyViewsBehavior 0x7f040094 +int attr carousel_firstView 0x7f040095 +int attr carousel_forwardTransition 0x7f040096 +int attr carousel_infinite 0x7f040097 +int attr carousel_nextState 0x7f040098 +int attr carousel_previousState 0x7f040099 +int attr carousel_touchUpMode 0x7f04009a +int attr carousel_touchUp_dampeningFactor 0x7f04009b +int attr carousel_touchUp_velocityThreshold 0x7f04009c +int attr chainUseRtl 0x7f04009d +int attr checkboxStyle 0x7f04009e +int attr checkedButton 0x7f04009f +int attr checkedChip 0x7f0400a0 +int attr checkedIcon 0x7f0400a1 +int attr checkedIconEnabled 0x7f0400a2 +int attr checkedIconMargin 0x7f0400a3 +int attr checkedIconSize 0x7f0400a4 +int attr checkedIconTint 0x7f0400a5 +int attr checkedIconVisible 0x7f0400a6 +int attr checkedTextViewStyle 0x7f0400a7 +int attr chipBackgroundColor 0x7f0400a8 +int attr chipCornerRadius 0x7f0400a9 +int attr chipEndPadding 0x7f0400aa +int attr chipGroupStyle 0x7f0400ab +int attr chipIcon 0x7f0400ac +int attr chipIconEnabled 0x7f0400ad +int attr chipIconSize 0x7f0400ae +int attr chipIconTint 0x7f0400af +int attr chipIconVisible 0x7f0400b0 +int attr chipMinHeight 0x7f0400b1 +int attr chipMinTouchTargetSize 0x7f0400b2 +int attr chipSpacing 0x7f0400b3 +int attr chipSpacingHorizontal 0x7f0400b4 +int attr chipSpacingVertical 0x7f0400b5 +int attr chipStandaloneStyle 0x7f0400b6 +int attr chipStartPadding 0x7f0400b7 +int attr chipStrokeColor 0x7f0400b8 +int attr chipStrokeWidth 0x7f0400b9 +int attr chipStyle 0x7f0400ba +int attr chipSurfaceColor 0x7f0400bb +int attr circleRadius 0x7f0400bc +int attr circularProgressIndicatorStyle 0x7f0400bd +int attr circularflow_angles 0x7f0400be +int attr circularflow_defaultAngle 0x7f0400bf +int attr circularflow_defaultRadius 0x7f0400c0 +int attr circularflow_radiusInDP 0x7f0400c1 +int attr circularflow_viewCenter 0x7f0400c2 +int attr civ_border_color 0x7f0400c3 +int attr civ_border_overlay 0x7f0400c4 +int attr civ_border_width 0x7f0400c5 +int attr civ_circle_background_color 0x7f0400c6 +int attr civ_fill_color 0x7f0400c7 +int attr clearsTag 0x7f0400c8 +int attr clickAction 0x7f0400c9 +int attr clickable 0x7f0400ca +int attr clockFaceBackgroundColor 0x7f0400cb +int attr clockHandColor 0x7f0400cc +int attr clockIcon 0x7f0400cd +int attr clockNumberTextColor 0x7f0400ce +int attr closeIcon 0x7f0400cf +int attr closeIconEnabled 0x7f0400d0 +int attr closeIconEndPadding 0x7f0400d1 +int attr closeIconSize 0x7f0400d2 +int attr closeIconStartPadding 0x7f0400d3 +int attr closeIconTint 0x7f0400d4 +int attr closeIconVisible 0x7f0400d5 +int attr closeItemLayout 0x7f0400d6 +int attr collapseContentDescription 0x7f0400d7 +int attr collapseIcon 0x7f0400d8 +int attr collapsedSize 0x7f0400d9 +int attr collapsedTitleGravity 0x7f0400da +int attr collapsedTitleTextAppearance 0x7f0400db +int attr collapsingToolbarLayoutStyle 0x7f0400dc +int attr color 0x7f0400dd +int attr colorAccent 0x7f0400de +int attr colorBackgroundFloating 0x7f0400df +int attr colorButtonNormal 0x7f0400e0 +int attr colorControlActivated 0x7f0400e1 +int attr colorControlHighlight 0x7f0400e2 +int attr colorControlNormal 0x7f0400e3 +int attr colorError 0x7f0400e4 +int attr colorOnBackground 0x7f0400e5 +int attr colorOnError 0x7f0400e6 +int attr colorOnPrimary 0x7f0400e7 +int attr colorOnPrimarySurface 0x7f0400e8 +int attr colorOnSecondary 0x7f0400e9 +int attr colorOnSurface 0x7f0400ea +int attr colorPrimary 0x7f0400eb +int attr colorPrimaryDark 0x7f0400ec +int attr colorPrimarySurface 0x7f0400ed +int attr colorPrimaryVariant 0x7f0400ee +int attr colorSecondary 0x7f0400ef +int attr colorSecondaryVariant 0x7f0400f0 +int attr colorSurface 0x7f0400f1 +int attr colorSwitchThumbNormal 0x7f0400f2 +int attr commitIcon 0x7f0400f3 +int attr constraintSet 0x7f0400f4 +int attr constraintSetEnd 0x7f0400f5 +int attr constraintSetStart 0x7f0400f6 +int attr constraint_referenced_ids 0x7f0400f7 +int attr constraint_referenced_tags 0x7f0400f8 +int attr constraints 0x7f0400f9 +int attr content 0x7f0400fa +int attr contentDescription 0x7f0400fb +int attr contentInsetEnd 0x7f0400fc +int attr contentInsetEndWithActions 0x7f0400fd +int attr contentInsetLeft 0x7f0400fe +int attr contentInsetRight 0x7f0400ff +int attr contentInsetStart 0x7f040100 +int attr contentInsetStartWithNavigation 0x7f040101 +int attr contentPadding 0x7f040102 +int attr contentPaddingBottom 0x7f040103 +int attr contentPaddingEnd 0x7f040104 +int attr contentPaddingLeft 0x7f040105 +int attr contentPaddingRight 0x7f040106 +int attr contentPaddingStart 0x7f040107 +int attr contentPaddingTop 0x7f040108 +int attr contentScrim 0x7f040109 +int attr contrast 0x7f04010a +int attr controlBackground 0x7f04010b +int attr controller_layout_id 0x7f04010c +int attr coordinatorLayoutStyle 0x7f04010d +int attr cornerFamily 0x7f04010e +int attr cornerFamilyBottomLeft 0x7f04010f +int attr cornerFamilyBottomRight 0x7f040110 +int attr cornerFamilyTopLeft 0x7f040111 +int attr cornerFamilyTopRight 0x7f040112 +int attr cornerRadius 0x7f040113 +int attr cornerSize 0x7f040114 +int attr cornerSizeBottomLeft 0x7f040115 +int attr cornerSizeBottomRight 0x7f040116 +int attr cornerSizeTopLeft 0x7f040117 +int attr cornerSizeTopRight 0x7f040118 +int attr counterEnabled 0x7f040119 +int attr counterMaxLength 0x7f04011a +int attr counterOverflowTextAppearance 0x7f04011b +int attr counterOverflowTextColor 0x7f04011c +int attr counterTextAppearance 0x7f04011d +int attr counterTextColor 0x7f04011e +int attr crossfade 0x7f04011f +int attr currentState 0x7f040120 +int attr curveFit 0x7f040121 +int attr customBoolean 0x7f040122 +int attr customColorDrawableValue 0x7f040123 +int attr customColorValue 0x7f040124 +int attr customDimension 0x7f040125 +int attr customFloatValue 0x7f040126 +int attr customIntegerValue 0x7f040127 +int attr customNavigationLayout 0x7f040128 +int attr customPixelDimension 0x7f040129 +int attr customReference 0x7f04012a +int attr customStringValue 0x7f04012b +int attr dayInvalidStyle 0x7f04012c +int attr daySelectedStyle 0x7f04012d +int attr dayStyle 0x7f04012e +int attr dayTodayStyle 0x7f04012f +int attr defaultDuration 0x7f040130 +int attr defaultQueryHint 0x7f040131 +int attr defaultState 0x7f040132 +int attr default_artwork 0x7f040133 +int attr deltaPolarAngle 0x7f040134 +int attr deltaPolarRadius 0x7f040135 +int attr deriveConstraintsFrom 0x7f040136 +int attr dialogCornerRadius 0x7f040137 +int attr dialogPreferredPadding 0x7f040138 +int attr dialogTheme 0x7f040139 +int attr disappearedScale 0x7f04013a +int attr displayOptions 0x7f04013b +int attr divider 0x7f04013c +int attr dividerHorizontal 0x7f04013d +int attr dividerPadding 0x7f04013e +int attr dividerVertical 0x7f04013f +int attr download_bg_line_color 0x7f040140 +int attr download_bg_line_width 0x7f040141 +int attr download_line_color 0x7f040142 +int attr download_line_width 0x7f040143 +int attr download_text_color 0x7f040144 +int attr download_text_size 0x7f040145 +int attr dragDirection 0x7f040146 +int attr dragScale 0x7f040147 +int attr dragThreshold 0x7f040148 +int attr drawPath 0x7f040149 +int attr drawableBottomCompat 0x7f04014a +int attr drawableEndCompat 0x7f04014b +int attr drawableLeftCompat 0x7f04014c +int attr drawableRightCompat 0x7f04014d +int attr drawableSize 0x7f04014e +int attr drawableStartCompat 0x7f04014f +int attr drawableTint 0x7f040150 +int attr drawableTintMode 0x7f040151 +int attr drawableTopCompat 0x7f040152 +int attr drawerArrowStyle 0x7f040153 +int attr dropDownListViewStyle 0x7f040154 +int attr dropdownListPreferredItemHeight 0x7f040155 +int attr dsv_orientation 0x7f040156 +int attr duration 0x7f040157 +int attr editTextBackground 0x7f040158 +int attr editTextColor 0x7f040159 +int attr editTextStyle 0x7f04015a +int attr elenmentCount 0x7f04015b +int attr elenmentEmpty 0x7f04015c +int attr elenmentFill 0x7f04015d +int attr elenmentHarf 0x7f04015e +int attr elenmentHeight 0x7f04015f +int attr elenmentPadding 0x7f040160 +int attr elenmentStep 0x7f040161 +int attr elenmentWidth 0x7f040162 +int attr elevation 0x7f040163 +int attr elevationOverlayColor 0x7f040164 +int attr elevationOverlayEnabled 0x7f040165 +int attr enableEdgeToEdge 0x7f040166 +int attr endIconCheckable 0x7f040167 +int attr endIconContentDescription 0x7f040168 +int attr endIconDrawable 0x7f040169 +int attr endIconMode 0x7f04016a +int attr endIconTint 0x7f04016b +int attr endIconTintMode 0x7f04016c +int attr enforceMaterialTheme 0x7f04016d +int attr enforceTextAppearance 0x7f04016e +int attr ensureMinTouchTargetSize 0x7f04016f +int attr errorContentDescription 0x7f040170 +int attr errorEnabled 0x7f040171 +int attr errorIconDrawable 0x7f040172 +int attr errorIconTint 0x7f040173 +int attr errorIconTintMode 0x7f040174 +int attr errorTextAppearance 0x7f040175 +int attr errorTextColor 0x7f040176 +int attr expandActivityOverflowButtonDrawable 0x7f040177 +int attr expanded 0x7f040178 +int attr expandedHintEnabled 0x7f040179 +int attr expandedTitleGravity 0x7f04017a +int attr expandedTitleMargin 0x7f04017b +int attr expandedTitleMarginBottom 0x7f04017c +int attr expandedTitleMarginEnd 0x7f04017d +int attr expandedTitleMarginStart 0x7f04017e +int attr expandedTitleMarginTop 0x7f04017f +int attr expandedTitleTextAppearance 0x7f040180 +int attr extendMotionSpec 0x7f040181 +int attr extendedFloatingActionButtonStyle 0x7f040182 +int attr extraMultilineHeightEnabled 0x7f040183 +int attr fabAlignmentMode 0x7f040184 +int attr fabAnimationMode 0x7f040185 +int attr fabCradleMargin 0x7f040186 +int attr fabCradleRoundedCornerRadius 0x7f040187 +int attr fabCradleVerticalOffset 0x7f040188 +int attr fabCustomSize 0x7f040189 +int attr fabSize 0x7f04018a +int attr fadeDuration 0x7f04018b +int attr failureImage 0x7f04018c +int attr failureImageScaleType 0x7f04018d +int attr fastScrollEnabled 0x7f04018e +int attr fastScrollHorizontalThumbDrawable 0x7f04018f +int attr fastScrollHorizontalTrackDrawable 0x7f040190 +int attr fastScrollVerticalThumbDrawable 0x7f040191 +int attr fastScrollVerticalTrackDrawable 0x7f040192 +int attr fastforward_increment 0x7f040193 +int attr firstBaselineToTopHeight 0x7f040194 +int attr floatingActionButtonStyle 0x7f040195 +int attr flow_firstHorizontalBias 0x7f040196 +int attr flow_firstHorizontalStyle 0x7f040197 +int attr flow_firstVerticalBias 0x7f040198 +int attr flow_firstVerticalStyle 0x7f040199 +int attr flow_horizontalAlign 0x7f04019a +int attr flow_horizontalBias 0x7f04019b +int attr flow_horizontalGap 0x7f04019c +int attr flow_horizontalStyle 0x7f04019d +int attr flow_lastHorizontalBias 0x7f04019e +int attr flow_lastHorizontalStyle 0x7f04019f +int attr flow_lastVerticalBias 0x7f0401a0 +int attr flow_lastVerticalStyle 0x7f0401a1 +int attr flow_maxElementsWrap 0x7f0401a2 +int attr flow_padding 0x7f0401a3 +int attr flow_verticalAlign 0x7f0401a4 +int attr flow_verticalBias 0x7f0401a5 +int attr flow_verticalGap 0x7f0401a6 +int attr flow_verticalStyle 0x7f0401a7 +int attr flow_wrapMode 0x7f0401a8 +int attr font 0x7f0401a9 +int attr fontFamily 0x7f0401aa +int attr fontProviderAuthority 0x7f0401ab +int attr fontProviderCerts 0x7f0401ac +int attr fontProviderFetchStrategy 0x7f0401ad +int attr fontProviderFetchTimeout 0x7f0401ae +int attr fontProviderPackage 0x7f0401af +int attr fontProviderQuery 0x7f0401b0 +int attr fontProviderSystemFontFamily 0x7f0401b1 +int attr fontStyle 0x7f0401b2 +int attr fontVariationSettings 0x7f0401b3 +int attr fontWeight 0x7f0401b4 +int attr forceApplySystemWindowInsetTop 0x7f0401b5 +int attr foregroundInsidePadding 0x7f0401b6 +int attr framePosition 0x7f0401b7 +int attr gapBetweenBars 0x7f0401b8 +int attr gestureInsetBottomIgnored 0x7f0401b9 +int attr goIcon 0x7f0401ba +int attr haloColor 0x7f0401bb +int attr haloRadius 0x7f0401bc +int attr headerLayout 0x7f0401bd +int attr height 0x7f0401be +int attr helperText 0x7f0401bf +int attr helperTextEnabled 0x7f0401c0 +int attr helperTextTextAppearance 0x7f0401c1 +int attr helperTextTextColor 0x7f0401c2 +int attr hideAnimationBehavior 0x7f0401c3 +int attr hideMotionSpec 0x7f0401c4 +int attr hideOnContentScroll 0x7f0401c5 +int attr hideOnScroll 0x7f0401c6 +int attr hide_on_touch 0x7f0401c7 +int attr hintAnimationEnabled 0x7f0401c8 +int attr hintEnabled 0x7f0401c9 +int attr hintTextAppearance 0x7f0401ca +int attr hintTextColor 0x7f0401cb +int attr homeAsUpIndicator 0x7f0401cc +int attr homeLayout 0x7f0401cd +int attr horizontalOffset 0x7f0401ce +int attr hoveredFocusedTranslationZ 0x7f0401cf +int attr icon 0x7f0401d0 +int attr iconEndPadding 0x7f0401d1 +int attr iconGravity 0x7f0401d2 +int attr iconPadding 0x7f0401d3 +int attr iconSize 0x7f0401d4 +int attr iconStartPadding 0x7f0401d5 +int attr iconTint 0x7f0401d6 +int attr iconTintMode 0x7f0401d7 +int attr iconifiedByDefault 0x7f0401d8 +int attr ifTagNotSet 0x7f0401d9 +int attr ifTagSet 0x7f0401da +int attr imageButtonStyle 0x7f0401db +int attr imagePanX 0x7f0401dc +int attr imagePanY 0x7f0401dd +int attr imageRotate 0x7f0401de +int attr imageZoom 0x7f0401df +int attr indeterminateAnimationType 0x7f0401e0 +int attr indeterminateProgressStyle 0x7f0401e1 +int attr indicatorColor 0x7f0401e2 +int attr indicatorDirectionCircular 0x7f0401e3 +int attr indicatorDirectionLinear 0x7f0401e4 +int attr indicatorInset 0x7f0401e5 +int attr indicatorSize 0x7f0401e6 +int attr initialActivityCount 0x7f0401e7 +int attr insetForeground 0x7f0401e8 +int attr isLightTheme 0x7f0401e9 +int attr isMaterialTheme 0x7f0401ea +int attr itemBackground 0x7f0401eb +int attr itemFillColor 0x7f0401ec +int attr itemHorizontalPadding 0x7f0401ed +int attr itemHorizontalTranslationEnabled 0x7f0401ee +int attr itemIconPadding 0x7f0401ef +int attr itemIconSize 0x7f0401f0 +int attr itemIconTint 0x7f0401f1 +int attr itemMaxLines 0x7f0401f2 +int attr itemPadding 0x7f0401f3 +int attr itemRippleColor 0x7f0401f4 +int attr itemShapeAppearance 0x7f0401f5 +int attr itemShapeAppearanceOverlay 0x7f0401f6 +int attr itemShapeFillColor 0x7f0401f7 +int attr itemShapeInsetBottom 0x7f0401f8 +int attr itemShapeInsetEnd 0x7f0401f9 +int attr itemShapeInsetStart 0x7f0401fa +int attr itemShapeInsetTop 0x7f0401fb +int attr itemSpacing 0x7f0401fc +int attr itemStrokeColor 0x7f0401fd +int attr itemStrokeWidth 0x7f0401fe +int attr itemTextAppearance 0x7f0401ff +int attr itemTextAppearanceActive 0x7f040200 +int attr itemTextAppearanceInactive 0x7f040201 +int attr itemTextColor 0x7f040202 +int attr keyPositionType 0x7f040203 +int attr keyboardIcon 0x7f040204 +int attr keylines 0x7f040205 +int attr labelBehavior 0x7f040206 +int attr labelStyle 0x7f040207 +int attr labelVisibilityMode 0x7f040208 +int attr lastBaselineToBottomHeight 0x7f040209 +int attr layout 0x7f04020a +int attr layoutDescription 0x7f04020b +int attr layoutDuringTransition 0x7f04020c +int attr layoutManager 0x7f04020d +int attr layout_anchor 0x7f04020e +int attr layout_anchorGravity 0x7f04020f +int attr layout_behavior 0x7f040210 +int attr layout_collapseMode 0x7f040211 +int attr layout_collapseParallaxMultiplier 0x7f040212 +int attr layout_constrainedHeight 0x7f040213 +int attr layout_constrainedWidth 0x7f040214 +int attr layout_constraintBaseline_creator 0x7f040215 +int attr layout_constraintBaseline_toBaselineOf 0x7f040216 +int attr layout_constraintBaseline_toBottomOf 0x7f040217 +int attr layout_constraintBaseline_toTopOf 0x7f040218 +int attr layout_constraintBottom_creator 0x7f040219 +int attr layout_constraintBottom_toBottomOf 0x7f04021a +int attr layout_constraintBottom_toTopOf 0x7f04021b +int attr layout_constraintCircle 0x7f04021c +int attr layout_constraintCircleAngle 0x7f04021d +int attr layout_constraintCircleRadius 0x7f04021e +int attr layout_constraintDimensionRatio 0x7f04021f +int attr layout_constraintEnd_toEndOf 0x7f040220 +int attr layout_constraintEnd_toStartOf 0x7f040221 +int attr layout_constraintGuide_begin 0x7f040222 +int attr layout_constraintGuide_end 0x7f040223 +int attr layout_constraintGuide_percent 0x7f040224 +int attr layout_constraintHeight 0x7f040225 +int attr layout_constraintHeight_default 0x7f040226 +int attr layout_constraintHeight_max 0x7f040227 +int attr layout_constraintHeight_min 0x7f040228 +int attr layout_constraintHeight_percent 0x7f040229 +int attr layout_constraintHorizontal_bias 0x7f04022a +int attr layout_constraintHorizontal_chainStyle 0x7f04022b +int attr layout_constraintHorizontal_weight 0x7f04022c +int attr layout_constraintLeft_creator 0x7f04022d +int attr layout_constraintLeft_toLeftOf 0x7f04022e +int attr layout_constraintLeft_toRightOf 0x7f04022f +int attr layout_constraintRight_creator 0x7f040230 +int attr layout_constraintRight_toLeftOf 0x7f040231 +int attr layout_constraintRight_toRightOf 0x7f040232 +int attr layout_constraintStart_toEndOf 0x7f040233 +int attr layout_constraintStart_toStartOf 0x7f040234 +int attr layout_constraintTag 0x7f040235 +int attr layout_constraintTop_creator 0x7f040236 +int attr layout_constraintTop_toBottomOf 0x7f040237 +int attr layout_constraintTop_toTopOf 0x7f040238 +int attr layout_constraintVertical_bias 0x7f040239 +int attr layout_constraintVertical_chainStyle 0x7f04023a +int attr layout_constraintVertical_weight 0x7f04023b +int attr layout_constraintWidth 0x7f04023c +int attr layout_constraintWidth_default 0x7f04023d +int attr layout_constraintWidth_max 0x7f04023e +int attr layout_constraintWidth_min 0x7f04023f +int attr layout_constraintWidth_percent 0x7f040240 +int attr layout_dodgeInsetEdges 0x7f040241 +int attr layout_editor_absoluteX 0x7f040242 +int attr layout_editor_absoluteY 0x7f040243 +int attr layout_goneMarginBaseline 0x7f040244 +int attr layout_goneMarginBottom 0x7f040245 +int attr layout_goneMarginEnd 0x7f040246 +int attr layout_goneMarginLeft 0x7f040247 +int attr layout_goneMarginRight 0x7f040248 +int attr layout_goneMarginStart 0x7f040249 +int attr layout_goneMarginTop 0x7f04024a +int attr layout_insetEdge 0x7f04024b +int attr layout_keyline 0x7f04024c +int attr layout_marginBaseline 0x7f04024d +int attr layout_optimizationLevel 0x7f04024e +int attr layout_scrollFlags 0x7f04024f +int attr layout_scrollInterpolator 0x7f040250 +int attr layout_wrapBehaviorInParent 0x7f040251 +int attr liftOnScroll 0x7f040252 +int attr liftOnScrollTargetViewId 0x7f040253 +int attr limitBoundsTo 0x7f040254 +int attr lineHeight 0x7f040255 +int attr lineSpacing 0x7f040256 +int attr linearProgressIndicatorStyle 0x7f040257 +int attr listChoiceBackgroundIndicator 0x7f040258 +int attr listChoiceIndicatorMultipleAnimated 0x7f040259 +int attr listChoiceIndicatorSingleAnimated 0x7f04025a +int attr listDividerAlertDialog 0x7f04025b +int attr listItemLayout 0x7f04025c +int attr listLayout 0x7f04025d +int attr listMenuViewStyle 0x7f04025e +int attr listPopupWindowStyle 0x7f04025f +int attr listPreferredItemHeight 0x7f040260 +int attr listPreferredItemHeightLarge 0x7f040261 +int attr listPreferredItemHeightSmall 0x7f040262 +int attr listPreferredItemPaddingEnd 0x7f040263 +int attr listPreferredItemPaddingLeft 0x7f040264 +int attr listPreferredItemPaddingRight 0x7f040265 +int attr listPreferredItemPaddingStart 0x7f040266 +int attr logo 0x7f040267 +int attr logoDescription 0x7f040268 +int attr materialAlertDialogBodyTextStyle 0x7f040269 +int attr materialAlertDialogTheme 0x7f04026a +int attr materialAlertDialogTitleIconStyle 0x7f04026b +int attr materialAlertDialogTitlePanelStyle 0x7f04026c +int attr materialAlertDialogTitleTextStyle 0x7f04026d +int attr materialButtonOutlinedStyle 0x7f04026e +int attr materialButtonStyle 0x7f04026f +int attr materialButtonToggleGroupStyle 0x7f040270 +int attr materialCalendarDay 0x7f040271 +int attr materialCalendarFullscreenTheme 0x7f040272 +int attr materialCalendarHeaderCancelButton 0x7f040273 +int attr materialCalendarHeaderConfirmButton 0x7f040274 +int attr materialCalendarHeaderDivider 0x7f040275 +int attr materialCalendarHeaderLayout 0x7f040276 +int attr materialCalendarHeaderSelection 0x7f040277 +int attr materialCalendarHeaderTitle 0x7f040278 +int attr materialCalendarHeaderToggleButton 0x7f040279 +int attr materialCalendarMonth 0x7f04027a +int attr materialCalendarMonthNavigationButton 0x7f04027b +int attr materialCalendarStyle 0x7f04027c +int attr materialCalendarTheme 0x7f04027d +int attr materialCalendarYearNavigationButton 0x7f04027e +int attr materialCardViewStyle 0x7f04027f +int attr materialCircleRadius 0x7f040280 +int attr materialClockStyle 0x7f040281 +int attr materialThemeOverlay 0x7f040282 +int attr materialTimePickerStyle 0x7f040283 +int attr materialTimePickerTheme 0x7f040284 +int attr maxAcceleration 0x7f040285 +int attr maxActionInlineWidth 0x7f040286 +int attr maxButtonHeight 0x7f040287 +int attr maxCharacterCount 0x7f040288 +int attr maxHeight 0x7f040289 +int attr maxImageSize 0x7f04028a +int attr maxLines 0x7f04028b +int attr maxVelocity 0x7f04028c +int attr maxWidth 0x7f04028d +int attr measureWithLargestChild 0x7f04028e +int attr menu 0x7f04028f +int attr menuGravity 0x7f040290 +int attr methodName 0x7f040291 +int attr minHeight 0x7f040292 +int attr minHideDelay 0x7f040293 +int attr minSeparation 0x7f040294 +int attr minTouchTargetSize 0x7f040295 +int attr minWidth 0x7f040296 +int attr miv_blurRadius 0x7f040297 +int attr miv_borderColor 0x7f040298 +int attr miv_bottomLeftRadius 0x7f040299 +int attr miv_bottomRightRadius 0x7f04029a +int attr miv_failureHolder 0x7f04029b +int attr miv_isBlur 0x7f04029c +int attr miv_overlayImageId 0x7f04029d +int attr miv_placeHolder 0x7f04029e +int attr miv_radius 0x7f04029f +int attr miv_shape 0x7f0402a0 +int attr miv_shapeBorderWidth 0x7f0402a1 +int attr miv_topLeftRadius 0x7f0402a2 +int attr miv_topRightRadius 0x7f0402a3 +int attr mock_diagonalsColor 0x7f0402a4 +int attr mock_label 0x7f0402a5 +int attr mock_labelBackgroundColor 0x7f0402a6 +int attr mock_labelColor 0x7f0402a7 +int attr mock_showDiagonals 0x7f0402a8 +int attr mock_showLabel 0x7f0402a9 +int attr motionDebug 0x7f0402aa +int attr motionDurationLong1 0x7f0402ab +int attr motionDurationLong2 0x7f0402ac +int attr motionDurationMedium1 0x7f0402ad +int attr motionDurationMedium2 0x7f0402ae +int attr motionDurationShort1 0x7f0402af +int attr motionDurationShort2 0x7f0402b0 +int attr motionEasingAccelerated 0x7f0402b1 +int attr motionEasingDecelerated 0x7f0402b2 +int attr motionEasingEmphasized 0x7f0402b3 +int attr motionEasingLinear 0x7f0402b4 +int attr motionEasingStandard 0x7f0402b5 +int attr motionEffect_alpha 0x7f0402b6 +int attr motionEffect_end 0x7f0402b7 +int attr motionEffect_move 0x7f0402b8 +int attr motionEffect_start 0x7f0402b9 +int attr motionEffect_strict 0x7f0402ba +int attr motionEffect_translationX 0x7f0402bb +int attr motionEffect_translationY 0x7f0402bc +int attr motionEffect_viewTransition 0x7f0402bd +int attr motionInterpolator 0x7f0402be +int attr motionPath 0x7f0402bf +int attr motionPathRotate 0x7f0402c0 +int attr motionProgress 0x7f0402c1 +int attr motionStagger 0x7f0402c2 +int attr motionTarget 0x7f0402c3 +int attr motion_postLayoutCollision 0x7f0402c4 +int attr motion_triggerOnCollision 0x7f0402c5 +int attr moveWhenScrollAtTop 0x7f0402c6 +int attr multiChoiceItemLayout 0x7f0402c7 +int attr navigationContentDescription 0x7f0402c8 +int attr navigationIcon 0x7f0402c9 +int attr navigationIconTint 0x7f0402ca +int attr navigationMode 0x7f0402cb +int attr navigationRailStyle 0x7f0402cc +int attr navigationViewStyle 0x7f0402cd +int attr nestedScrollFlags 0x7f0402ce +int attr nestedScrollable 0x7f0402cf +int attr number 0x7f0402d0 +int attr numericModifiers 0x7f0402d1 +int attr onCross 0x7f0402d2 +int attr onHide 0x7f0402d3 +int attr onNegativeCross 0x7f0402d4 +int attr onPositiveCross 0x7f0402d5 +int attr onShow 0x7f0402d6 +int attr onStateTransition 0x7f0402d7 +int attr onTouchUp 0x7f0402d8 +int attr overlapAnchor 0x7f0402d9 +int attr overlay 0x7f0402da +int attr overlayImage 0x7f0402db +int attr paddingBottomNoButtons 0x7f0402dc +int attr paddingBottomSystemWindowInsets 0x7f0402dd +int attr paddingEnd 0x7f0402de +int attr paddingLeftSystemWindowInsets 0x7f0402df +int attr paddingRightSystemWindowInsets 0x7f0402e0 +int attr paddingStart 0x7f0402e1 +int attr paddingTopNoTitle 0x7f0402e2 +int attr paddingTopSystemWindowInsets 0x7f0402e3 +int attr panelBackground 0x7f0402e4 +int attr panelMenuListTheme 0x7f0402e5 +int attr panelMenuListWidth 0x7f0402e6 +int attr passwordToggleContentDescription 0x7f0402e7 +int attr passwordToggleDrawable 0x7f0402e8 +int attr passwordToggleEnabled 0x7f0402e9 +int attr passwordToggleTint 0x7f0402ea +int attr passwordToggleTintMode 0x7f0402eb +int attr pathMotionArc 0x7f0402ec +int attr path_percent 0x7f0402ed +int attr percentHeight 0x7f0402ee +int attr percentWidth 0x7f0402ef +int attr percentX 0x7f0402f0 +int attr percentY 0x7f0402f1 +int attr perpendicularPath_percent 0x7f0402f2 +int attr pivotAnchor 0x7f0402f3 +int attr placeholderImage 0x7f0402f4 +int attr placeholderImageScaleType 0x7f0402f5 +int attr placeholderText 0x7f0402f6 +int attr placeholderTextAppearance 0x7f0402f7 +int attr placeholderTextColor 0x7f0402f8 +int attr placeholder_emptyVisibility 0x7f0402f9 +int attr play_bg_line_color 0x7f0402fa +int attr play_bg_line_width 0x7f0402fb +int attr play_line_color 0x7f0402fc +int attr play_line_width 0x7f0402fd +int attr played_color 0x7f0402fe +int attr player_layout_id 0x7f0402ff +int attr polarRelativeTo 0x7f040300 +int attr popupMenuBackground 0x7f040301 +int attr popupMenuStyle 0x7f040302 +int attr popupTheme 0x7f040303 +int attr popupWindowStyle 0x7f040304 +int attr prefixText 0x7f040305 +int attr prefixTextAppearance 0x7f040306 +int attr prefixTextColor 0x7f040307 +int attr preserveIconSpacing 0x7f040308 +int attr pressedStateOverlayImage 0x7f040309 +int attr pressedTranslationZ 0x7f04030a +int attr progressBarAutoRotateInterval 0x7f04030b +int attr progressBarImage 0x7f04030c +int attr progressBarImageScaleType 0x7f04030d +int attr progressBarPadding 0x7f04030e +int attr progressBarStyle 0x7f04030f +int attr quantizeMotionInterpolator 0x7f040310 +int attr quantizeMotionPhase 0x7f040311 +int attr quantizeMotionSteps 0x7f040312 +int attr queryBackground 0x7f040313 +int attr queryHint 0x7f040314 +int attr radioButtonStyle 0x7f040315 +int attr rangeFillColor 0x7f040316 +int attr ratingBarStyle 0x7f040317 +int attr ratingBarStyleIndicator 0x7f040318 +int attr ratingBarStyleSmall 0x7f040319 +int attr reactiveGuide_animateChange 0x7f04031a +int attr reactiveGuide_applyToAllConstraintSets 0x7f04031b +int attr reactiveGuide_applyToConstraintSet 0x7f04031c +int attr reactiveGuide_valueId 0x7f04031d +int attr recyclerViewStyle 0x7f04031e +int attr region_heightLessThan 0x7f04031f +int attr region_heightMoreThan 0x7f040320 +int attr region_widthLessThan 0x7f040321 +int attr region_widthMoreThan 0x7f040322 +int attr resize_mode 0x7f040323 +int attr retryImage 0x7f040324 +int attr retryImageScaleType 0x7f040325 +int attr reverseLayout 0x7f040326 +int attr rewind_increment 0x7f040327 +int attr rippleColor 0x7f040328 +int attr rotationCenterId 0x7f040329 +int attr round 0x7f04032a +int attr roundAsCircle 0x7f04032b +int attr roundBottomEnd 0x7f04032c +int attr roundBottomLeft 0x7f04032d +int attr roundBottomRight 0x7f04032e +int attr roundBottomStart 0x7f04032f +int attr roundLayoutRadius 0x7f040330 +int attr roundPercent 0x7f040331 +int attr roundTopEnd 0x7f040332 +int attr roundTopLeft 0x7f040333 +int attr roundTopRight 0x7f040334 +int attr roundTopStart 0x7f040335 +int attr roundWithOverlayColor 0x7f040336 +int attr roundedCornerRadius 0x7f040337 +int attr roundingBorderColor 0x7f040338 +int attr roundingBorderPadding 0x7f040339 +int attr roundingBorderWidth 0x7f04033a +int attr saturation 0x7f04033b +int attr scaleFromTextSize 0x7f04033c +int attr scrimAnimationDuration 0x7f04033d +int attr scrimBackground 0x7f04033e +int attr scrimVisibleHeightTrigger 0x7f04033f +int attr scrubber_color 0x7f040340 +int attr scrubber_disabled_size 0x7f040341 +int attr scrubber_dragged_size 0x7f040342 +int attr scrubber_enabled_size 0x7f040343 +int attr searchHintIcon 0x7f040344 +int attr searchIcon 0x7f040345 +int attr searchViewStyle 0x7f040346 +int attr seekBarStyle 0x7f040347 +int attr selectableItemBackground 0x7f040348 +int attr selectableItemBackgroundBorderless 0x7f040349 +int attr selectionRequired 0x7f04034a +int attr selectorSize 0x7f04034b +int attr setsTag 0x7f04034c +int attr shapeAppearance 0x7f04034d +int attr shapeAppearanceLargeComponent 0x7f04034e +int attr shapeAppearanceMediumComponent 0x7f04034f +int attr shapeAppearanceOverlay 0x7f040350 +int attr shapeAppearanceSmallComponent 0x7f040351 +int attr showAnimationBehavior 0x7f040352 +int attr showAsAction 0x7f040353 +int attr showDelay 0x7f040354 +int attr showDividers 0x7f040355 +int attr showMotionSpec 0x7f040356 +int attr showPaths 0x7f040357 +int attr showText 0x7f040358 +int attr showTitle 0x7f040359 +int attr show_timeout 0x7f04035a +int attr shrinkMotionSpec 0x7f04035b +int attr singleChoiceItemLayout 0x7f04035c +int attr singleLine 0x7f04035d +int attr singleSelection 0x7f04035e +int attr sizePercent 0x7f04035f +int attr sliderStyle 0x7f040360 +int attr snackbarButtonStyle 0x7f040361 +int attr snackbarStyle 0x7f040362 +int attr snackbarTextViewStyle 0x7f040363 +int attr spanCount 0x7f040364 +int attr spinBars 0x7f040365 +int attr spinnerDropDownItemStyle 0x7f040366 +int attr spinnerStyle 0x7f040367 +int attr splitTrack 0x7f040368 +int attr springBoundary 0x7f040369 +int attr springDamping 0x7f04036a +int attr springMass 0x7f04036b +int attr springStiffness 0x7f04036c +int attr springStopThreshold 0x7f04036d +int attr srcCompat 0x7f04036e +int attr stackFromEnd 0x7f04036f +int attr staggered 0x7f040370 +int attr startIconCheckable 0x7f040371 +int attr startIconContentDescription 0x7f040372 +int attr startIconDrawable 0x7f040373 +int attr startIconTint 0x7f040374 +int attr startIconTintMode 0x7f040375 +int attr state_above_anchor 0x7f040376 +int attr state_collapsed 0x7f040377 +int attr state_collapsible 0x7f040378 +int attr state_dragged 0x7f040379 +int attr state_liftable 0x7f04037a +int attr state_lifted 0x7f04037b +int attr statusBarBackground 0x7f04037c +int attr statusBarForeground 0x7f04037d +int attr statusBarScrim 0x7f04037e +int attr stepSize 0x7f04037f +int attr strokeColor 0x7f040380 +int attr strokeWidth 0x7f040381 +int attr subMenuArrow 0x7f040382 +int attr submitBackground 0x7f040383 +int attr subtitle 0x7f040384 +int attr subtitleCentered 0x7f040385 +int attr subtitleTextAppearance 0x7f040386 +int attr subtitleTextColor 0x7f040387 +int attr subtitleTextStyle 0x7f040388 +int attr suffixText 0x7f040389 +int attr suffixTextAppearance 0x7f04038a +int attr suffixTextColor 0x7f04038b +int attr suggestionRowLayout 0x7f04038c +int attr surface_type 0x7f04038d +int attr switchMinWidth 0x7f04038e +int attr switchPadding 0x7f04038f +int attr switchStyle 0x7f040390 +int attr switchTextAppearance 0x7f040391 +int attr tabBackground 0x7f040392 +int attr tabContentStart 0x7f040393 +int attr tabGravity 0x7f040394 +int attr tabIconTint 0x7f040395 +int attr tabIconTintMode 0x7f040396 +int attr tabIndicator 0x7f040397 +int attr tabIndicatorAnimationDuration 0x7f040398 +int attr tabIndicatorAnimationMode 0x7f040399 +int attr tabIndicatorColor 0x7f04039a +int attr tabIndicatorFullWidth 0x7f04039b +int attr tabIndicatorGravity 0x7f04039c +int attr tabIndicatorHeight 0x7f04039d +int attr tabInlineLabel 0x7f04039e +int attr tabMaxWidth 0x7f04039f +int attr tabMinWidth 0x7f0403a0 +int attr tabMode 0x7f0403a1 +int attr tabPadding 0x7f0403a2 +int attr tabPaddingBottom 0x7f0403a3 +int attr tabPaddingEnd 0x7f0403a4 +int attr tabPaddingStart 0x7f0403a5 +int attr tabPaddingTop 0x7f0403a6 +int attr tabRippleColor 0x7f0403a7 +int attr tabSelectedTextColor 0x7f0403a8 +int attr tabStyle 0x7f0403a9 +int attr tabTextAppearance 0x7f0403aa +int attr tabTextColor 0x7f0403ab +int attr tabUnboundedRipple 0x7f0403ac +int attr targetId 0x7f0403ad +int attr telltales_tailColor 0x7f0403ae +int attr telltales_tailScale 0x7f0403af +int attr telltales_velocityMode 0x7f0403b0 +int attr textAllCaps 0x7f0403b1 +int attr textAppearanceBody1 0x7f0403b2 +int attr textAppearanceBody2 0x7f0403b3 +int attr textAppearanceButton 0x7f0403b4 +int attr textAppearanceCaption 0x7f0403b5 +int attr textAppearanceHeadline1 0x7f0403b6 +int attr textAppearanceHeadline2 0x7f0403b7 +int attr textAppearanceHeadline3 0x7f0403b8 +int attr textAppearanceHeadline4 0x7f0403b9 +int attr textAppearanceHeadline5 0x7f0403ba +int attr textAppearanceHeadline6 0x7f0403bb +int attr textAppearanceLargePopupMenu 0x7f0403bc +int attr textAppearanceLineHeightEnabled 0x7f0403bd +int attr textAppearanceListItem 0x7f0403be +int attr textAppearanceListItemSecondary 0x7f0403bf +int attr textAppearanceListItemSmall 0x7f0403c0 +int attr textAppearanceOverline 0x7f0403c1 +int attr textAppearancePopupMenuHeader 0x7f0403c2 +int attr textAppearanceSearchResultSubtitle 0x7f0403c3 +int attr textAppearanceSearchResultTitle 0x7f0403c4 +int attr textAppearanceSmallPopupMenu 0x7f0403c5 +int attr textAppearanceSubtitle1 0x7f0403c6 +int attr textAppearanceSubtitle2 0x7f0403c7 +int attr textBackground 0x7f0403c8 +int attr textBackgroundPanX 0x7f0403c9 +int attr textBackgroundPanY 0x7f0403ca +int attr textBackgroundRotate 0x7f0403cb +int attr textBackgroundZoom 0x7f0403cc +int attr textColorAlertDialogListItem 0x7f0403cd +int attr textColorSearchUrl 0x7f0403ce +int attr textEndPadding 0x7f0403cf +int attr textFillColor 0x7f0403d0 +int attr textInputLayoutFocusedRectEnabled 0x7f0403d1 +int attr textInputStyle 0x7f0403d2 +int attr textLocale 0x7f0403d3 +int attr textOutlineColor 0x7f0403d4 +int attr textOutlineThickness 0x7f0403d5 +int attr textPanX 0x7f0403d6 +int attr textPanY 0x7f0403d7 +int attr textStartPadding 0x7f0403d8 +int attr textureBlurFactor 0x7f0403d9 +int attr textureEffect 0x7f0403da +int attr textureHeight 0x7f0403db +int attr textureWidth 0x7f0403dc +int attr theme 0x7f0403dd +int attr themeLineHeight 0x7f0403de +int attr thickness 0x7f0403df +int attr thumbColor 0x7f0403e0 +int attr thumbElevation 0x7f0403e1 +int attr thumbRadius 0x7f0403e2 +int attr thumbStrokeColor 0x7f0403e3 +int attr thumbStrokeWidth 0x7f0403e4 +int attr thumbTextPadding 0x7f0403e5 +int attr thumbTint 0x7f0403e6 +int attr thumbTintMode 0x7f0403e7 +int attr tickColor 0x7f0403e8 +int attr tickColorActive 0x7f0403e9 +int attr tickColorInactive 0x7f0403ea +int attr tickMark 0x7f0403eb +int attr tickMarkTint 0x7f0403ec +int attr tickMarkTintMode 0x7f0403ed +int attr tickVisible 0x7f0403ee +int attr tint 0x7f0403ef +int attr tintMode 0x7f0403f0 +int attr title 0x7f0403f1 +int attr titleCentered 0x7f0403f2 +int attr titleCollapseMode 0x7f0403f3 +int attr titleEnabled 0x7f0403f4 +int attr titleMargin 0x7f0403f5 +int attr titleMarginBottom 0x7f0403f6 +int attr titleMarginEnd 0x7f0403f7 +int attr titleMarginStart 0x7f0403f8 +int attr titleMarginTop 0x7f0403f9 +int attr titleMargins 0x7f0403fa +int attr titleTextAppearance 0x7f0403fb +int attr titleTextColor 0x7f0403fc +int attr titleTextStyle 0x7f0403fd +int attr toolbarId 0x7f0403fe +int attr toolbarNavigationButtonStyle 0x7f0403ff +int attr toolbarStyle 0x7f040400 +int attr tooltipForegroundColor 0x7f040401 +int attr tooltipFrameBackground 0x7f040402 +int attr tooltipStyle 0x7f040403 +int attr tooltipText 0x7f040404 +int attr touchAnchorId 0x7f040405 +int attr touchAnchorSide 0x7f040406 +int attr touchRegionId 0x7f040407 +int attr touch_target_height 0x7f040408 +int attr track 0x7f040409 +int attr trackColor 0x7f04040a +int attr trackColorActive 0x7f04040b +int attr trackColorInactive 0x7f04040c +int attr trackCornerRadius 0x7f04040d +int attr trackHeight 0x7f04040e +int attr trackThickness 0x7f04040f +int attr trackTint 0x7f040410 +int attr trackTintMode 0x7f040411 +int attr transformPivotTarget 0x7f040412 +int attr transitionDisable 0x7f040413 +int attr transitionEasing 0x7f040414 +int attr transitionFlags 0x7f040415 +int attr transitionPathRotate 0x7f040416 +int attr transitionShapeAppearance 0x7f040417 +int attr triggerId 0x7f040418 +int attr triggerReceiver 0x7f040419 +int attr triggerSlack 0x7f04041a +int attr ttcIndex 0x7f04041b +int attr unplayed_color 0x7f04041c +int attr upDuration 0x7f04041d +int attr useCompatPadding 0x7f04041e +int attr useMaterialThemeColors 0x7f04041f +int attr use_artwork 0x7f040420 +int attr use_controller 0x7f040421 +int attr values 0x7f040422 +int attr verticalOffset 0x7f040423 +int attr viewAspectRatio 0x7f040424 +int attr viewInflaterClass 0x7f040425 +int attr viewTransitionMode 0x7f040426 +int attr viewTransitionOnCross 0x7f040427 +int attr viewTransitionOnNegativeCross 0x7f040428 +int attr viewTransitionOnPositiveCross 0x7f040429 +int attr visibilityMode 0x7f04042a +int attr voiceIcon 0x7f04042b +int attr warmth 0x7f04042c +int attr waveDecay 0x7f04042d +int attr waveOffset 0x7f04042e +int attr wavePeriod 0x7f04042f +int attr wavePhase 0x7f040430 +int attr waveShape 0x7f040431 +int attr waveVariesBy 0x7f040432 +int attr windowActionBar 0x7f040433 +int attr windowActionBarOverlay 0x7f040434 +int attr windowActionModeOverlay 0x7f040435 +int attr windowFixedHeightMajor 0x7f040436 +int attr windowFixedHeightMinor 0x7f040437 +int attr windowFixedWidthMajor 0x7f040438 +int attr windowFixedWidthMinor 0x7f040439 +int attr windowMinWidthMajor 0x7f04043a +int attr windowMinWidthMinor 0x7f04043b +int attr windowNoTitle 0x7f04043c +int attr yearSelectedStyle 0x7f04043d +int attr yearStyle 0x7f04043e +int attr yearTodayStyle 0x7f04043f +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004 +int bool mtrl_btn_textappearance_all_caps 0x7f050005 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_decor_view_status_guard 0x7f060006 +int color abc_decor_view_status_guard_light 0x7f060007 +int color abc_hint_foreground_material_dark 0x7f060008 +int color abc_hint_foreground_material_light 0x7f060009 +int color abc_input_method_navigation_guard 0x7f06000a +int color abc_primary_text_disable_only_material_dark 0x7f06000b +int color abc_primary_text_disable_only_material_light 0x7f06000c +int color abc_primary_text_material_dark 0x7f06000d +int color abc_primary_text_material_light 0x7f06000e +int color abc_search_url_text 0x7f06000f +int color abc_search_url_text_normal 0x7f060010 +int color abc_search_url_text_pressed 0x7f060011 +int color abc_search_url_text_selected 0x7f060012 +int color abc_secondary_text_material_dark 0x7f060013 +int color abc_secondary_text_material_light 0x7f060014 +int color abc_tint_btn_checkable 0x7f060015 +int color abc_tint_default 0x7f060016 +int color abc_tint_edittext 0x7f060017 +int color abc_tint_seek_thumb 0x7f060018 +int color abc_tint_spinner 0x7f060019 +int color abc_tint_switch_track 0x7f06001a +int color accent_material_dark 0x7f06001b +int color accent_material_light 0x7f06001c +int color androidx_core_ripple_material_light 0x7f06001d +int color androidx_core_secondary_text_default_material_light 0x7f06001e +int color background_floating_material_dark 0x7f06001f +int color background_floating_material_light 0x7f060020 +int color background_material_dark 0x7f060021 +int color background_material_light 0x7f060022 +int color bottom_container_bg 0x7f060023 +int color bright_foreground_disabled_material_dark 0x7f060024 +int color bright_foreground_disabled_material_light 0x7f060025 +int color bright_foreground_inverse_material_dark 0x7f060026 +int color bright_foreground_inverse_material_light 0x7f060027 +int color bright_foreground_material_dark 0x7f060028 +int color bright_foreground_material_light 0x7f060029 +int color button_material_dark 0x7f06002a +int color button_material_light 0x7f06002b +int color cardview_dark_background 0x7f06002c +int color cardview_light_background 0x7f06002d +int color cardview_shadow_end_color 0x7f06002e +int color cardview_shadow_start_color 0x7f06002f +int color checkbox_themeable_attribute_color 0x7f060030 +int color design_bottom_navigation_shadow_color 0x7f060031 +int color design_box_stroke_color 0x7f060032 +int color design_dark_default_color_background 0x7f060033 +int color design_dark_default_color_error 0x7f060034 +int color design_dark_default_color_on_background 0x7f060035 +int color design_dark_default_color_on_error 0x7f060036 +int color design_dark_default_color_on_primary 0x7f060037 +int color design_dark_default_color_on_secondary 0x7f060038 +int color design_dark_default_color_on_surface 0x7f060039 +int color design_dark_default_color_primary 0x7f06003a +int color design_dark_default_color_primary_dark 0x7f06003b +int color design_dark_default_color_primary_variant 0x7f06003c +int color design_dark_default_color_secondary 0x7f06003d +int color design_dark_default_color_secondary_variant 0x7f06003e +int color design_dark_default_color_surface 0x7f06003f +int color design_default_color_background 0x7f060040 +int color design_default_color_error 0x7f060041 +int color design_default_color_on_background 0x7f060042 +int color design_default_color_on_error 0x7f060043 +int color design_default_color_on_primary 0x7f060044 +int color design_default_color_on_secondary 0x7f060045 +int color design_default_color_on_surface 0x7f060046 +int color design_default_color_primary 0x7f060047 +int color design_default_color_primary_dark 0x7f060048 +int color design_default_color_primary_variant 0x7f060049 +int color design_default_color_secondary 0x7f06004a +int color design_default_color_secondary_variant 0x7f06004b +int color design_default_color_surface 0x7f06004c +int color design_error 0x7f06004d +int color design_fab_shadow_end_color 0x7f06004e +int color design_fab_shadow_mid_color 0x7f06004f +int color design_fab_shadow_start_color 0x7f060050 +int color design_fab_stroke_end_inner_color 0x7f060051 +int color design_fab_stroke_end_outer_color 0x7f060052 +int color design_fab_stroke_top_inner_color 0x7f060053 +int color design_fab_stroke_top_outer_color 0x7f060054 +int color design_icon_tint 0x7f060055 +int color design_snackbar_background_color 0x7f060056 +int color dim_foreground_disabled_material_dark 0x7f060057 +int color dim_foreground_disabled_material_light 0x7f060058 +int color dim_foreground_material_dark 0x7f060059 +int color dim_foreground_material_light 0x7f06005a +int color error_color_material 0x7f06005b +int color error_color_material_dark 0x7f06005c +int color error_color_material_light 0x7f06005d +int color exo_edit_mode_background_color 0x7f06005e +int color foreground_material_dark 0x7f06005f +int color foreground_material_light 0x7f060060 +int color highlighted_text_material_dark 0x7f060061 +int color highlighted_text_material_light 0x7f060062 +int color material_blue_grey_800 0x7f060063 +int color material_blue_grey_900 0x7f060064 +int color material_blue_grey_950 0x7f060065 +int color material_cursor_color 0x7f060066 +int color material_deep_teal_200 0x7f060067 +int color material_deep_teal_500 0x7f060068 +int color material_grey_100 0x7f060069 +int color material_grey_300 0x7f06006a +int color material_grey_50 0x7f06006b +int color material_grey_600 0x7f06006c +int color material_grey_800 0x7f06006d +int color material_grey_850 0x7f06006e +int color material_grey_900 0x7f06006f +int color material_on_background_disabled 0x7f060070 +int color material_on_background_emphasis_high_type 0x7f060071 +int color material_on_background_emphasis_medium 0x7f060072 +int color material_on_primary_disabled 0x7f060073 +int color material_on_primary_emphasis_high_type 0x7f060074 +int color material_on_primary_emphasis_medium 0x7f060075 +int color material_on_surface_disabled 0x7f060076 +int color material_on_surface_emphasis_high_type 0x7f060077 +int color material_on_surface_emphasis_medium 0x7f060078 +int color material_on_surface_stroke 0x7f060079 +int color material_slider_active_tick_marks_color 0x7f06007a +int color material_slider_active_track_color 0x7f06007b +int color material_slider_halo_color 0x7f06007c +int color material_slider_inactive_tick_marks_color 0x7f06007d +int color material_slider_inactive_track_color 0x7f06007e +int color material_slider_thumb_color 0x7f06007f +int color material_timepicker_button_background 0x7f060080 +int color material_timepicker_button_stroke 0x7f060081 +int color material_timepicker_clock_text_color 0x7f060082 +int color material_timepicker_clockface 0x7f060083 +int color material_timepicker_modebutton_tint 0x7f060084 +int color module_carchatting_hawk_eye_status_color 0x7f060085 +int color module_carchatting_match_line 0x7f060086 +int color module_carchatting_nick_color 0x7f060087 +int color module_carchatting_red_color 0x7f060088 +int color module_carchatting_status_color 0x7f060089 +int color module_carchatting_team_leader 0x7f06008a +int color module_carchatting_team_line 0x7f06008b +int color module_carchatting_user_call 0x7f06008c +int color module_carchatting_white_color 0x7f06008d +int color module_commons_FFF_333 0x7f06008e +int color module_commons_dlg_bkg 0x7f06008f +int color module_commons_wm_dialog_text_textColor 0x7f060090 +int color module_ext_color_voice_text 0x7f060091 +int color module_mogo_autopilot_status_disable 0x7f060092 +int color module_mogo_autopilot_status_enable 0x7f060093 +int color module_switch_map_bg 0x7f060094 +int color modules_commons_toast_text_color 0x7f060095 +int color mtrl_btn_bg_color_selector 0x7f060096 +int color mtrl_btn_ripple_color 0x7f060097 +int color mtrl_btn_stroke_color_selector 0x7f060098 +int color mtrl_btn_text_btn_bg_color_selector 0x7f060099 +int color mtrl_btn_text_btn_ripple_color 0x7f06009a +int color mtrl_btn_text_color_disabled 0x7f06009b +int color mtrl_btn_text_color_selector 0x7f06009c +int color mtrl_btn_transparent_bg_color 0x7f06009d +int color mtrl_calendar_item_stroke_color 0x7f06009e +int color mtrl_calendar_selected_range 0x7f06009f +int color mtrl_card_view_foreground 0x7f0600a0 +int color mtrl_card_view_ripple 0x7f0600a1 +int color mtrl_chip_background_color 0x7f0600a2 +int color mtrl_chip_close_icon_tint 0x7f0600a3 +int color mtrl_chip_surface_color 0x7f0600a4 +int color mtrl_chip_text_color 0x7f0600a5 +int color mtrl_choice_chip_background_color 0x7f0600a6 +int color mtrl_choice_chip_ripple_color 0x7f0600a7 +int color mtrl_choice_chip_text_color 0x7f0600a8 +int color mtrl_error 0x7f0600a9 +int color mtrl_fab_bg_color_selector 0x7f0600aa +int color mtrl_fab_icon_text_color_selector 0x7f0600ab +int color mtrl_fab_ripple_color 0x7f0600ac +int color mtrl_filled_background_color 0x7f0600ad +int color mtrl_filled_icon_tint 0x7f0600ae +int color mtrl_filled_stroke_color 0x7f0600af +int color mtrl_indicator_text_color 0x7f0600b0 +int color mtrl_navigation_bar_colored_item_tint 0x7f0600b1 +int color mtrl_navigation_bar_colored_ripple_color 0x7f0600b2 +int color mtrl_navigation_bar_item_tint 0x7f0600b3 +int color mtrl_navigation_bar_ripple_color 0x7f0600b4 +int color mtrl_navigation_item_background_color 0x7f0600b5 +int color mtrl_navigation_item_icon_tint 0x7f0600b6 +int color mtrl_navigation_item_text_color 0x7f0600b7 +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0600b8 +int color mtrl_on_surface_ripple_color 0x7f0600b9 +int color mtrl_outlined_icon_tint 0x7f0600ba +int color mtrl_outlined_stroke_color 0x7f0600bb +int color mtrl_popupmenu_overlay_color 0x7f0600bc +int color mtrl_scrim_color 0x7f0600bd +int color mtrl_tabs_colored_ripple_color 0x7f0600be +int color mtrl_tabs_icon_color_selector 0x7f0600bf +int color mtrl_tabs_icon_color_selector_colored 0x7f0600c0 +int color mtrl_tabs_legacy_text_color_selector 0x7f0600c1 +int color mtrl_tabs_ripple_color 0x7f0600c2 +int color mtrl_text_btn_text_color_selector 0x7f0600c3 +int color mtrl_textinput_default_box_stroke_color 0x7f0600c4 +int color mtrl_textinput_disabled_color 0x7f0600c5 +int color mtrl_textinput_filled_box_default_background_color 0x7f0600c6 +int color mtrl_textinput_focused_box_stroke_color 0x7f0600c7 +int color mtrl_textinput_hovered_box_stroke_color 0x7f0600c8 +int color notification_action_color_filter 0x7f0600c9 +int color notification_icon_bg_color 0x7f0600ca +int color primary_dark_material_dark 0x7f0600cb +int color primary_dark_material_light 0x7f0600cc +int color primary_material_dark 0x7f0600cd +int color primary_material_light 0x7f0600ce +int color primary_text_default_material_dark 0x7f0600cf +int color primary_text_default_material_light 0x7f0600d0 +int color primary_text_disabled_material_dark 0x7f0600d1 +int color primary_text_disabled_material_light 0x7f0600d2 +int color radiobutton_themeable_attribute_color 0x7f0600d3 +int color ripple_material_dark 0x7f0600d4 +int color ripple_material_light 0x7f0600d5 +int color secondary_text_default_material_dark 0x7f0600d6 +int color secondary_text_default_material_light 0x7f0600d7 +int color secondary_text_disabled_material_dark 0x7f0600d8 +int color secondary_text_disabled_material_light 0x7f0600d9 +int color style_color 0x7f0600da +int color switch_thumb_disabled_material_dark 0x7f0600db +int color switch_thumb_disabled_material_light 0x7f0600dc +int color switch_thumb_material_dark 0x7f0600dd +int color switch_thumb_material_light 0x7f0600de +int color switch_thumb_normal_material_dark 0x7f0600df +int color switch_thumb_normal_material_light 0x7f0600e0 +int color test_mtrl_calendar_day 0x7f0600e1 +int color test_mtrl_calendar_day_selected 0x7f0600e2 +int color tooltip_background_dark 0x7f0600e3 +int color tooltip_background_light 0x7f0600e4 +int color v2x_FFF_666 0x7f0600e5 +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_progress_bar_size 0x7f07000a +int dimen abc_action_bar_stacked_max_height 0x7f07000b +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e +int dimen abc_action_button_min_height_material 0x7f07000f +int dimen abc_action_button_min_width_material 0x7f070010 +int dimen abc_action_button_min_width_overflow_material 0x7f070011 +int dimen abc_alert_dialog_button_bar_height 0x7f070012 +int dimen abc_alert_dialog_button_dimen 0x7f070013 +int dimen abc_button_inset_horizontal_material 0x7f070014 +int dimen abc_button_inset_vertical_material 0x7f070015 +int dimen abc_button_padding_horizontal_material 0x7f070016 +int dimen abc_button_padding_vertical_material 0x7f070017 +int dimen abc_cascading_menus_min_smallest_width 0x7f070018 +int dimen abc_config_prefDialogWidth 0x7f070019 +int dimen abc_control_corner_material 0x7f07001a +int dimen abc_control_inset_material 0x7f07001b +int dimen abc_control_padding_material 0x7f07001c +int dimen abc_dialog_corner_radius_material 0x7f07001d +int dimen abc_dialog_fixed_height_major 0x7f07001e +int dimen abc_dialog_fixed_height_minor 0x7f07001f +int dimen abc_dialog_fixed_width_major 0x7f070020 +int dimen abc_dialog_fixed_width_minor 0x7f070021 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022 +int dimen abc_dialog_list_padding_top_no_title 0x7f070023 +int dimen abc_dialog_min_width_major 0x7f070024 +int dimen abc_dialog_min_width_minor 0x7f070025 +int dimen abc_dialog_padding_material 0x7f070026 +int dimen abc_dialog_padding_top_material 0x7f070027 +int dimen abc_dialog_title_divider_material 0x7f070028 +int dimen abc_disabled_alpha_material_dark 0x7f070029 +int dimen abc_disabled_alpha_material_light 0x7f07002a +int dimen abc_dropdownitem_icon_width 0x7f07002b +int dimen abc_dropdownitem_text_padding_left 0x7f07002c +int dimen abc_dropdownitem_text_padding_right 0x7f07002d +int dimen abc_edit_text_inset_bottom_material 0x7f07002e +int dimen abc_edit_text_inset_horizontal_material 0x7f07002f +int dimen abc_edit_text_inset_top_material 0x7f070030 +int dimen abc_floating_window_z 0x7f070031 +int dimen abc_list_item_height_large_material 0x7f070032 +int dimen abc_list_item_height_material 0x7f070033 +int dimen abc_list_item_height_small_material 0x7f070034 +int dimen abc_list_item_padding_horizontal_material 0x7f070035 +int dimen abc_panel_menu_list_width 0x7f070036 +int dimen abc_progress_bar_height_material 0x7f070037 +int dimen abc_search_view_preferred_height 0x7f070038 +int dimen abc_search_view_preferred_width 0x7f070039 +int dimen abc_seekbar_track_background_height_material 0x7f07003a +int dimen abc_seekbar_track_progress_height_material 0x7f07003b +int dimen abc_select_dialog_padding_start_material 0x7f07003c +int dimen abc_star_big 0x7f07003d +int dimen abc_star_medium 0x7f07003e +int dimen abc_star_small 0x7f07003f +int dimen abc_switch_padding 0x7f070040 +int dimen abc_text_size_body_1_material 0x7f070041 +int dimen abc_text_size_body_2_material 0x7f070042 +int dimen abc_text_size_button_material 0x7f070043 +int dimen abc_text_size_caption_material 0x7f070044 +int dimen abc_text_size_display_1_material 0x7f070045 +int dimen abc_text_size_display_2_material 0x7f070046 +int dimen abc_text_size_display_3_material 0x7f070047 +int dimen abc_text_size_display_4_material 0x7f070048 +int dimen abc_text_size_headline_material 0x7f070049 +int dimen abc_text_size_large_material 0x7f07004a +int dimen abc_text_size_medium_material 0x7f07004b +int dimen abc_text_size_menu_header_material 0x7f07004c +int dimen abc_text_size_menu_material 0x7f07004d +int dimen abc_text_size_small_material 0x7f07004e +int dimen abc_text_size_subhead_material 0x7f07004f +int dimen abc_text_size_subtitle_material_toolbar 0x7f070050 +int dimen abc_text_size_title_material 0x7f070051 +int dimen abc_text_size_title_material_toolbar 0x7f070052 +int dimen action_bar_size 0x7f070053 +int dimen appcompat_dialog_background_inset 0x7f070054 +int dimen brightness_icon 0x7f070055 +int dimen cardview_compat_inset_shadow 0x7f070056 +int dimen cardview_default_elevation 0x7f070057 +int dimen cardview_default_radius 0x7f070058 +int dimen clock_face_margin_start 0x7f070059 +int dimen compat_button_inset_horizontal_material 0x7f07005a +int dimen compat_button_inset_vertical_material 0x7f07005b +int dimen compat_button_padding_horizontal_material 0x7f07005c +int dimen compat_button_padding_vertical_material 0x7f07005d +int dimen compat_control_corner_material 0x7f07005e +int dimen compat_notification_large_icon_max_height 0x7f07005f +int dimen compat_notification_large_icon_max_width 0x7f070060 +int dimen default_dimension 0x7f070061 +int dimen design_appbar_elevation 0x7f070062 +int dimen design_bottom_navigation_active_item_max_width 0x7f070063 +int dimen design_bottom_navigation_active_item_min_width 0x7f070064 +int dimen design_bottom_navigation_active_text_size 0x7f070065 +int dimen design_bottom_navigation_elevation 0x7f070066 +int dimen design_bottom_navigation_height 0x7f070067 +int dimen design_bottom_navigation_icon_size 0x7f070068 +int dimen design_bottom_navigation_item_max_width 0x7f070069 +int dimen design_bottom_navigation_item_min_width 0x7f07006a +int dimen design_bottom_navigation_label_padding 0x7f07006b +int dimen design_bottom_navigation_margin 0x7f07006c +int dimen design_bottom_navigation_shadow_height 0x7f07006d +int dimen design_bottom_navigation_text_size 0x7f07006e +int dimen design_bottom_sheet_elevation 0x7f07006f +int dimen design_bottom_sheet_modal_elevation 0x7f070070 +int dimen design_bottom_sheet_peek_height_min 0x7f070071 +int dimen design_fab_border_width 0x7f070072 +int dimen design_fab_elevation 0x7f070073 +int dimen design_fab_image_size 0x7f070074 +int dimen design_fab_size_mini 0x7f070075 +int dimen design_fab_size_normal 0x7f070076 +int dimen design_fab_translation_z_hovered_focused 0x7f070077 +int dimen design_fab_translation_z_pressed 0x7f070078 +int dimen design_navigation_elevation 0x7f070079 +int dimen design_navigation_icon_padding 0x7f07007a +int dimen design_navigation_icon_size 0x7f07007b +int dimen design_navigation_item_horizontal_padding 0x7f07007c +int dimen design_navigation_item_icon_padding 0x7f07007d +int dimen design_navigation_max_width 0x7f07007e +int dimen design_navigation_padding_bottom 0x7f07007f +int dimen design_navigation_separator_vertical_padding 0x7f070080 +int dimen design_snackbar_action_inline_max_width 0x7f070081 +int dimen design_snackbar_action_text_color_alpha 0x7f070082 +int dimen design_snackbar_background_corner_radius 0x7f070083 +int dimen design_snackbar_elevation 0x7f070084 +int dimen design_snackbar_extra_spacing_horizontal 0x7f070085 +int dimen design_snackbar_max_width 0x7f070086 +int dimen design_snackbar_min_width 0x7f070087 +int dimen design_snackbar_padding_horizontal 0x7f070088 +int dimen design_snackbar_padding_vertical 0x7f070089 +int dimen design_snackbar_padding_vertical_2lines 0x7f07008a +int dimen design_snackbar_text_size 0x7f07008b +int dimen design_tab_max_width 0x7f07008c +int dimen design_tab_scrollable_min_width 0x7f07008d +int dimen design_tab_text_size 0x7f07008e +int dimen design_tab_text_size_2line 0x7f07008f +int dimen design_textinput_caption_translate_y 0x7f070090 +int dimen disabled_alpha_material_dark 0x7f070091 +int dimen disabled_alpha_material_light 0x7f070092 +int dimen dp_0 0x7f070093 +int dimen dp_0_1 0x7f070094 +int dimen dp_0_5 0x7f070095 +int dimen dp_1 0x7f070096 +int dimen dp_10 0x7f070097 +int dimen dp_100 0x7f070098 +int dimen dp_1000 0x7f070099 +int dimen dp_101 0x7f07009a +int dimen dp_102 0x7f07009b +int dimen dp_103 0x7f07009c +int dimen dp_104 0x7f07009d +int dimen dp_104_5 0x7f07009e +int dimen dp_105 0x7f07009f +int dimen dp_106 0x7f0700a0 +int dimen dp_107 0x7f0700a1 +int dimen dp_108 0x7f0700a2 +int dimen dp_109 0x7f0700a3 +int dimen dp_11 0x7f0700a4 +int dimen dp_110 0x7f0700a5 +int dimen dp_111 0x7f0700a6 +int dimen dp_112 0x7f0700a7 +int dimen dp_113 0x7f0700a8 +int dimen dp_114 0x7f0700a9 +int dimen dp_115 0x7f0700aa +int dimen dp_116 0x7f0700ab +int dimen dp_117 0x7f0700ac +int dimen dp_118 0x7f0700ad +int dimen dp_119 0x7f0700ae +int dimen dp_12 0x7f0700af +int dimen dp_120 0x7f0700b0 +int dimen dp_121 0x7f0700b1 +int dimen dp_122 0x7f0700b2 +int dimen dp_123 0x7f0700b3 +int dimen dp_124 0x7f0700b4 +int dimen dp_125 0x7f0700b5 +int dimen dp_126 0x7f0700b6 +int dimen dp_127 0x7f0700b7 +int dimen dp_128 0x7f0700b8 +int dimen dp_129 0x7f0700b9 +int dimen dp_13 0x7f0700ba +int dimen dp_130 0x7f0700bb +int dimen dp_1300 0x7f0700bc +int dimen dp_131 0x7f0700bd +int dimen dp_132 0x7f0700be +int dimen dp_133 0x7f0700bf +int dimen dp_134 0x7f0700c0 +int dimen dp_134_5 0x7f0700c1 +int dimen dp_135 0x7f0700c2 +int dimen dp_136 0x7f0700c3 +int dimen dp_137 0x7f0700c4 +int dimen dp_138 0x7f0700c5 +int dimen dp_139 0x7f0700c6 +int dimen dp_14 0x7f0700c7 +int dimen dp_140 0x7f0700c8 +int dimen dp_141 0x7f0700c9 +int dimen dp_142 0x7f0700ca +int dimen dp_143 0x7f0700cb +int dimen dp_144 0x7f0700cc +int dimen dp_145 0x7f0700cd +int dimen dp_146 0x7f0700ce +int dimen dp_147 0x7f0700cf +int dimen dp_148 0x7f0700d0 +int dimen dp_149 0x7f0700d1 +int dimen dp_15 0x7f0700d2 +int dimen dp_150 0x7f0700d3 +int dimen dp_151 0x7f0700d4 +int dimen dp_152 0x7f0700d5 +int dimen dp_153 0x7f0700d6 +int dimen dp_154 0x7f0700d7 +int dimen dp_155 0x7f0700d8 +int dimen dp_156 0x7f0700d9 +int dimen dp_157 0x7f0700da +int dimen dp_158 0x7f0700db +int dimen dp_159 0x7f0700dc +int dimen dp_16 0x7f0700dd +int dimen dp_160 0x7f0700de +int dimen dp_161 0x7f0700df +int dimen dp_162 0x7f0700e0 +int dimen dp_163 0x7f0700e1 +int dimen dp_164 0x7f0700e2 +int dimen dp_165 0x7f0700e3 +int dimen dp_166 0x7f0700e4 +int dimen dp_167 0x7f0700e5 +int dimen dp_168 0x7f0700e6 +int dimen dp_169 0x7f0700e7 +int dimen dp_17 0x7f0700e8 +int dimen dp_170 0x7f0700e9 +int dimen dp_171 0x7f0700ea +int dimen dp_172 0x7f0700eb +int dimen dp_173 0x7f0700ec +int dimen dp_174 0x7f0700ed +int dimen dp_175 0x7f0700ee +int dimen dp_176 0x7f0700ef +int dimen dp_177 0x7f0700f0 +int dimen dp_178 0x7f0700f1 +int dimen dp_179 0x7f0700f2 +int dimen dp_18 0x7f0700f3 +int dimen dp_180 0x7f0700f4 +int dimen dp_181 0x7f0700f5 +int dimen dp_182 0x7f0700f6 +int dimen dp_183 0x7f0700f7 +int dimen dp_184 0x7f0700f8 +int dimen dp_185 0x7f0700f9 +int dimen dp_186 0x7f0700fa +int dimen dp_187 0x7f0700fb +int dimen dp_188 0x7f0700fc +int dimen dp_189 0x7f0700fd +int dimen dp_19 0x7f0700fe +int dimen dp_190 0x7f0700ff +int dimen dp_191 0x7f070100 +int dimen dp_191_25 0x7f070101 +int dimen dp_192 0x7f070102 +int dimen dp_1920 0x7f070103 +int dimen dp_193 0x7f070104 +int dimen dp_194 0x7f070105 +int dimen dp_195 0x7f070106 +int dimen dp_196 0x7f070107 +int dimen dp_197 0x7f070108 +int dimen dp_198 0x7f070109 +int dimen dp_199 0x7f07010a +int dimen dp_1_5 0x7f07010b +int dimen dp_2 0x7f07010c +int dimen dp_20 0x7f07010d +int dimen dp_200 0x7f07010e +int dimen dp_201 0x7f07010f +int dimen dp_202 0x7f070110 +int dimen dp_203 0x7f070111 +int dimen dp_204 0x7f070112 +int dimen dp_205 0x7f070113 +int dimen dp_206 0x7f070114 +int dimen dp_207 0x7f070115 +int dimen dp_208 0x7f070116 +int dimen dp_209 0x7f070117 +int dimen dp_21 0x7f070118 +int dimen dp_210 0x7f070119 +int dimen dp_211 0x7f07011a +int dimen dp_212 0x7f07011b +int dimen dp_213 0x7f07011c +int dimen dp_214 0x7f07011d +int dimen dp_215 0x7f07011e +int dimen dp_216 0x7f07011f +int dimen dp_217 0x7f070120 +int dimen dp_218 0x7f070121 +int dimen dp_219 0x7f070122 +int dimen dp_22 0x7f070123 +int dimen dp_220 0x7f070124 +int dimen dp_221 0x7f070125 +int dimen dp_222 0x7f070126 +int dimen dp_223 0x7f070127 +int dimen dp_224 0x7f070128 +int dimen dp_225 0x7f070129 +int dimen dp_226 0x7f07012a +int dimen dp_227 0x7f07012b +int dimen dp_228 0x7f07012c +int dimen dp_229 0x7f07012d +int dimen dp_23 0x7f07012e +int dimen dp_230 0x7f07012f +int dimen dp_231 0x7f070130 +int dimen dp_232 0x7f070131 +int dimen dp_233 0x7f070132 +int dimen dp_234 0x7f070133 +int dimen dp_235 0x7f070134 +int dimen dp_236 0x7f070135 +int dimen dp_237 0x7f070136 +int dimen dp_238 0x7f070137 +int dimen dp_239 0x7f070138 +int dimen dp_24 0x7f070139 +int dimen dp_240 0x7f07013a +int dimen dp_241 0x7f07013b +int dimen dp_242 0x7f07013c +int dimen dp_243 0x7f07013d +int dimen dp_244 0x7f07013e +int dimen dp_245 0x7f07013f +int dimen dp_246 0x7f070140 +int dimen dp_247 0x7f070141 +int dimen dp_248 0x7f070142 +int dimen dp_249 0x7f070143 +int dimen dp_25 0x7f070144 +int dimen dp_250 0x7f070145 +int dimen dp_251 0x7f070146 +int dimen dp_252 0x7f070147 +int dimen dp_253 0x7f070148 +int dimen dp_254 0x7f070149 +int dimen dp_255 0x7f07014a +int dimen dp_256 0x7f07014b +int dimen dp_257 0x7f07014c +int dimen dp_258 0x7f07014d +int dimen dp_259 0x7f07014e +int dimen dp_26 0x7f07014f +int dimen dp_260 0x7f070150 +int dimen dp_261 0x7f070151 +int dimen dp_262 0x7f070152 +int dimen dp_263 0x7f070153 +int dimen dp_264 0x7f070154 +int dimen dp_265 0x7f070155 +int dimen dp_266 0x7f070156 +int dimen dp_267 0x7f070157 +int dimen dp_268 0x7f070158 +int dimen dp_269 0x7f070159 +int dimen dp_27 0x7f07015a +int dimen dp_270 0x7f07015b +int dimen dp_271 0x7f07015c +int dimen dp_272 0x7f07015d +int dimen dp_273 0x7f07015e +int dimen dp_274 0x7f07015f +int dimen dp_275 0x7f070160 +int dimen dp_276 0x7f070161 +int dimen dp_277 0x7f070162 +int dimen dp_278 0x7f070163 +int dimen dp_279 0x7f070164 +int dimen dp_28 0x7f070165 +int dimen dp_280 0x7f070166 +int dimen dp_281 0x7f070167 +int dimen dp_282 0x7f070168 +int dimen dp_283 0x7f070169 +int dimen dp_284 0x7f07016a +int dimen dp_285 0x7f07016b +int dimen dp_286 0x7f07016c +int dimen dp_287 0x7f07016d +int dimen dp_288 0x7f07016e +int dimen dp_289 0x7f07016f +int dimen dp_29 0x7f070170 +int dimen dp_290 0x7f070171 +int dimen dp_291 0x7f070172 +int dimen dp_292 0x7f070173 +int dimen dp_293 0x7f070174 +int dimen dp_294 0x7f070175 +int dimen dp_295 0x7f070176 +int dimen dp_296 0x7f070177 +int dimen dp_297 0x7f070178 +int dimen dp_298 0x7f070179 +int dimen dp_299 0x7f07017a +int dimen dp_2_5 0x7f07017b +int dimen dp_3 0x7f07017c +int dimen dp_30 0x7f07017d +int dimen dp_300 0x7f07017e +int dimen dp_301 0x7f07017f +int dimen dp_302 0x7f070180 +int dimen dp_303 0x7f070181 +int dimen dp_304 0x7f070182 +int dimen dp_305 0x7f070183 +int dimen dp_306 0x7f070184 +int dimen dp_307 0x7f070185 +int dimen dp_308 0x7f070186 +int dimen dp_309 0x7f070187 +int dimen dp_31 0x7f070188 +int dimen dp_310 0x7f070189 +int dimen dp_311 0x7f07018a +int dimen dp_312 0x7f07018b +int dimen dp_313 0x7f07018c +int dimen dp_314 0x7f07018d +int dimen dp_315 0x7f07018e +int dimen dp_316 0x7f07018f +int dimen dp_317 0x7f070190 +int dimen dp_318 0x7f070191 +int dimen dp_319 0x7f070192 +int dimen dp_32 0x7f070193 +int dimen dp_320 0x7f070194 +int dimen dp_321 0x7f070195 +int dimen dp_322 0x7f070196 +int dimen dp_323 0x7f070197 +int dimen dp_324 0x7f070198 +int dimen dp_325 0x7f070199 +int dimen dp_326 0x7f07019a +int dimen dp_327 0x7f07019b +int dimen dp_328 0x7f07019c +int dimen dp_329 0x7f07019d +int dimen dp_33 0x7f07019e +int dimen dp_330 0x7f07019f +int dimen dp_331 0x7f0701a0 +int dimen dp_332 0x7f0701a1 +int dimen dp_333 0x7f0701a2 +int dimen dp_334 0x7f0701a3 +int dimen dp_335 0x7f0701a4 +int dimen dp_336 0x7f0701a5 +int dimen dp_337 0x7f0701a6 +int dimen dp_338 0x7f0701a7 +int dimen dp_339 0x7f0701a8 +int dimen dp_34 0x7f0701a9 +int dimen dp_340 0x7f0701aa +int dimen dp_341 0x7f0701ab +int dimen dp_342 0x7f0701ac +int dimen dp_343 0x7f0701ad +int dimen dp_344 0x7f0701ae +int dimen dp_345 0x7f0701af +int dimen dp_346 0x7f0701b0 +int dimen dp_347 0x7f0701b1 +int dimen dp_348 0x7f0701b2 +int dimen dp_349 0x7f0701b3 +int dimen dp_35 0x7f0701b4 +int dimen dp_350 0x7f0701b5 +int dimen dp_351 0x7f0701b6 +int dimen dp_352 0x7f0701b7 +int dimen dp_353 0x7f0701b8 +int dimen dp_354 0x7f0701b9 +int dimen dp_355 0x7f0701ba +int dimen dp_356 0x7f0701bb +int dimen dp_357 0x7f0701bc +int dimen dp_358 0x7f0701bd +int dimen dp_359 0x7f0701be +int dimen dp_36 0x7f0701bf +int dimen dp_366 0x7f0701c0 +int dimen dp_367 0x7f0701c1 +int dimen dp_368 0x7f0701c2 +int dimen dp_369 0x7f0701c3 +int dimen dp_37 0x7f0701c4 +int dimen dp_370 0x7f0701c5 +int dimen dp_371 0x7f0701c6 +int dimen dp_372 0x7f0701c7 +int dimen dp_373 0x7f0701c8 +int dimen dp_374 0x7f0701c9 +int dimen dp_375 0x7f0701ca +int dimen dp_376 0x7f0701cb +int dimen dp_377 0x7f0701cc +int dimen dp_378 0x7f0701cd +int dimen dp_379 0x7f0701ce +int dimen dp_38 0x7f0701cf +int dimen dp_380 0x7f0701d0 +int dimen dp_381 0x7f0701d1 +int dimen dp_382 0x7f0701d2 +int dimen dp_383 0x7f0701d3 +int dimen dp_384 0x7f0701d4 +int dimen dp_385 0x7f0701d5 +int dimen dp_386 0x7f0701d6 +int dimen dp_387 0x7f0701d7 +int dimen dp_388 0x7f0701d8 +int dimen dp_389 0x7f0701d9 +int dimen dp_39 0x7f0701da +int dimen dp_390 0x7f0701db +int dimen dp_391 0x7f0701dc +int dimen dp_392 0x7f0701dd +int dimen dp_393 0x7f0701de +int dimen dp_394 0x7f0701df +int dimen dp_395 0x7f0701e0 +int dimen dp_396 0x7f0701e1 +int dimen dp_397 0x7f0701e2 +int dimen dp_398 0x7f0701e3 +int dimen dp_399 0x7f0701e4 +int dimen dp_3_5 0x7f0701e5 +int dimen dp_4 0x7f0701e6 +int dimen dp_40 0x7f0701e7 +int dimen dp_400 0x7f0701e8 +int dimen dp_401 0x7f0701e9 +int dimen dp_402 0x7f0701ea +int dimen dp_403 0x7f0701eb +int dimen dp_404 0x7f0701ec +int dimen dp_405 0x7f0701ed +int dimen dp_406 0x7f0701ee +int dimen dp_407 0x7f0701ef +int dimen dp_408 0x7f0701f0 +int dimen dp_409 0x7f0701f1 +int dimen dp_41 0x7f0701f2 +int dimen dp_410 0x7f0701f3 +int dimen dp_411 0x7f0701f4 +int dimen dp_412 0x7f0701f5 +int dimen dp_413 0x7f0701f6 +int dimen dp_414 0x7f0701f7 +int dimen dp_415 0x7f0701f8 +int dimen dp_416 0x7f0701f9 +int dimen dp_417 0x7f0701fa +int dimen dp_418 0x7f0701fb +int dimen dp_419 0x7f0701fc +int dimen dp_42 0x7f0701fd +int dimen dp_420 0x7f0701fe +int dimen dp_421 0x7f0701ff +int dimen dp_422 0x7f070200 +int dimen dp_423 0x7f070201 +int dimen dp_424 0x7f070202 +int dimen dp_425 0x7f070203 +int dimen dp_426 0x7f070204 +int dimen dp_427 0x7f070205 +int dimen dp_428 0x7f070206 +int dimen dp_429 0x7f070207 +int dimen dp_43 0x7f070208 +int dimen dp_430 0x7f070209 +int dimen dp_431 0x7f07020a +int dimen dp_432 0x7f07020b +int dimen dp_433 0x7f07020c +int dimen dp_434 0x7f07020d +int dimen dp_435 0x7f07020e +int dimen dp_436 0x7f07020f +int dimen dp_437 0x7f070210 +int dimen dp_438 0x7f070211 +int dimen dp_439 0x7f070212 +int dimen dp_44 0x7f070213 +int dimen dp_440 0x7f070214 +int dimen dp_441 0x7f070215 +int dimen dp_442 0x7f070216 +int dimen dp_443 0x7f070217 +int dimen dp_444 0x7f070218 +int dimen dp_445 0x7f070219 +int dimen dp_446 0x7f07021a +int dimen dp_447 0x7f07021b +int dimen dp_448 0x7f07021c +int dimen dp_449 0x7f07021d +int dimen dp_45 0x7f07021e +int dimen dp_450 0x7f07021f +int dimen dp_451 0x7f070220 +int dimen dp_452 0x7f070221 +int dimen dp_453 0x7f070222 +int dimen dp_454 0x7f070223 +int dimen dp_455 0x7f070224 +int dimen dp_456 0x7f070225 +int dimen dp_457 0x7f070226 +int dimen dp_458 0x7f070227 +int dimen dp_459 0x7f070228 +int dimen dp_46 0x7f070229 +int dimen dp_460 0x7f07022a +int dimen dp_461 0x7f07022b +int dimen dp_462 0x7f07022c +int dimen dp_463 0x7f07022d +int dimen dp_464 0x7f07022e +int dimen dp_465 0x7f07022f +int dimen dp_466 0x7f070230 +int dimen dp_467 0x7f070231 +int dimen dp_468 0x7f070232 +int dimen dp_469 0x7f070233 +int dimen dp_47 0x7f070234 +int dimen dp_470 0x7f070235 +int dimen dp_471 0x7f070236 +int dimen dp_472 0x7f070237 +int dimen dp_473 0x7f070238 +int dimen dp_474 0x7f070239 +int dimen dp_475 0x7f07023a +int dimen dp_476 0x7f07023b +int dimen dp_477 0x7f07023c +int dimen dp_478 0x7f07023d +int dimen dp_479 0x7f07023e +int dimen dp_48 0x7f07023f +int dimen dp_480 0x7f070240 +int dimen dp_481 0x7f070241 +int dimen dp_482 0x7f070242 +int dimen dp_483 0x7f070243 +int dimen dp_484 0x7f070244 +int dimen dp_485 0x7f070245 +int dimen dp_486 0x7f070246 +int dimen dp_487 0x7f070247 +int dimen dp_488 0x7f070248 +int dimen dp_489 0x7f070249 +int dimen dp_49 0x7f07024a +int dimen dp_490 0x7f07024b +int dimen dp_491 0x7f07024c +int dimen dp_492 0x7f07024d +int dimen dp_493 0x7f07024e +int dimen dp_494 0x7f07024f +int dimen dp_495 0x7f070250 +int dimen dp_496 0x7f070251 +int dimen dp_497 0x7f070252 +int dimen dp_498 0x7f070253 +int dimen dp_499 0x7f070254 +int dimen dp_4_5 0x7f070255 +int dimen dp_5 0x7f070256 +int dimen dp_50 0x7f070257 +int dimen dp_500 0x7f070258 +int dimen dp_501 0x7f070259 +int dimen dp_502 0x7f07025a +int dimen dp_503 0x7f07025b +int dimen dp_504 0x7f07025c +int dimen dp_505 0x7f07025d +int dimen dp_506 0x7f07025e +int dimen dp_507 0x7f07025f +int dimen dp_508 0x7f070260 +int dimen dp_509 0x7f070261 +int dimen dp_51 0x7f070262 +int dimen dp_510 0x7f070263 +int dimen dp_511 0x7f070264 +int dimen dp_512 0x7f070265 +int dimen dp_513 0x7f070266 +int dimen dp_514 0x7f070267 +int dimen dp_515 0x7f070268 +int dimen dp_516 0x7f070269 +int dimen dp_517 0x7f07026a +int dimen dp_518 0x7f07026b +int dimen dp_519 0x7f07026c +int dimen dp_52 0x7f07026d +int dimen dp_520 0x7f07026e +int dimen dp_521 0x7f07026f +int dimen dp_522 0x7f070270 +int dimen dp_523 0x7f070271 +int dimen dp_524 0x7f070272 +int dimen dp_525 0x7f070273 +int dimen dp_526 0x7f070274 +int dimen dp_527 0x7f070275 +int dimen dp_528 0x7f070276 +int dimen dp_529 0x7f070277 +int dimen dp_53 0x7f070278 +int dimen dp_530 0x7f070279 +int dimen dp_531 0x7f07027a +int dimen dp_532 0x7f07027b +int dimen dp_533 0x7f07027c +int dimen dp_534 0x7f07027d +int dimen dp_535 0x7f07027e +int dimen dp_536 0x7f07027f +int dimen dp_537 0x7f070280 +int dimen dp_538 0x7f070281 +int dimen dp_539 0x7f070282 +int dimen dp_54 0x7f070283 +int dimen dp_540 0x7f070284 +int dimen dp_541 0x7f070285 +int dimen dp_542 0x7f070286 +int dimen dp_543 0x7f070287 +int dimen dp_544 0x7f070288 +int dimen dp_545 0x7f070289 +int dimen dp_546 0x7f07028a +int dimen dp_547 0x7f07028b +int dimen dp_548 0x7f07028c +int dimen dp_549 0x7f07028d +int dimen dp_55 0x7f07028e +int dimen dp_550 0x7f07028f +int dimen dp_551 0x7f070290 +int dimen dp_552 0x7f070291 +int dimen dp_553 0x7f070292 +int dimen dp_554 0x7f070293 +int dimen dp_555 0x7f070294 +int dimen dp_556 0x7f070295 +int dimen dp_557 0x7f070296 +int dimen dp_558 0x7f070297 +int dimen dp_559 0x7f070298 +int dimen dp_56 0x7f070299 +int dimen dp_560 0x7f07029a +int dimen dp_561 0x7f07029b +int dimen dp_562 0x7f07029c +int dimen dp_563 0x7f07029d +int dimen dp_564 0x7f07029e +int dimen dp_565 0x7f07029f +int dimen dp_566 0x7f0702a0 +int dimen dp_567 0x7f0702a1 +int dimen dp_568 0x7f0702a2 +int dimen dp_569 0x7f0702a3 +int dimen dp_57 0x7f0702a4 +int dimen dp_570 0x7f0702a5 +int dimen dp_571 0x7f0702a6 +int dimen dp_572 0x7f0702a7 +int dimen dp_573 0x7f0702a8 +int dimen dp_574 0x7f0702a9 +int dimen dp_575 0x7f0702aa +int dimen dp_576 0x7f0702ab +int dimen dp_577 0x7f0702ac +int dimen dp_578 0x7f0702ad +int dimen dp_579 0x7f0702ae +int dimen dp_58 0x7f0702af +int dimen dp_580 0x7f0702b0 +int dimen dp_581 0x7f0702b1 +int dimen dp_582 0x7f0702b2 +int dimen dp_583 0x7f0702b3 +int dimen dp_584 0x7f0702b4 +int dimen dp_585 0x7f0702b5 +int dimen dp_586 0x7f0702b6 +int dimen dp_587 0x7f0702b7 +int dimen dp_588 0x7f0702b8 +int dimen dp_589 0x7f0702b9 +int dimen dp_59 0x7f0702ba +int dimen dp_590 0x7f0702bb +int dimen dp_591 0x7f0702bc +int dimen dp_592 0x7f0702bd +int dimen dp_593 0x7f0702be +int dimen dp_594 0x7f0702bf +int dimen dp_595 0x7f0702c0 +int dimen dp_596 0x7f0702c1 +int dimen dp_597 0x7f0702c2 +int dimen dp_598 0x7f0702c3 +int dimen dp_599 0x7f0702c4 +int dimen dp_6 0x7f0702c5 +int dimen dp_60 0x7f0702c6 +int dimen dp_600 0x7f0702c7 +int dimen dp_601 0x7f0702c8 +int dimen dp_602 0x7f0702c9 +int dimen dp_603 0x7f0702ca +int dimen dp_604 0x7f0702cb +int dimen dp_605 0x7f0702cc +int dimen dp_606 0x7f0702cd +int dimen dp_607 0x7f0702ce +int dimen dp_608 0x7f0702cf +int dimen dp_609 0x7f0702d0 +int dimen dp_61 0x7f0702d1 +int dimen dp_610 0x7f0702d2 +int dimen dp_611 0x7f0702d3 +int dimen dp_612 0x7f0702d4 +int dimen dp_613 0x7f0702d5 +int dimen dp_614 0x7f0702d6 +int dimen dp_615 0x7f0702d7 +int dimen dp_616 0x7f0702d8 +int dimen dp_617 0x7f0702d9 +int dimen dp_618 0x7f0702da +int dimen dp_619 0x7f0702db +int dimen dp_62 0x7f0702dc +int dimen dp_620 0x7f0702dd +int dimen dp_621 0x7f0702de +int dimen dp_622 0x7f0702df +int dimen dp_623 0x7f0702e0 +int dimen dp_624 0x7f0702e1 +int dimen dp_625 0x7f0702e2 +int dimen dp_626 0x7f0702e3 +int dimen dp_627 0x7f0702e4 +int dimen dp_628 0x7f0702e5 +int dimen dp_629 0x7f0702e6 +int dimen dp_63 0x7f0702e7 +int dimen dp_630 0x7f0702e8 +int dimen dp_631 0x7f0702e9 +int dimen dp_632 0x7f0702ea +int dimen dp_633 0x7f0702eb +int dimen dp_634 0x7f0702ec +int dimen dp_635 0x7f0702ed +int dimen dp_636 0x7f0702ee +int dimen dp_637 0x7f0702ef +int dimen dp_638 0x7f0702f0 +int dimen dp_639 0x7f0702f1 +int dimen dp_64 0x7f0702f2 +int dimen dp_640 0x7f0702f3 +int dimen dp_641 0x7f0702f4 +int dimen dp_642 0x7f0702f5 +int dimen dp_643 0x7f0702f6 +int dimen dp_644 0x7f0702f7 +int dimen dp_645 0x7f0702f8 +int dimen dp_646 0x7f0702f9 +int dimen dp_647 0x7f0702fa +int dimen dp_648 0x7f0702fb +int dimen dp_649 0x7f0702fc +int dimen dp_65 0x7f0702fd +int dimen dp_650 0x7f0702fe +int dimen dp_651 0x7f0702ff +int dimen dp_652 0x7f070300 +int dimen dp_653 0x7f070301 +int dimen dp_654 0x7f070302 +int dimen dp_655 0x7f070303 +int dimen dp_656 0x7f070304 +int dimen dp_657 0x7f070305 +int dimen dp_658 0x7f070306 +int dimen dp_659 0x7f070307 +int dimen dp_66 0x7f070308 +int dimen dp_660 0x7f070309 +int dimen dp_661 0x7f07030a +int dimen dp_662 0x7f07030b +int dimen dp_663 0x7f07030c +int dimen dp_664 0x7f07030d +int dimen dp_665 0x7f07030e +int dimen dp_666 0x7f07030f +int dimen dp_667 0x7f070310 +int dimen dp_668 0x7f070311 +int dimen dp_669 0x7f070312 +int dimen dp_67 0x7f070313 +int dimen dp_670 0x7f070314 +int dimen dp_671 0x7f070315 +int dimen dp_672 0x7f070316 +int dimen dp_673 0x7f070317 +int dimen dp_674 0x7f070318 +int dimen dp_675 0x7f070319 +int dimen dp_676 0x7f07031a +int dimen dp_677 0x7f07031b +int dimen dp_678 0x7f07031c +int dimen dp_679 0x7f07031d +int dimen dp_68 0x7f07031e +int dimen dp_680 0x7f07031f +int dimen dp_681 0x7f070320 +int dimen dp_682 0x7f070321 +int dimen dp_683 0x7f070322 +int dimen dp_684 0x7f070323 +int dimen dp_685 0x7f070324 +int dimen dp_686 0x7f070325 +int dimen dp_687 0x7f070326 +int dimen dp_688 0x7f070327 +int dimen dp_689 0x7f070328 +int dimen dp_69 0x7f070329 +int dimen dp_690 0x7f07032a +int dimen dp_691 0x7f07032b +int dimen dp_692 0x7f07032c +int dimen dp_693 0x7f07032d +int dimen dp_694 0x7f07032e +int dimen dp_695 0x7f07032f +int dimen dp_696 0x7f070330 +int dimen dp_697 0x7f070331 +int dimen dp_698 0x7f070332 +int dimen dp_699 0x7f070333 +int dimen dp_7 0x7f070334 +int dimen dp_70 0x7f070335 +int dimen dp_700 0x7f070336 +int dimen dp_701 0x7f070337 +int dimen dp_702 0x7f070338 +int dimen dp_703 0x7f070339 +int dimen dp_704 0x7f07033a +int dimen dp_705 0x7f07033b +int dimen dp_706 0x7f07033c +int dimen dp_707 0x7f07033d +int dimen dp_708 0x7f07033e +int dimen dp_709 0x7f07033f +int dimen dp_71 0x7f070340 +int dimen dp_710 0x7f070341 +int dimen dp_711 0x7f070342 +int dimen dp_712 0x7f070343 +int dimen dp_713 0x7f070344 +int dimen dp_714 0x7f070345 +int dimen dp_715 0x7f070346 +int dimen dp_716 0x7f070347 +int dimen dp_717 0x7f070348 +int dimen dp_718 0x7f070349 +int dimen dp_719 0x7f07034a +int dimen dp_72 0x7f07034b +int dimen dp_720 0x7f07034c +int dimen dp_721 0x7f07034d +int dimen dp_722 0x7f07034e +int dimen dp_723 0x7f07034f +int dimen dp_724 0x7f070350 +int dimen dp_725 0x7f070351 +int dimen dp_726 0x7f070352 +int dimen dp_727 0x7f070353 +int dimen dp_728 0x7f070354 +int dimen dp_729 0x7f070355 +int dimen dp_73 0x7f070356 +int dimen dp_730 0x7f070357 +int dimen dp_731 0x7f070358 +int dimen dp_732 0x7f070359 +int dimen dp_733 0x7f07035a +int dimen dp_734 0x7f07035b +int dimen dp_735 0x7f07035c +int dimen dp_736 0x7f07035d +int dimen dp_737 0x7f07035e +int dimen dp_738 0x7f07035f +int dimen dp_739 0x7f070360 +int dimen dp_74 0x7f070361 +int dimen dp_740 0x7f070362 +int dimen dp_741 0x7f070363 +int dimen dp_742 0x7f070364 +int dimen dp_743 0x7f070365 +int dimen dp_744 0x7f070366 +int dimen dp_745 0x7f070367 +int dimen dp_746 0x7f070368 +int dimen dp_747 0x7f070369 +int dimen dp_748 0x7f07036a +int dimen dp_749 0x7f07036b +int dimen dp_75 0x7f07036c +int dimen dp_750 0x7f07036d +int dimen dp_751 0x7f07036e +int dimen dp_752 0x7f07036f +int dimen dp_753 0x7f070370 +int dimen dp_754 0x7f070371 +int dimen dp_755 0x7f070372 +int dimen dp_756 0x7f070373 +int dimen dp_757 0x7f070374 +int dimen dp_758 0x7f070375 +int dimen dp_759 0x7f070376 +int dimen dp_76 0x7f070377 +int dimen dp_760 0x7f070378 +int dimen dp_761 0x7f070379 +int dimen dp_762 0x7f07037a +int dimen dp_763 0x7f07037b +int dimen dp_764 0x7f07037c +int dimen dp_765 0x7f07037d +int dimen dp_766 0x7f07037e +int dimen dp_767 0x7f07037f +int dimen dp_768 0x7f070380 +int dimen dp_769 0x7f070381 +int dimen dp_77 0x7f070382 +int dimen dp_770 0x7f070383 +int dimen dp_771 0x7f070384 +int dimen dp_772 0x7f070385 +int dimen dp_773 0x7f070386 +int dimen dp_774 0x7f070387 +int dimen dp_775 0x7f070388 +int dimen dp_776 0x7f070389 +int dimen dp_777 0x7f07038a +int dimen dp_778 0x7f07038b +int dimen dp_779 0x7f07038c +int dimen dp_78 0x7f07038d +int dimen dp_780 0x7f07038e +int dimen dp_781 0x7f07038f +int dimen dp_782 0x7f070390 +int dimen dp_783 0x7f070391 +int dimen dp_784 0x7f070392 +int dimen dp_785 0x7f070393 +int dimen dp_786 0x7f070394 +int dimen dp_787 0x7f070395 +int dimen dp_788 0x7f070396 +int dimen dp_789 0x7f070397 +int dimen dp_79 0x7f070398 +int dimen dp_790 0x7f070399 +int dimen dp_791 0x7f07039a +int dimen dp_792 0x7f07039b +int dimen dp_793 0x7f07039c +int dimen dp_794 0x7f07039d +int dimen dp_795 0x7f07039e +int dimen dp_796 0x7f07039f +int dimen dp_797 0x7f0703a0 +int dimen dp_798 0x7f0703a1 +int dimen dp_799 0x7f0703a2 +int dimen dp_7_5 0x7f0703a3 +int dimen dp_8 0x7f0703a4 +int dimen dp_80 0x7f0703a5 +int dimen dp_800 0x7f0703a6 +int dimen dp_801 0x7f0703a7 +int dimen dp_802 0x7f0703a8 +int dimen dp_803 0x7f0703a9 +int dimen dp_804 0x7f0703aa +int dimen dp_805 0x7f0703ab +int dimen dp_806 0x7f0703ac +int dimen dp_807 0x7f0703ad +int dimen dp_808 0x7f0703ae +int dimen dp_809 0x7f0703af +int dimen dp_81 0x7f0703b0 +int dimen dp_810 0x7f0703b1 +int dimen dp_811 0x7f0703b2 +int dimen dp_812 0x7f0703b3 +int dimen dp_813 0x7f0703b4 +int dimen dp_814 0x7f0703b5 +int dimen dp_815 0x7f0703b6 +int dimen dp_816 0x7f0703b7 +int dimen dp_817 0x7f0703b8 +int dimen dp_818 0x7f0703b9 +int dimen dp_819 0x7f0703ba +int dimen dp_82 0x7f0703bb +int dimen dp_820 0x7f0703bc +int dimen dp_821 0x7f0703bd +int dimen dp_822 0x7f0703be +int dimen dp_823 0x7f0703bf +int dimen dp_824 0x7f0703c0 +int dimen dp_825 0x7f0703c1 +int dimen dp_826 0x7f0703c2 +int dimen dp_827 0x7f0703c3 +int dimen dp_828 0x7f0703c4 +int dimen dp_829 0x7f0703c5 +int dimen dp_83 0x7f0703c6 +int dimen dp_830 0x7f0703c7 +int dimen dp_831 0x7f0703c8 +int dimen dp_832 0x7f0703c9 +int dimen dp_833 0x7f0703ca +int dimen dp_834 0x7f0703cb +int dimen dp_835 0x7f0703cc +int dimen dp_836 0x7f0703cd +int dimen dp_837 0x7f0703ce +int dimen dp_838 0x7f0703cf +int dimen dp_839 0x7f0703d0 +int dimen dp_84 0x7f0703d1 +int dimen dp_840 0x7f0703d2 +int dimen dp_841 0x7f0703d3 +int dimen dp_842 0x7f0703d4 +int dimen dp_843 0x7f0703d5 +int dimen dp_844 0x7f0703d6 +int dimen dp_845 0x7f0703d7 +int dimen dp_846 0x7f0703d8 +int dimen dp_847 0x7f0703d9 +int dimen dp_848 0x7f0703da +int dimen dp_849 0x7f0703db +int dimen dp_85 0x7f0703dc +int dimen dp_850 0x7f0703dd +int dimen dp_851 0x7f0703de +int dimen dp_852 0x7f0703df +int dimen dp_853 0x7f0703e0 +int dimen dp_854 0x7f0703e1 +int dimen dp_855 0x7f0703e2 +int dimen dp_856 0x7f0703e3 +int dimen dp_857 0x7f0703e4 +int dimen dp_858 0x7f0703e5 +int dimen dp_859 0x7f0703e6 +int dimen dp_86 0x7f0703e7 +int dimen dp_860 0x7f0703e8 +int dimen dp_861 0x7f0703e9 +int dimen dp_862 0x7f0703ea +int dimen dp_863 0x7f0703eb +int dimen dp_864 0x7f0703ec +int dimen dp_865 0x7f0703ed +int dimen dp_866 0x7f0703ee +int dimen dp_867 0x7f0703ef +int dimen dp_868 0x7f0703f0 +int dimen dp_869 0x7f0703f1 +int dimen dp_87 0x7f0703f2 +int dimen dp_870 0x7f0703f3 +int dimen dp_871 0x7f0703f4 +int dimen dp_872 0x7f0703f5 +int dimen dp_873 0x7f0703f6 +int dimen dp_874 0x7f0703f7 +int dimen dp_875 0x7f0703f8 +int dimen dp_876 0x7f0703f9 +int dimen dp_877 0x7f0703fa +int dimen dp_878 0x7f0703fb +int dimen dp_879 0x7f0703fc +int dimen dp_88 0x7f0703fd +int dimen dp_880 0x7f0703fe +int dimen dp_881 0x7f0703ff +int dimen dp_882 0x7f070400 +int dimen dp_883 0x7f070401 +int dimen dp_884 0x7f070402 +int dimen dp_885 0x7f070403 +int dimen dp_886 0x7f070404 +int dimen dp_887 0x7f070405 +int dimen dp_888 0x7f070406 +int dimen dp_889 0x7f070407 +int dimen dp_89 0x7f070408 +int dimen dp_890 0x7f070409 +int dimen dp_891 0x7f07040a +int dimen dp_892 0x7f07040b +int dimen dp_893 0x7f07040c +int dimen dp_894 0x7f07040d +int dimen dp_895 0x7f07040e +int dimen dp_896 0x7f07040f +int dimen dp_897 0x7f070410 +int dimen dp_898 0x7f070411 +int dimen dp_899 0x7f070412 +int dimen dp_9 0x7f070413 +int dimen dp_90 0x7f070414 +int dimen dp_900 0x7f070415 +int dimen dp_901 0x7f070416 +int dimen dp_902 0x7f070417 +int dimen dp_903 0x7f070418 +int dimen dp_904 0x7f070419 +int dimen dp_905 0x7f07041a +int dimen dp_906 0x7f07041b +int dimen dp_907 0x7f07041c +int dimen dp_908 0x7f07041d +int dimen dp_909 0x7f07041e +int dimen dp_91 0x7f07041f +int dimen dp_910 0x7f070420 +int dimen dp_911 0x7f070421 +int dimen dp_912 0x7f070422 +int dimen dp_913 0x7f070423 +int dimen dp_914 0x7f070424 +int dimen dp_915 0x7f070425 +int dimen dp_916 0x7f070426 +int dimen dp_917 0x7f070427 +int dimen dp_918 0x7f070428 +int dimen dp_919 0x7f070429 +int dimen dp_92 0x7f07042a +int dimen dp_920 0x7f07042b +int dimen dp_921 0x7f07042c +int dimen dp_922 0x7f07042d +int dimen dp_923 0x7f07042e +int dimen dp_924 0x7f07042f +int dimen dp_925 0x7f070430 +int dimen dp_926 0x7f070431 +int dimen dp_927 0x7f070432 +int dimen dp_928 0x7f070433 +int dimen dp_929 0x7f070434 +int dimen dp_93 0x7f070435 +int dimen dp_930 0x7f070436 +int dimen dp_931 0x7f070437 +int dimen dp_932 0x7f070438 +int dimen dp_933 0x7f070439 +int dimen dp_934 0x7f07043a +int dimen dp_935 0x7f07043b +int dimen dp_936 0x7f07043c +int dimen dp_937 0x7f07043d +int dimen dp_938 0x7f07043e +int dimen dp_939 0x7f07043f +int dimen dp_94 0x7f070440 +int dimen dp_940 0x7f070441 +int dimen dp_941 0x7f070442 +int dimen dp_942 0x7f070443 +int dimen dp_943 0x7f070444 +int dimen dp_944 0x7f070445 +int dimen dp_945 0x7f070446 +int dimen dp_946 0x7f070447 +int dimen dp_947 0x7f070448 +int dimen dp_948 0x7f070449 +int dimen dp_949 0x7f07044a +int dimen dp_95 0x7f07044b +int dimen dp_950 0x7f07044c +int dimen dp_951 0x7f07044d +int dimen dp_952 0x7f07044e +int dimen dp_953 0x7f07044f +int dimen dp_954 0x7f070450 +int dimen dp_955 0x7f070451 +int dimen dp_956 0x7f070452 +int dimen dp_957 0x7f070453 +int dimen dp_958 0x7f070454 +int dimen dp_959 0x7f070455 +int dimen dp_96 0x7f070456 +int dimen dp_960 0x7f070457 +int dimen dp_961 0x7f070458 +int dimen dp_962 0x7f070459 +int dimen dp_963 0x7f07045a +int dimen dp_964 0x7f07045b +int dimen dp_965 0x7f07045c +int dimen dp_966 0x7f07045d +int dimen dp_967 0x7f07045e +int dimen dp_968 0x7f07045f +int dimen dp_969 0x7f070460 +int dimen dp_97 0x7f070461 +int dimen dp_970 0x7f070462 +int dimen dp_971 0x7f070463 +int dimen dp_972 0x7f070464 +int dimen dp_973 0x7f070465 +int dimen dp_974 0x7f070466 +int dimen dp_975 0x7f070467 +int dimen dp_976 0x7f070468 +int dimen dp_977 0x7f070469 +int dimen dp_978 0x7f07046a +int dimen dp_979 0x7f07046b +int dimen dp_98 0x7f07046c +int dimen dp_980 0x7f07046d +int dimen dp_981 0x7f07046e +int dimen dp_982 0x7f07046f +int dimen dp_983 0x7f070470 +int dimen dp_984 0x7f070471 +int dimen dp_985 0x7f070472 +int dimen dp_986 0x7f070473 +int dimen dp_987 0x7f070474 +int dimen dp_988 0x7f070475 +int dimen dp_989 0x7f070476 +int dimen dp_99 0x7f070477 +int dimen dp_990 0x7f070478 +int dimen dp_991 0x7f070479 +int dimen dp_992 0x7f07047a +int dimen dp_993 0x7f07047b +int dimen dp_994 0x7f07047c +int dimen dp_995 0x7f07047d +int dimen dp_996 0x7f07047e +int dimen dp_997 0x7f07047f +int dimen dp_998 0x7f070480 +int dimen dp_999 0x7f070481 +int dimen dp_m_1 0x7f070482 +int dimen dp_m_10 0x7f070483 +int dimen dp_m_12 0x7f070484 +int dimen dp_m_2 0x7f070485 +int dimen dp_m_20 0x7f070486 +int dimen dp_m_30 0x7f070487 +int dimen dp_m_5 0x7f070488 +int dimen dp_m_60 0x7f070489 +int dimen dp_m_8 0x7f07048a +int dimen exo_media_button_height 0x7f07048b +int dimen exo_media_button_width 0x7f07048c +int dimen fastscroll_default_thickness 0x7f07048d +int dimen fastscroll_margin 0x7f07048e +int dimen fastscroll_minimum_range 0x7f07048f +int dimen heart_ratingbar_height 0x7f070490 +int dimen heart_ratingbar_width 0x7f070491 +int dimen highlight_alpha_material_colored 0x7f070492 +int dimen highlight_alpha_material_dark 0x7f070493 +int dimen highlight_alpha_material_light 0x7f070494 +int dimen hint_alpha_material_dark 0x7f070495 +int dimen hint_alpha_material_light 0x7f070496 +int dimen hint_pressed_alpha_material_dark 0x7f070497 +int dimen hint_pressed_alpha_material_light 0x7f070498 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070499 +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07049a +int dimen item_touch_helper_swipe_escape_velocity 0x7f07049b +int dimen layout_margin_bottom 0x7f07049c +int dimen material_bottom_sheet_max_width 0x7f07049d +int dimen material_clock_display_padding 0x7f07049e +int dimen material_clock_face_margin_top 0x7f07049f +int dimen material_clock_hand_center_dot_radius 0x7f0704a0 +int dimen material_clock_hand_padding 0x7f0704a1 +int dimen material_clock_hand_stroke_width 0x7f0704a2 +int dimen material_clock_number_text_size 0x7f0704a3 +int dimen material_clock_period_toggle_height 0x7f0704a4 +int dimen material_clock_period_toggle_margin_left 0x7f0704a5 +int dimen material_clock_period_toggle_width 0x7f0704a6 +int dimen material_clock_size 0x7f0704a7 +int dimen material_cursor_inset_bottom 0x7f0704a8 +int dimen material_cursor_inset_top 0x7f0704a9 +int dimen material_cursor_width 0x7f0704aa +int dimen material_emphasis_disabled 0x7f0704ab +int dimen material_emphasis_high_type 0x7f0704ac +int dimen material_emphasis_medium 0x7f0704ad +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0704ae +int dimen material_filled_edittext_font_1_3_padding_top 0x7f0704af +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0704b0 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f0704b1 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f0704b2 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f0704b3 +int dimen material_helper_text_default_padding_top 0x7f0704b4 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0704b5 +int dimen material_helper_text_font_1_3_padding_top 0x7f0704b6 +int dimen material_input_text_to_prefix_suffix_padding 0x7f0704b7 +int dimen material_text_view_test_line_height 0x7f0704b8 +int dimen material_text_view_test_line_height_override 0x7f0704b9 +int dimen material_textinput_default_width 0x7f0704ba +int dimen material_textinput_max_width 0x7f0704bb +int dimen material_textinput_min_width 0x7f0704bc +int dimen material_time_picker_minimum_screen_height 0x7f0704bd +int dimen material_time_picker_minimum_screen_width 0x7f0704be +int dimen material_timepicker_dialog_buttons_margin_top 0x7f0704bf +int dimen module_call_chat_calling_bg_radius 0x7f0704c0 +int dimen module_call_chat_calling_iv_hawk_eye_margin_left_right 0x7f0704c1 +int dimen module_call_chat_calling_iv_hawk_eye_width_height 0x7f0704c2 +int dimen module_call_chat_calling_iv_margin_left_right 0x7f0704c3 +int dimen module_call_chat_calling_iv_width_height 0x7f0704c4 +int dimen module_call_chat_calling_text_hawk_eye_margin_top_bottom 0x7f0704c5 +int dimen module_call_chat_calling_text_hawk_eye_name_size 0x7f0704c6 +int dimen module_call_chat_calling_text_hawk_eye_time_size 0x7f0704c7 +int dimen module_call_chat_calling_text_margin_top_bottom 0x7f0704c8 +int dimen module_call_chat_calling_text_name_size 0x7f0704c9 +int dimen module_call_chat_calling_text_time_size 0x7f0704ca +int dimen module_call_chat_hawk_eye_circle_btn_size 0x7f0704cb +int dimen module_call_chat_hawk_eye_incoming_circle_btn_size 0x7f0704cc +int dimen module_call_chat_incoming_aisdk_tag_width 0x7f0704cd +int dimen module_call_chat_match_iv_height 0x7f0704ce +int dimen module_call_chat_match_iv_left_margin 0x7f0704cf +int dimen module_call_chat_match_iv_width 0x7f0704d0 +int dimen module_call_chat_match_text_size 0x7f0704d1 +int dimen module_call_chat_match_view_left_margin 0x7f0704d2 +int dimen module_call_chat_match_view_line_margin_top_bottom 0x7f0704d3 +int dimen module_call_chat_match_view_right_margin 0x7f0704d4 +int dimen module_call_chat_matching_text_size 0x7f0704d5 +int dimen module_call_chat_matching_textsize 0x7f0704d6 +int dimen module_call_chat_state_caller_drawable_padding 0x7f0704d7 +int dimen module_call_chat_state_caller_height 0x7f0704d8 +int dimen module_call_chat_state_caller_margin_bottom 0x7f0704d9 +int dimen module_call_chat_state_caller_margin_left_right 0x7f0704da +int dimen module_call_chat_state_caller_padding_left 0x7f0704db +int dimen module_call_chat_state_caller_text_size 0x7f0704dc +int dimen module_call_chat_state_close_icon_width 0x7f0704dd +int dimen module_call_chat_state_close_margin 0x7f0704de +int dimen module_call_chat_state_hawk_eye_height 0x7f0704df +int dimen module_call_chat_state_hawk_eye_width 0x7f0704e0 +int dimen module_call_chat_state_head_border 0x7f0704e1 +int dimen module_call_chat_state_head_margin_top 0x7f0704e2 +int dimen module_call_chat_state_height 0x7f0704e3 +int dimen module_call_chat_state_incoming_hawk_eye_call_margin_right 0x7f0704e4 +int dimen module_call_chat_state_incoming_hawk_eye_height 0x7f0704e5 +int dimen module_call_chat_state_incoming_hawk_eye_margin_left 0x7f0704e6 +int dimen module_call_chat_state_incoming_hawk_eye_width 0x7f0704e7 +int dimen module_call_chat_state_location_hawk_eye_x 0x7f0704e8 +int dimen module_call_chat_state_location_hawk_eye_y 0x7f0704e9 +int dimen module_call_chat_state_location_x 0x7f0704ea +int dimen module_call_chat_state_location_y 0x7f0704eb +int dimen module_call_chat_state_nick_name_margin_top 0x7f0704ec +int dimen module_call_chat_state_nick_name_size 0x7f0704ed +int dimen module_call_chat_state_rating_margin_top 0x7f0704ee +int dimen module_call_chat_state_user_head_width 0x7f0704ef +int dimen module_call_chat_state_width 0x7f0704f0 +int dimen module_call_chat_team_calling_left_margin 0x7f0704f1 +int dimen module_call_chat_team_calling_size 0x7f0704f2 +int dimen module_call_chat_team_calling_top_margin 0x7f0704f3 +int dimen module_call_chat_team_chatting_margin_top 0x7f0704f4 +int dimen module_call_chat_team_chatting_text_size 0x7f0704f5 +int dimen module_call_chat_team_fragment_close_view_height 0x7f0704f6 +int dimen module_call_chat_team_fragment_close_view_width 0x7f0704f7 +int dimen module_call_chat_team_fragment_margin 0x7f0704f8 +int dimen module_call_chat_team_fragment_num_text_size 0x7f0704f9 +int dimen module_call_chat_team_fragment_padding 0x7f0704fa +int dimen module_call_chat_team_fragment_teammates__margin_top 0x7f0704fb +int dimen module_call_chat_team_head_view_height 0x7f0704fc +int dimen module_call_chat_team_head_view_left_margin 0x7f0704fd +int dimen module_call_chat_team_head_view_left_margin4 0x7f0704fe +int dimen module_call_chat_team_head_view_top_margin 0x7f0704ff +int dimen module_call_chat_team_head_view_width 0x7f070500 +int dimen module_call_chat_team_info_bottom_margin 0x7f070501 +int dimen module_call_chat_team_info_left_margin 0x7f070502 +int dimen module_call_chat_team_info_margin_bottom 0x7f070503 +int dimen module_call_chat_team_info_size 0x7f070504 +int dimen module_call_chat_team_info_text_size 0x7f070505 +int dimen module_call_chat_team_invitation_content_margin_bottom 0x7f070506 +int dimen module_call_chat_team_invitation_content_margin_left 0x7f070507 +int dimen module_call_chat_team_invitation_content_text_size 0x7f070508 +int dimen module_call_chat_team_invitation_hawk_eye_bg_corner 0x7f070509 +int dimen module_call_chat_team_invitation_hawk_eye_height 0x7f07050a +int dimen module_call_chat_team_invitation_hawk_eye_padding 0x7f07050b +int dimen module_call_chat_team_invitation_hawk_eye_width 0x7f07050c +int dimen module_call_chat_team_invitation_head_height 0x7f07050d +int dimen module_call_chat_team_invitation_head_width 0x7f07050e +int dimen module_call_chat_team_invitation_height 0x7f07050f +int dimen module_call_chat_team_invitation_join_hawk_eye_margin_right 0x7f070510 +int dimen module_call_chat_team_invitation_join_height 0x7f070511 +int dimen module_call_chat_team_invitation_join_margin_right 0x7f070512 +int dimen module_call_chat_team_invitation_join_width 0x7f070513 +int dimen module_call_chat_team_invitation_layout_height 0x7f070514 +int dimen module_call_chat_team_invitation_margin 0x7f070515 +int dimen module_call_chat_team_invitation_padding 0x7f070516 +int dimen module_call_chat_team_invitation_title_height 0x7f070517 +int dimen module_call_chat_team_invitation_title_margin_left 0x7f070518 +int dimen module_call_chat_team_invitation_title_margin_top 0x7f070519 +int dimen module_call_chat_team_invitation_title_text_size 0x7f07051a +int dimen module_call_chat_team_invitation_title_width 0x7f07051b +int dimen module_call_chat_team_ll_head_width 0x7f07051c +int dimen module_call_chat_team_num_text_size 0x7f07051d +int dimen module_call_chat_team_num_width 0x7f07051e +int dimen module_call_chat_team_quit_right_margin 0x7f07051f +int dimen module_call_chat_team_quit_view_height 0x7f070520 +int dimen module_call_chat_team_quit_view_width 0x7f070521 +int dimen module_call_chat_team_teammate_head_height 0x7f070522 +int dimen module_call_chat_team_teammate_head_width 0x7f070523 +int dimen module_call_chat_team_teammate_height 0x7f070524 +int dimen module_call_chat_team_teammate_identity_height 0x7f070525 +int dimen module_call_chat_team_teammate_identity_text_size 0x7f070526 +int dimen module_call_chat_team_teammate_identity_width 0x7f070527 +int dimen module_call_chat_team_teammate_margin 0x7f070528 +int dimen module_call_chat_team_teammate_nickname_margin_left 0x7f070529 +int dimen module_call_chat_team_teammate_nickname_text_size 0x7f07052a +int dimen module_call_chat_team_teammate_padding 0x7f07052b +int dimen module_call_chat_team_view_line_margin_top_bottom 0x7f07052c +int dimen module_call_chat_user_caller_x 0x7f07052d +int dimen module_call_chat_user_state_location_x 0x7f07052e +int dimen module_call_chat_user_state_location_y 0x7f07052f +int dimen module_call_chat_user_state_x 0x7f070530 +int dimen module_call_chat_user_state_y 0x7f070531 +int dimen module_call_chat_view_height 0x7f070532 +int dimen module_call_chat_view_margin_end 0x7f070533 +int dimen module_call_chat_view_match_width 0x7f070534 +int dimen module_call_chat_view_width 0x7f070535 +int dimen module_common_shadow_width 0x7f070536 +int dimen module_common_shadow_width_pos 0x7f070537 +int dimen module_commons_toast_icon_width 0x7f070538 +int dimen module_commons_toast_marginBottom 0x7f070539 +int dimen module_commons_toast_marginLeft 0x7f07053a +int dimen module_commons_toast_marginRight 0x7f07053b +int dimen module_commons_toast_marginTop 0x7f07053c +int dimen module_commons_toast_maxWidth 0x7f07053d +int dimen module_commons_toast_minWidth 0x7f07053e +int dimen module_commons_toast_space_between_icon_and_msg 0x7f07053f +int dimen module_commons_toast_textSize 0x7f070540 +int dimen module_commons_toast_with_left_drawable_marginBottom 0x7f070541 +int dimen module_commons_toast_with_left_drawable_marginLeft 0x7f070542 +int dimen module_commons_toast_with_left_drawable_marginTop 0x7f070543 +int dimen module_commons_toast_y_offset 0x7f070544 +int dimen module_ext_arcView_center_text_size 0x7f070545 +int dimen module_ext_arcView_des_text_size 0x7f070546 +int dimen module_ext_arcView_height 0x7f070547 +int dimen module_ext_arcView_stroke_with 0x7f070548 +int dimen module_ext_arcView_top 0x7f070549 +int dimen module_ext_arcView_width 0x7f07054a +int dimen module_ext_speed_height 0x7f07054b +int dimen module_ext_speed_padding 0x7f07054c +int dimen module_ext_speed_width 0x7f07054d +int dimen module_ext_speed_width_big_radius 0x7f07054e +int dimen module_ext_speed_width_sm_radius 0x7f07054f +int dimen module_hmi_autopilot_status_bg_big_radius 0x7f070550 +int dimen module_hmi_autopilot_status_bg_sm_radius 0x7f070551 +int dimen module_hmi_btn_size 0x7f070552 +int dimen module_hmi_btn_text_size 0x7f070553 +int dimen module_hmi_check_left 0x7f070554 +int dimen module_hmi_check_size 0x7f070555 +int dimen module_map_amap_my_location_bg_size 0x7f070556 +int dimen module_map_amap_my_location_icon_height 0x7f070557 +int dimen module_map_amap_my_location_icon_width 0x7f070558 +int dimen module_mogo_autopilot_status_bg_height 0x7f070559 +int dimen module_mogo_autopilot_status_bg_width 0x7f07055a +int dimen module_mogo_autopilot_status_icon_margin 0x7f07055b +int dimen module_mogo_autopilot_status_icon_width 0x7f07055c +int dimen module_mogo_autopilot_status_margin_left 0x7f07055d +int dimen module_mogo_autopilot_status_margin_top 0x7f07055e +int dimen module_mogo_autopilot_status_padding 0x7f07055f +int dimen module_mogo_autopilot_status_text_margin_start 0x7f070560 +int dimen module_mogo_autopilot_status_text_size 0x7f070561 +int dimen module_service_content_minWidth 0x7f070562 +int dimen module_service_content_textSize 0x7f070563 +int dimen module_service_id_marker_content_paddingRight 0x7f070564 +int dimen module_service_id_marker_content_paddingRight_widthoutCall 0x7f070565 +int dimen module_service_marker_anchor_size 0x7f070566 +int dimen module_service_marker_bounds_bottomMargin 0x7f070567 +int dimen module_service_marker_bounds_leftMargin 0x7f070568 +int dimen module_service_marker_bounds_rightMargin 0x7f070569 +int dimen module_service_marker_bounds_topMargin 0x7f07056a +int dimen module_service_marker_bubble_height 0x7f07056b +int dimen module_service_marker_bubble_icon_height 0x7f07056c +int dimen module_service_marker_bubble_icon_marginBottom 0x7f07056d +int dimen module_service_marker_bubble_icon_vr_height 0x7f07056e +int dimen module_service_marker_bubble_icon_vr_width 0x7f07056f +int dimen module_service_marker_bubble_icon_width 0x7f070570 +int dimen module_service_marker_bubble_vr_height 0x7f070571 +int dimen module_service_marker_bubble_vr_width 0x7f070572 +int dimen module_service_marker_bubble_width 0x7f070573 +int dimen module_service_marker_dot_marginTop 0x7f070574 +int dimen module_service_tag_textSize 0x7f070575 +int dimen module_service_user_header_height 0x7f070576 +int dimen module_service_user_header_width 0x7f070577 +int dimen module_services_empty_tip_marginTop 0x7f070578 +int dimen module_services_empty_tip_textSize 0x7f070579 +int dimen module_services_id_panel_item_avatar_border_width 0x7f07057a +int dimen module_services_id_panel_item_distance_marginLeft 0x7f07057b +int dimen module_services_info_window_height 0x7f07057c +int dimen module_services_info_window_paddingEnd 0x7f07057d +int dimen module_services_info_window_paddingStart 0x7f07057e +int dimen module_services_load_strategy_marginRight 0x7f07057f +int dimen module_services_load_strategy_paddingLeft 0x7f070580 +int dimen module_services_load_strategy_paddingTop 0x7f070581 +int dimen module_services_load_strategy_textSize 0x7f070582 +int dimen module_services_online_car_panel_close_margin_top 0x7f070583 +int dimen module_services_online_car_panel_marginBottom 0x7f070584 +int dimen module_services_online_car_panel_marginRight 0x7f070585 +int dimen module_services_online_car_panel_marginTop 0x7f070586 +int dimen module_services_online_car_panel_paddingBottom 0x7f070587 +int dimen module_services_online_car_panel_paddingLeft 0x7f070588 +int dimen module_services_online_car_panel_recycler_view_margin_top 0x7f070589 +int dimen module_services_online_car_panel_title_margin_top 0x7f07058a +int dimen module_services_online_car_panel_title_text_size 0x7f07058b +int dimen module_services_panel_item_avatar_size 0x7f07058c +int dimen module_services_panel_item_corner 0x7f07058d +int dimen module_services_panel_item_detail_bkg_corner 0x7f07058e +int dimen module_services_panel_item_detail_padding 0x7f07058f +int dimen module_services_panel_item_detail_textSize 0x7f070590 +int dimen module_services_panel_item_distance_textSize 0x7f070591 +int dimen module_services_panel_item_marginBottom 0x7f070592 +int dimen module_services_panel_item_nickname_marginLeft 0x7f070593 +int dimen module_services_panel_item_nickname_textSize 0x7f070594 +int dimen module_services_panel_item_padding 0x7f070595 +int dimen module_services_panel_strategy_button_bkg_corner 0x7f070596 +int dimen module_services_panel_strategy_button_marginTop 0x7f070597 +int dimen module_switch_image 0x7f070598 +int dimen module_switch_image_circle 0x7f070599 +int dimen module_switch_map 0x7f07059a +int dimen module_switch_map_height 0x7f07059b +int dimen module_switch_margin_left 0x7f07059c +int dimen module_switch_text_size 0x7f07059d +int dimen module_v2n_image_margin_left 0x7f07059e +int dimen module_v2n_tip_height 0x7f07059f +int dimen module_v2n_tip_text_margin_right 0x7f0705a0 +int dimen module_v2n_tip_text_width 0x7f0705a1 +int dimen module_v2n_tip_width 0x7f0705a2 +int dimen module_v2x_brake_image_margin_left 0x7f0705a3 +int dimen module_v2x_brake_image_margin_right 0x7f0705a4 +int dimen module_v2x_brake_image_width 0x7f0705a5 +int dimen module_v2x_brake_tip_height 0x7f0705a6 +int dimen module_v2x_brake_tip_width 0x7f0705a7 +int dimen module_vip_height 0x7f0705a8 +int dimen module_vip_margin_left 0x7f0705a9 +int dimen module_vip_margin_top 0x7f0705aa +int dimen module_vip_width 0x7f0705ab +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f0705ac +int dimen mtrl_alert_dialog_background_inset_end 0x7f0705ad +int dimen mtrl_alert_dialog_background_inset_start 0x7f0705ae +int dimen mtrl_alert_dialog_background_inset_top 0x7f0705af +int dimen mtrl_alert_dialog_picker_background_inset 0x7f0705b0 +int dimen mtrl_badge_horizontal_edge_offset 0x7f0705b1 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f0705b2 +int dimen mtrl_badge_radius 0x7f0705b3 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f0705b4 +int dimen mtrl_badge_text_size 0x7f0705b5 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f0705b6 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f0705b7 +int dimen mtrl_badge_with_text_radius 0x7f0705b8 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f0705b9 +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f0705ba +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f0705bb +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0705bc +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f0705bd +int dimen mtrl_bottomappbar_height 0x7f0705be +int dimen mtrl_btn_corner_radius 0x7f0705bf +int dimen mtrl_btn_dialog_btn_min_width 0x7f0705c0 +int dimen mtrl_btn_disabled_elevation 0x7f0705c1 +int dimen mtrl_btn_disabled_z 0x7f0705c2 +int dimen mtrl_btn_elevation 0x7f0705c3 +int dimen mtrl_btn_focused_z 0x7f0705c4 +int dimen mtrl_btn_hovered_z 0x7f0705c5 +int dimen mtrl_btn_icon_btn_padding_left 0x7f0705c6 +int dimen mtrl_btn_icon_padding 0x7f0705c7 +int dimen mtrl_btn_inset 0x7f0705c8 +int dimen mtrl_btn_letter_spacing 0x7f0705c9 +int dimen mtrl_btn_max_width 0x7f0705ca +int dimen mtrl_btn_padding_bottom 0x7f0705cb +int dimen mtrl_btn_padding_left 0x7f0705cc +int dimen mtrl_btn_padding_right 0x7f0705cd +int dimen mtrl_btn_padding_top 0x7f0705ce +int dimen mtrl_btn_pressed_z 0x7f0705cf +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f0705d0 +int dimen mtrl_btn_stroke_size 0x7f0705d1 +int dimen mtrl_btn_text_btn_icon_padding 0x7f0705d2 +int dimen mtrl_btn_text_btn_padding_left 0x7f0705d3 +int dimen mtrl_btn_text_btn_padding_right 0x7f0705d4 +int dimen mtrl_btn_text_size 0x7f0705d5 +int dimen mtrl_btn_z 0x7f0705d6 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f0705d7 +int dimen mtrl_calendar_action_height 0x7f0705d8 +int dimen mtrl_calendar_action_padding 0x7f0705d9 +int dimen mtrl_calendar_bottom_padding 0x7f0705da +int dimen mtrl_calendar_content_padding 0x7f0705db +int dimen mtrl_calendar_day_corner 0x7f0705dc +int dimen mtrl_calendar_day_height 0x7f0705dd +int dimen mtrl_calendar_day_horizontal_padding 0x7f0705de +int dimen mtrl_calendar_day_today_stroke 0x7f0705df +int dimen mtrl_calendar_day_vertical_padding 0x7f0705e0 +int dimen mtrl_calendar_day_width 0x7f0705e1 +int dimen mtrl_calendar_days_of_week_height 0x7f0705e2 +int dimen mtrl_calendar_dialog_background_inset 0x7f0705e3 +int dimen mtrl_calendar_header_content_padding 0x7f0705e4 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f0705e5 +int dimen mtrl_calendar_header_divider_thickness 0x7f0705e6 +int dimen mtrl_calendar_header_height 0x7f0705e7 +int dimen mtrl_calendar_header_height_fullscreen 0x7f0705e8 +int dimen mtrl_calendar_header_selection_line_height 0x7f0705e9 +int dimen mtrl_calendar_header_text_padding 0x7f0705ea +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f0705eb +int dimen mtrl_calendar_header_toggle_margin_top 0x7f0705ec +int dimen mtrl_calendar_landscape_header_width 0x7f0705ed +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f0705ee +int dimen mtrl_calendar_month_horizontal_padding 0x7f0705ef +int dimen mtrl_calendar_month_vertical_padding 0x7f0705f0 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f0705f1 +int dimen mtrl_calendar_navigation_height 0x7f0705f2 +int dimen mtrl_calendar_navigation_top_padding 0x7f0705f3 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f0705f4 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f0705f5 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f0705f6 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f0705f7 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f0705f8 +int dimen mtrl_calendar_text_input_padding_top 0x7f0705f9 +int dimen mtrl_calendar_title_baseline_to_top 0x7f0705fa +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f0705fb +int dimen mtrl_calendar_year_corner 0x7f0705fc +int dimen mtrl_calendar_year_height 0x7f0705fd +int dimen mtrl_calendar_year_horizontal_padding 0x7f0705fe +int dimen mtrl_calendar_year_vertical_padding 0x7f0705ff +int dimen mtrl_calendar_year_width 0x7f070600 +int dimen mtrl_card_checked_icon_margin 0x7f070601 +int dimen mtrl_card_checked_icon_size 0x7f070602 +int dimen mtrl_card_corner_radius 0x7f070603 +int dimen mtrl_card_dragged_z 0x7f070604 +int dimen mtrl_card_elevation 0x7f070605 +int dimen mtrl_card_spacing 0x7f070606 +int dimen mtrl_chip_pressed_translation_z 0x7f070607 +int dimen mtrl_chip_text_size 0x7f070608 +int dimen mtrl_edittext_rectangle_top_offset 0x7f070609 +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f07060a +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f07060b +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f07060c +int dimen mtrl_extended_fab_bottom_padding 0x7f07060d +int dimen mtrl_extended_fab_corner_radius 0x7f07060e +int dimen mtrl_extended_fab_disabled_elevation 0x7f07060f +int dimen mtrl_extended_fab_disabled_translation_z 0x7f070610 +int dimen mtrl_extended_fab_elevation 0x7f070611 +int dimen mtrl_extended_fab_end_padding 0x7f070612 +int dimen mtrl_extended_fab_end_padding_icon 0x7f070613 +int dimen mtrl_extended_fab_icon_size 0x7f070614 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f070615 +int dimen mtrl_extended_fab_min_height 0x7f070616 +int dimen mtrl_extended_fab_min_width 0x7f070617 +int dimen mtrl_extended_fab_start_padding 0x7f070618 +int dimen mtrl_extended_fab_start_padding_icon 0x7f070619 +int dimen mtrl_extended_fab_top_padding 0x7f07061a +int dimen mtrl_extended_fab_translation_z_base 0x7f07061b +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f07061c +int dimen mtrl_extended_fab_translation_z_pressed 0x7f07061d +int dimen mtrl_fab_elevation 0x7f07061e +int dimen mtrl_fab_min_touch_target 0x7f07061f +int dimen mtrl_fab_translation_z_hovered_focused 0x7f070620 +int dimen mtrl_fab_translation_z_pressed 0x7f070621 +int dimen mtrl_high_ripple_default_alpha 0x7f070622 +int dimen mtrl_high_ripple_focused_alpha 0x7f070623 +int dimen mtrl_high_ripple_hovered_alpha 0x7f070624 +int dimen mtrl_high_ripple_pressed_alpha 0x7f070625 +int dimen mtrl_large_touch_target 0x7f070626 +int dimen mtrl_low_ripple_default_alpha 0x7f070627 +int dimen mtrl_low_ripple_focused_alpha 0x7f070628 +int dimen mtrl_low_ripple_hovered_alpha 0x7f070629 +int dimen mtrl_low_ripple_pressed_alpha 0x7f07062a +int dimen mtrl_min_touch_target_size 0x7f07062b +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f07062c +int dimen mtrl_navigation_bar_item_default_margin 0x7f07062d +int dimen mtrl_navigation_elevation 0x7f07062e +int dimen mtrl_navigation_item_horizontal_padding 0x7f07062f +int dimen mtrl_navigation_item_icon_padding 0x7f070630 +int dimen mtrl_navigation_item_icon_size 0x7f070631 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f070632 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f070633 +int dimen mtrl_navigation_rail_active_text_size 0x7f070634 +int dimen mtrl_navigation_rail_compact_width 0x7f070635 +int dimen mtrl_navigation_rail_default_width 0x7f070636 +int dimen mtrl_navigation_rail_elevation 0x7f070637 +int dimen mtrl_navigation_rail_icon_margin 0x7f070638 +int dimen mtrl_navigation_rail_icon_size 0x7f070639 +int dimen mtrl_navigation_rail_margin 0x7f07063a +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f07063b +int dimen mtrl_navigation_rail_text_size 0x7f07063c +int dimen mtrl_progress_circular_inset 0x7f07063d +int dimen mtrl_progress_circular_inset_extra_small 0x7f07063e +int dimen mtrl_progress_circular_inset_medium 0x7f07063f +int dimen mtrl_progress_circular_inset_small 0x7f070640 +int dimen mtrl_progress_circular_radius 0x7f070641 +int dimen mtrl_progress_circular_size 0x7f070642 +int dimen mtrl_progress_circular_size_extra_small 0x7f070643 +int dimen mtrl_progress_circular_size_medium 0x7f070644 +int dimen mtrl_progress_circular_size_small 0x7f070645 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f070646 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f070647 +int dimen mtrl_progress_circular_track_thickness_small 0x7f070648 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f070649 +int dimen mtrl_progress_track_thickness 0x7f07064a +int dimen mtrl_shape_corner_size_large_component 0x7f07064b +int dimen mtrl_shape_corner_size_medium_component 0x7f07064c +int dimen mtrl_shape_corner_size_small_component 0x7f07064d +int dimen mtrl_slider_halo_radius 0x7f07064e +int dimen mtrl_slider_label_padding 0x7f07064f +int dimen mtrl_slider_label_radius 0x7f070650 +int dimen mtrl_slider_label_square_side 0x7f070651 +int dimen mtrl_slider_thumb_elevation 0x7f070652 +int dimen mtrl_slider_thumb_radius 0x7f070653 +int dimen mtrl_slider_track_height 0x7f070654 +int dimen mtrl_slider_track_side_padding 0x7f070655 +int dimen mtrl_slider_track_top 0x7f070656 +int dimen mtrl_slider_widget_height 0x7f070657 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f070658 +int dimen mtrl_snackbar_background_corner_radius 0x7f070659 +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f07065a +int dimen mtrl_snackbar_margin 0x7f07065b +int dimen mtrl_snackbar_message_margin_horizontal 0x7f07065c +int dimen mtrl_snackbar_padding_horizontal 0x7f07065d +int dimen mtrl_switch_thumb_elevation 0x7f07065e +int dimen mtrl_textinput_box_corner_radius_medium 0x7f07065f +int dimen mtrl_textinput_box_corner_radius_small 0x7f070660 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f070661 +int dimen mtrl_textinput_box_stroke_width_default 0x7f070662 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f070663 +int dimen mtrl_textinput_counter_margin_start 0x7f070664 +int dimen mtrl_textinput_end_icon_margin_start 0x7f070665 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f070666 +int dimen mtrl_textinput_start_icon_margin_end 0x7f070667 +int dimen mtrl_toolbar_default_height 0x7f070668 +int dimen mtrl_tooltip_arrowSize 0x7f070669 +int dimen mtrl_tooltip_cornerSize 0x7f07066a +int dimen mtrl_tooltip_minHeight 0x7f07066b +int dimen mtrl_tooltip_minWidth 0x7f07066c +int dimen mtrl_tooltip_padding 0x7f07066d +int dimen mtrl_transition_shared_axis_slide_distance 0x7f07066e +int dimen notice_current_time_margin 0x7f07066f +int dimen notice_fullscreen_bt 0x7f070670 +int dimen notice_loading_bt 0x7f070671 +int dimen notice_play_bottom 0x7f070672 +int dimen notice_play_height 0x7f070673 +int dimen notice_play_marginleft 0x7f070674 +int dimen notice_play_marginleft_small 0x7f070675 +int dimen notice_play_marginright 0x7f070676 +int dimen notice_play_marginright_small 0x7f070677 +int dimen notice_seekbar_bottom 0x7f070678 +int dimen notice_seekbar_width 0x7f070679 +int dimen notice_seekbar_width_small 0x7f07067a +int dimen notice_time_bottom 0x7f07067b +int dimen notification_action_icon_size 0x7f07067c +int dimen notification_action_text_size 0x7f07067d +int dimen notification_big_circle_margin 0x7f07067e +int dimen notification_content_margin_start 0x7f07067f +int dimen notification_large_icon_height 0x7f070680 +int dimen notification_large_icon_width 0x7f070681 +int dimen notification_main_column_padding_top 0x7f070682 +int dimen notification_media_narrow_margin 0x7f070683 +int dimen notification_right_icon_size 0x7f070684 +int dimen notification_right_side_padding_top 0x7f070685 +int dimen notification_small_icon_background_padding 0x7f070686 +int dimen notification_small_icon_size_as_large 0x7f070687 +int dimen notification_subtext_size 0x7f070688 +int dimen notification_top_pad 0x7f070689 +int dimen notification_top_pad_large_text 0x7f07068a +int dimen panel_list_item_title_size 0x7f07068b +int dimen ratingbar_padding 0x7f07068c +int dimen seek_bar_image 0x7f07068d +int dimen share_item_address 0x7f07068e +int dimen sp_10 0x7f07068f +int dimen sp_11 0x7f070690 +int dimen sp_12 0x7f070691 +int dimen sp_13 0x7f070692 +int dimen sp_14 0x7f070693 +int dimen sp_15 0x7f070694 +int dimen sp_16 0x7f070695 +int dimen sp_17 0x7f070696 +int dimen sp_18 0x7f070697 +int dimen sp_19 0x7f070698 +int dimen sp_20 0x7f070699 +int dimen sp_21 0x7f07069a +int dimen sp_22 0x7f07069b +int dimen sp_23 0x7f07069c +int dimen sp_24 0x7f07069d +int dimen sp_25 0x7f07069e +int dimen sp_28 0x7f07069f +int dimen sp_30 0x7f0706a0 +int dimen sp_32 0x7f0706a1 +int dimen sp_34 0x7f0706a2 +int dimen sp_36 0x7f0706a3 +int dimen sp_38 0x7f0706a4 +int dimen sp_40 0x7f0706a5 +int dimen sp_42 0x7f0706a6 +int dimen sp_48 0x7f0706a7 +int dimen sp_6 0x7f0706a8 +int dimen sp_7 0x7f0706a9 +int dimen sp_8 0x7f0706aa +int dimen sp_9 0x7f0706ab +int dimen test_mtrl_calendar_day_cornerSize 0x7f0706ac +int dimen test_navigation_bar_active_item_max_width 0x7f0706ad +int dimen test_navigation_bar_active_item_min_width 0x7f0706ae +int dimen test_navigation_bar_active_text_size 0x7f0706af +int dimen test_navigation_bar_elevation 0x7f0706b0 +int dimen test_navigation_bar_height 0x7f0706b1 +int dimen test_navigation_bar_icon_size 0x7f0706b2 +int dimen test_navigation_bar_item_max_width 0x7f0706b3 +int dimen test_navigation_bar_item_min_width 0x7f0706b4 +int dimen test_navigation_bar_label_padding 0x7f0706b5 +int dimen test_navigation_bar_shadow_height 0x7f0706b6 +int dimen test_navigation_bar_text_size 0x7f0706b7 +int dimen time_textsize 0x7f0706b8 +int dimen tooltip_corner_radius 0x7f0706b9 +int dimen tooltip_horizontal_padding 0x7f0706ba +int dimen tooltip_margin 0x7f0706bb +int dimen tooltip_precise_anchor_extra_offset 0x7f0706bc +int dimen tooltip_precise_anchor_threshold 0x7f0706bd +int dimen tooltip_vertical_padding 0x7f0706be +int dimen tooltip_y_offset_non_touch 0x7f0706bf +int dimen tooltip_y_offset_touch 0x7f0706c0 +int dimen v2x_panel_loading_top 0x7f0706c1 +int dimen v2x_share_btn_height 0x7f0706c2 +int dimen v2x_share_btn_width 0x7f0706c3 +int dimen video_progress_dialog_margin_top 0x7f0706c4 +int dimen video_volume_dialog_margin_left 0x7f0706c5 +int dimen warning_distance_right 0x7f0706c6 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_star_black_48dp 0x7f080046 +int drawable abc_star_half_black_48dp 0x7f080047 +int drawable abc_switch_thumb_material 0x7f080048 +int drawable abc_switch_track_mtrl_alpha 0x7f080049 +int drawable abc_tab_indicator_material 0x7f08004a +int drawable abc_tab_indicator_mtrl_alpha 0x7f08004b +int drawable abc_text_cursor_material 0x7f08004c +int drawable abc_text_select_handle_left_mtrl 0x7f08004d +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004e +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004f +int drawable abc_text_select_handle_middle_mtrl 0x7f080050 +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f080051 +int drawable abc_text_select_handle_middle_mtrl_light 0x7f080052 +int drawable abc_text_select_handle_right_mtrl 0x7f080053 +int drawable abc_text_select_handle_right_mtrl_dark 0x7f080054 +int drawable abc_text_select_handle_right_mtrl_light 0x7f080055 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080056 +int drawable abc_textfield_default_mtrl_alpha 0x7f080057 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080058 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080059 +int drawable abc_textfield_search_material 0x7f08005a +int drawable abc_vector_test 0x7f08005b +int drawable avd_hide_password 0x7f08005c +int drawable avd_show_password 0x7f08005d +int drawable bg_map_marker_yellow_info 0x7f08005e +int drawable bg_shape_reverse_yellow 0x7f08005f +int drawable bg_v2x_cancel_help 0x7f080060 +int drawable bg_v2x_event_type_blue 0x7f080061 +int drawable bg_v2x_event_type_orange 0x7f080062 +int drawable bg_v2x_event_type_orange_vr 0x7f080063 +int drawable bg_v2x_event_type_read 0x7f080064 +int drawable bg_v2x_event_type_red_vr 0x7f080065 +int drawable bg_waring_limiting_velocity 0x7f080066 +int drawable bg_waring_traffic_light_vr 0x7f080067 +int drawable bg_warning_bg 0x7f080068 +int drawable btn_checkbox_checked_mtrl 0x7f080069 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f08006a +int drawable btn_checkbox_unchecked_mtrl 0x7f08006b +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08006c +int drawable btn_radio_off_mtrl 0x7f08006d +int drawable btn_radio_off_to_on_mtrl_animation 0x7f08006e +int drawable btn_radio_on_mtrl 0x7f08006f +int drawable btn_radio_on_to_off_mtrl_animation 0x7f080070 +int drawable check_error_image 0x7f080071 +int drawable common_marker_bottom_floor 0x7f080072 +int drawable dark_color_close 0x7f080073 +int drawable design_fab_background 0x7f080074 +int drawable design_ic_visibility 0x7f080075 +int drawable design_ic_visibility_off 0x7f080076 +int drawable design_password_eye 0x7f080077 +int drawable design_snackbar_background 0x7f080078 +int drawable empty_drawable 0x7f080079 +int drawable exo_controls_fastforward 0x7f08007a +int drawable exo_controls_next 0x7f08007b +int drawable exo_controls_pause 0x7f08007c +int drawable exo_controls_play 0x7f08007d +int drawable exo_controls_previous 0x7f08007e +int drawable exo_controls_rewind 0x7f08007f +int drawable exo_edit_mode_logo 0x7f080080 +int drawable ic_amap_navi_cursor 0x7f080081 +int drawable ic_clock_black_24dp 0x7f080082 +int drawable ic_keyboard_black_24dp 0x7f080083 +int drawable ic_mtrl_checked_circle 0x7f080084 +int drawable ic_mtrl_chip_checked_black 0x7f080085 +int drawable ic_mtrl_chip_checked_circle 0x7f080086 +int drawable ic_mtrl_chip_close_circle 0x7f080087 +int drawable ic_navi_start 0x7f080088 +int drawable ic_navi_target 0x7f080089 +int drawable icon_autopilot_status 0x7f08008a +int drawable icon_autopilot_status_disabled 0x7f08008b +int drawable icon_car_red 0x7f08008c +int drawable icon_common_heart_animation_vr00 0x7f08008d +int drawable icon_common_heart_animation_vr02 0x7f08008e +int drawable icon_default_user_head 0x7f08008f +int drawable icon_heart_choose 0x7f080090 +int drawable icon_heart_second 0x7f080091 +int drawable icon_heart_second_other 0x7f080092 +int drawable icon_heart_unchoose 0x7f080093 +int drawable icon_heart_unchoose_other 0x7f080094 +int drawable icon_map_marker_book 0x7f080095 +int drawable icon_map_marker_car_gray 0x7f080096 +int drawable icon_map_marker_car_gray_selected 0x7f080097 +int drawable icon_map_marker_car_type2 0x7f080098 +int drawable icon_map_marker_car_type_110 0x7f080099 +int drawable icon_map_marker_car_type_119 0x7f08009a +int drawable icon_map_marker_car_type_120 0x7f08009b +int drawable icon_map_marker_car_type_bus 0x7f08009c +int drawable icon_map_marker_car_type_taxi 0x7f08009d +int drawable icon_map_marker_living 0x7f08009e +int drawable icon_map_marker_location_yellow 0x7f08009f +int drawable icon_map_marker_location_yellow_vr 0x7f0800a0 +int drawable icon_map_marker_misic 0x7f0800a1 +int drawable icon_map_marker_news 0x7f0800a2 +int drawable icon_map_marker_pondingl2 0x7f0800a3 +int drawable icon_map_marker_road_block_off 0x7f0800a4 +int drawable icon_map_marker_road_block_up 0x7f0800a5 +int drawable icon_map_marker_road_block_up2 0x7f0800a6 +int drawable icon_waring_traffic_light_green_vr 0x7f0800a7 +int drawable icon_waring_traffic_light_red_vr 0x7f0800a8 +int drawable icon_waring_traffic_light_yellow_vr 0x7f0800a9 +int drawable icon_warning_v2x_abnormal_vehicle 0x7f0800aa +int drawable icon_warning_v2x_blind_area_collision 0x7f0800ab +int drawable icon_warning_v2x_collision_warning 0x7f0800ac +int drawable icon_warning_v2x_congestion 0x7f0800ad +int drawable icon_warning_v2x_emergency_brake 0x7f0800ae +int drawable icon_warning_v2x_give_way 0x7f0800af +int drawable icon_warning_v2x_hump_bridge 0x7f0800b0 +int drawable icon_warning_v2x_motorcycle_collision 0x7f0800b1 +int drawable icon_warning_v2x_no_parking 0x7f0800b2 +int drawable icon_warning_v2x_optimal_route 0x7f0800b3 +int drawable icon_warning_v2x_over_speed 0x7f0800b4 +int drawable icon_warning_v2x_pedestrian_crossing 0x7f0800b5 +int drawable icon_warning_v2x_reverse_overtaking 0x7f0800b6 +int drawable icon_warning_v2x_road_construction 0x7f0800b7 +int drawable icon_warning_v2x_road_dangerous 0x7f0800b8 +int drawable icon_warning_v2x_roundaboutpng 0x7f0800b9 +int drawable icon_warning_v2x_school 0x7f0800ba +int drawable icon_warning_v2x_special_vehicle_access 0x7f0800bb +int drawable icon_warning_v2x_test_section 0x7f0800bc +int drawable icon_warning_v2x_traffic_light_gray 0x7f0800bd +int drawable icon_warning_v2x_traffic_light_green 0x7f0800be +int drawable icon_warning_v2x_traffic_light_red 0x7f0800bf +int drawable icon_warning_v2x_traffic_light_yellow 0x7f0800c0 +int drawable icon_warning_v2x_traffic_lights_green 0x7f0800c1 +int drawable icon_warning_v2x_traffic_lights_red 0x7f0800c2 +int drawable icon_warning_v2x_tramcar 0x7f0800c3 +int drawable icon_warning_v2x_turn_left_sharp 0x7f0800c4 +int drawable icon_warning_v2x_turn_right_sharp 0x7f0800c5 +int drawable icon_warning_v2x_vehicle_control 0x7f0800c6 +int drawable icon_warning_v2x_vip_turn_light 0x7f0800c7 +int drawable lock 0x7f0800c8 +int drawable map_api_ic_current_location2 0x7f0800c9 +int drawable material_cursor_drawable 0x7f0800ca +int drawable material_ic_calendar_black_24dp 0x7f0800cb +int drawable material_ic_clear_black_24dp 0x7f0800cc +int drawable material_ic_edit_black_24dp 0x7f0800cd +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f0800ce +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f0800cf +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f0800d0 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f0800d1 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f0800d2 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f0800d3 +int drawable module_callchatting_shape_gradient_blue 0x7f0800d4 +int drawable module_callchatting_shape_gradient_blue_normal 0x7f0800d5 +int drawable module_callchatting_shape_gradient_blue_pressed 0x7f0800d6 +int drawable module_callchatting_user_pop_call_bg 0x7f0800d7 +int drawable module_callchatting_user_pop_call_bg_normal 0x7f0800d8 +int drawable module_callchatting_user_pop_call_bg_pressed 0x7f0800d9 +int drawable module_camera_real_time_traffic 0x7f0800da +int drawable module_carchatting_aicloud_incoming 0x7f0800db +int drawable module_carchatting_launcher_calling_bg 0x7f0800dc +int drawable module_carchatting_launcher_hawk_eye_calling_bg 0x7f0800dd +int drawable module_carchatting_team_fragment 0x7f0800de +int drawable module_carchatting_team_fragment_bg 0x7f0800df +int drawable module_carchatting_team_fragment_close 0x7f0800e0 +int drawable module_carchatting_team_fragment_close_normal 0x7f0800e1 +int drawable module_carchatting_team_fragment_close_pressed 0x7f0800e2 +int drawable module_carchatting_team_fragment_x 0x7f0800e3 +int drawable module_carchatting_team_invitation_bg 0x7f0800e4 +int drawable module_carchatting_team_invitation_hawk_eye_bg 0x7f0800e5 +int drawable module_carchatting_team_invitation_hawk_eye_head_default 0x7f0800e6 +int drawable module_carchatting_team_invitation_hawk_eye_header_bg 0x7f0800e7 +int drawable module_carchatting_team_invitation_hawk_eye_join 0x7f0800e8 +int drawable module_carchatting_team_invitation_hawk_eye_join_normal 0x7f0800e9 +int drawable module_carchatting_team_invitation_hawk_eye_join_pressed 0x7f0800ea +int drawable module_carchatting_team_invitation_hawk_eye_refuse 0x7f0800eb +int drawable module_carchatting_team_invitation_hawk_eye_refuse_normal 0x7f0800ec +int drawable module_carchatting_team_invitation_hawk_eye_refuse_pressed 0x7f0800ed +int drawable module_carchatting_team_invitation_head_default 0x7f0800ee +int drawable module_carchatting_team_invitation_join 0x7f0800ef +int drawable module_carchatting_team_invitation_join_normal 0x7f0800f0 +int drawable module_carchatting_team_invitation_join_pressed 0x7f0800f1 +int drawable module_carchatting_team_invitation_refuse 0x7f0800f2 +int drawable module_carchatting_team_invitation_refuse_normal 0x7f0800f3 +int drawable module_carchatting_team_invitation_refuse_pressed 0x7f0800f4 +int drawable module_carchatting_team_invitation_title_bg 0x7f0800f5 +int drawable module_carchatting_team_quit 0x7f0800f6 +int drawable module_carchatting_team_quit_normal 0x7f0800f7 +int drawable module_carchatting_team_quit_pressed 0x7f0800f8 +int drawable module_carchatting_team_teammate_bg 0x7f0800f9 +int drawable module_carchatting_team_teammate_follower_bg 0x7f0800fa +int drawable module_carchatting_team_teammate_leader_bg 0x7f0800fb +int drawable module_carchatting_vr_calling_bg 0x7f0800fc +int drawable module_carchatting_vr_team_num_bg 0x7f0800fd +int drawable module_common_close_selector 0x7f0800fe +int drawable module_common_close_selector_vr 0x7f0800ff +int drawable module_common_default_user_head 0x7f080100 +int drawable module_common_ic_rc_accident3 0x7f080101 +int drawable module_common_ic_rc_accident3_white 0x7f080102 +int drawable module_common_ic_rc_dark_frog2 0x7f080103 +int drawable module_common_ic_rc_dark_frog2_white 0x7f080104 +int drawable module_common_ic_rc_freeze2 0x7f080105 +int drawable module_common_ic_rc_freeze2_white 0x7f080106 +int drawable module_common_ic_rc_illegal_park 0x7f080107 +int drawable module_common_ic_rc_illegal_park_white 0x7f080108 +int drawable module_common_ic_rc_parking2 0x7f080109 +int drawable module_common_icon_close 0x7f08010a +int drawable module_common_icon_close_press 0x7f08010b +int drawable module_common_icon_close_vr 0x7f08010c +int drawable module_common_icon_like_selected_vr 0x7f08010d +int drawable module_common_icon_like_vr 0x7f08010e +int drawable module_common_icon_map_marker_4s 0x7f08010f +int drawable module_common_icon_map_marker_living 0x7f080110 +int drawable module_common_icon_map_marker_living_white 0x7f080111 +int drawable module_common_icon_map_marker_pondingl2 0x7f080112 +int drawable module_common_icon_map_marker_pondingl2_white 0x7f080113 +int drawable module_common_icon_map_marker_refuel 0x7f080114 +int drawable module_common_icon_map_marker_road_block_off2 0x7f080115 +int drawable module_common_icon_map_marker_road_block_off2_white 0x7f080116 +int drawable module_common_icon_map_marker_road_block_up2 0x7f080117 +int drawable module_common_icon_map_marker_road_block_up2_white 0x7f080118 +int drawable module_common_icon_map_marker_road_check2 0x7f080119 +int drawable module_common_icon_map_marker_road_check2_white 0x7f08011a +int drawable module_common_icon_map_marker_road_work2 0x7f08011b +int drawable module_common_icon_map_marker_road_work2_white 0x7f08011c +int drawable module_common_icon_map_marker_shear_news 0x7f08011d +int drawable module_common_icon_map_marker_shop 0x7f08011e +int drawable module_common_icon_map_marker_shop_discount 0x7f08011f +int drawable module_common_icon_seek_help 0x7f080120 +int drawable module_common_icon_unlike_selected_vr 0x7f080121 +int drawable module_common_icon_unlike_vr 0x7f080122 +int drawable module_common_like_vr 0x7f080123 +int drawable module_common_my_location_bg 0x7f080124 +int drawable module_common_selector_call 0x7f080125 +int drawable module_common_unlike_vr 0x7f080126 +int drawable module_commons_dialog_bg 0x7f080127 +int drawable module_commons_dialog_left_bg 0x7f080128 +int drawable module_commons_dialog_right_bg 0x7f080129 +int drawable module_commons_heart_ratingbar_drawable 0x7f08012a +int drawable module_commons_shape_dlg_round_bkg 0x7f08012b +int drawable module_commons_shape_left_btn_bkg 0x7f08012c +int drawable module_commons_shape_right_btn_bkg 0x7f08012d +int drawable module_commons_toast_bkg 0x7f08012e +int drawable module_dw_common_corner_bkg_light 0x7f08012f +int drawable module_ext_check 0x7f080130 +int drawable module_ext_drawable_shadow_bg 0x7f080131 +int drawable module_ext_shadow_bkg 0x7f080132 +int drawable module_ext_shadow_bkg_pressed 0x7f080133 +int drawable module_hmi_autopilot_status_bg 0x7f080134 +int drawable module_hmi_autopilot_status_checked_bg 0x7f080135 +int drawable module_hmi_autopilot_status_disabled_bg 0x7f080136 +int drawable module_hmi_autopilot_status_enable_bg 0x7f080137 +int drawable module_hmi_warning_bkg_bottom 0x7f080138 +int drawable module_hmi_warning_bkg_left 0x7f080139 +int drawable module_hmi_warning_bkg_right 0x7f08013a +int drawable module_hmi_warning_bkg_top 0x7f08013b +int drawable module_map_amap_my_location_icon 0x7f08013c +int drawable module_service_ic_call 0x7f08013d +int drawable module_service_ic_rc_accident 0x7f08013e +int drawable module_service_ic_rc_accident2 0x7f08013f +int drawable module_service_ic_rc_accident3 0x7f080140 +int drawable module_service_ic_rc_accident3_white 0x7f080141 +int drawable module_service_ic_rc_dark_frog 0x7f080142 +int drawable module_service_ic_rc_dark_frog2 0x7f080143 +int drawable module_service_ic_rc_dark_frog2_white 0x7f080144 +int drawable module_service_ic_rc_freeze 0x7f080145 +int drawable module_service_ic_rc_freeze2 0x7f080146 +int drawable module_service_ic_rc_freeze2_white 0x7f080147 +int drawable module_service_ic_rc_illegal_park 0x7f080148 +int drawable module_service_ic_rc_illegal_park_white 0x7f080149 +int drawable module_service_ic_rc_parking 0x7f08014a +int drawable module_service_ic_rc_parking2 0x7f08014b +int drawable module_service_ic_rc_road_slippery 0x7f08014c +int drawable module_service_ic_rc_road_slippery_light 0x7f08014d +int drawable module_service_ic_seek_helping 0x7f08014e +int drawable module_services_marker_bkg 0x7f08014f +int drawable module_services_marker_vr_bkg 0x7f080150 +int drawable module_services_marker_vr_bkg_checked 0x7f080151 +int drawable module_switch_map_angle 0x7f080152 +int drawable module_switch_map_bg 0x7f080153 +int drawable mogo_image_accident_small 0x7f080154 +int drawable mogo_image_daolushigong_nor 0x7f080155 +int drawable mogo_image_daolushigong_small 0x7f080156 +int drawable mogo_image_fenglu_nor 0x7f080157 +int drawable mogo_image_fenglu_small 0x7f080158 +int drawable mogo_image_jiaotongjiancha_nor 0x7f080159 +int drawable mogo_image_jiaotongjiancha_small 0x7f08015a +int drawable mogo_image_jiaotongshigu_nor 0x7f08015b +int drawable mogo_image_jiebing_nor 0x7f08015c +int drawable mogo_image_jiebing_small 0x7f08015d +int drawable mogo_image_jishui_nor 0x7f08015e +int drawable mogo_image_jishui_small 0x7f08015f +int drawable mogo_image_nongwu_nor 0x7f080160 +int drawable mogo_image_nongwu_small 0x7f080161 +int drawable mogo_image_shishilukuang_small 0x7f080162 +int drawable mogo_image_shishlukuang_nor 0x7f080163 +int drawable mogo_image_yongdu_nor 0x7f080164 +int drawable mogo_image_yongdu_small 0x7f080165 +int drawable mtrl_dialog_background 0x7f080166 +int drawable mtrl_dropdown_arrow 0x7f080167 +int drawable mtrl_ic_arrow_drop_down 0x7f080168 +int drawable mtrl_ic_arrow_drop_up 0x7f080169 +int drawable mtrl_ic_cancel 0x7f08016a +int drawable mtrl_ic_error 0x7f08016b +int drawable mtrl_navigation_bar_item_background 0x7f08016c +int drawable mtrl_popupmenu_background 0x7f08016d +int drawable mtrl_popupmenu_background_dark 0x7f08016e +int drawable mtrl_tabs_default_indicator 0x7f08016f +int drawable navigation_empty_icon 0x7f080170 +int drawable notice_banner_default 0x7f080171 +int drawable notice_banner_icon_video 0x7f080172 +int drawable notice_player_ic_circle_nor 0x7f080173 +int drawable notice_seekbar_style 0x7f080174 +int drawable notice_video_after_pause 0x7f080175 +int drawable notice_video_pause 0x7f080176 +int drawable notice_video_play 0x7f080177 +int drawable notification_action_background 0x7f080178 +int drawable notification_bg 0x7f080179 +int drawable notification_bg_low 0x7f08017a +int drawable notification_bg_low_normal 0x7f08017b +int drawable notification_bg_low_pressed 0x7f08017c +int drawable notification_bg_normal 0x7f08017d +int drawable notification_bg_normal_pressed 0x7f08017e +int drawable notification_icon_background 0x7f08017f +int drawable notification_template_icon_bg 0x7f080180 +int drawable notification_template_icon_low_bg 0x7f080181 +int drawable notification_tile_bg 0x7f080182 +int drawable notify_panel_notification_icon_bg 0x7f080183 +int drawable placeholder 0x7f080184 +int drawable selector_call_btn_normal 0x7f080185 +int drawable selector_call_btn_pressed 0x7f080186 +int drawable sr 0x7f080187 +int drawable sy 0x7f080188 +int drawable test_custom_background 0x7f080189 +int drawable tooltip_frame_dark 0x7f08018a +int drawable tooltip_frame_light 0x7f08018b +int drawable unlock 0x7f08018c +int drawable utils_toast_bg 0x7f08018d +int drawable v2x_icon_ahead_car_brake 0x7f08018e +int drawable v2x_icon_car_collide_warning 0x7f08018f +int drawable v2x_icon_daolushigong_vr 0x7f080190 +int drawable v2x_icon_fenglu_vr 0x7f080191 +int drawable v2x_icon_jiaotongjiancha_vr 0x7f080192 +int drawable v2x_icon_jiaotongshigu_vr 0x7f080193 +int drawable v2x_icon_jiebing_vr 0x7f080194 +int drawable v2x_icon_jishui_vr 0x7f080195 +int drawable v2x_icon_live_logo 0x7f080196 +int drawable v2x_icon_nongwu_vr 0x7f080197 +int drawable v2x_icon_yongdu_vr 0x7f080198 +int drawable v_to_x_event_ugc_fenglu 0x7f080199 +int drawable v_to_x_event_ugc_shigu 0x7f08019a +int drawable v_to_x_event_ugc_yongdu 0x7f08019b +int drawable v_to_x_marker_1 0x7f08019c +int drawable v_to_x_marker_11 0x7f08019d +int drawable v_to_x_marker_16 0x7f08019e +int drawable v_to_x_marker_2 0x7f08019f +int drawable v_to_x_marker_3 0x7f0801a0 +int drawable v_to_x_marker_5 0x7f0801a1 +int drawable v_to_x_marker_6 0x7f0801a2 +int drawable v_to_x_marker_7 0x7f0801a3 +int drawable v_to_x_marker_8 0x7f0801a4 +int drawable v_to_x_marker_9 0x7f0801a5 +int drawable v_to_x_marker_express 0x7f0801a6 +int drawable v_to_x_marker_taxi 0x7f0801a7 +int drawable v_to_x_warning_car_red 0x7f0801a8 +int drawable video_back 0x7f0801a9 +int drawable video_backward_icon 0x7f0801aa +int drawable video_brightness_6_white_36dp 0x7f0801ab +int drawable video_click_error_selector 0x7f0801ac +int drawable video_click_pause_selector 0x7f0801ad +int drawable video_click_play_selector 0x7f0801ae +int drawable video_dialog_progress 0x7f0801af +int drawable video_dialog_progress_bg 0x7f0801b0 +int drawable video_enlarge 0x7f0801b1 +int drawable video_error_normal 0x7f0801b2 +int drawable video_error_pressed 0x7f0801b3 +int drawable video_forward_icon 0x7f0801b4 +int drawable video_jump_btn_bg 0x7f0801b5 +int drawable video_loading 0x7f0801b6 +int drawable video_loading_bg 0x7f0801b7 +int drawable video_pause_normal 0x7f0801b8 +int drawable video_pause_pressed 0x7f0801b9 +int drawable video_play_normal 0x7f0801ba +int drawable video_play_pressed 0x7f0801bb +int drawable video_progress 0x7f0801bc +int drawable video_seek_progress 0x7f0801bd +int drawable video_seek_thumb 0x7f0801be +int drawable video_seek_thumb_normal 0x7f0801bf +int drawable video_seek_thumb_pressed 0x7f0801c0 +int drawable video_shrink 0x7f0801c1 +int drawable video_small_close 0x7f0801c2 +int drawable video_title_bg 0x7f0801c3 +int drawable video_volume_icon 0x7f0801c4 +int drawable video_volume_progress_bg 0x7f0801c5 +int drawable yi_biao_pan_bg_nor 0x7f0801c6 +int drawable yi_biao_pan_bg_speeding 0x7f0801c7 +int id BOTTOM_END 0x7f0b0001 +int id BOTTOM_START 0x7f0b0002 +int id Full 0x7f0b0003 +int id Half 0x7f0b0004 +int id NO_DEBUG 0x7f0b0005 +int id SHOW_ALL 0x7f0b0006 +int id SHOW_PATH 0x7f0b0007 +int id SHOW_PROGRESS 0x7f0b0008 +int id TOP_END 0x7f0b0009 +int id TOP_START 0x7f0b000a +int id accelerate 0x7f0b000b +int id accessibility_action_clickable_span 0x7f0b000c +int id accessibility_custom_action_0 0x7f0b000d +int id accessibility_custom_action_1 0x7f0b000e +int id accessibility_custom_action_10 0x7f0b000f +int id accessibility_custom_action_11 0x7f0b0010 +int id accessibility_custom_action_12 0x7f0b0011 +int id accessibility_custom_action_13 0x7f0b0012 +int id accessibility_custom_action_14 0x7f0b0013 +int id accessibility_custom_action_15 0x7f0b0014 +int id accessibility_custom_action_16 0x7f0b0015 +int id accessibility_custom_action_17 0x7f0b0016 +int id accessibility_custom_action_18 0x7f0b0017 +int id accessibility_custom_action_19 0x7f0b0018 +int id accessibility_custom_action_2 0x7f0b0019 +int id accessibility_custom_action_20 0x7f0b001a +int id accessibility_custom_action_21 0x7f0b001b +int id accessibility_custom_action_22 0x7f0b001c +int id accessibility_custom_action_23 0x7f0b001d +int id accessibility_custom_action_24 0x7f0b001e +int id accessibility_custom_action_25 0x7f0b001f +int id accessibility_custom_action_26 0x7f0b0020 +int id accessibility_custom_action_27 0x7f0b0021 +int id accessibility_custom_action_28 0x7f0b0022 +int id accessibility_custom_action_29 0x7f0b0023 +int id accessibility_custom_action_3 0x7f0b0024 +int id accessibility_custom_action_30 0x7f0b0025 +int id accessibility_custom_action_31 0x7f0b0026 +int id accessibility_custom_action_4 0x7f0b0027 +int id accessibility_custom_action_5 0x7f0b0028 +int id accessibility_custom_action_6 0x7f0b0029 +int id accessibility_custom_action_7 0x7f0b002a +int id accessibility_custom_action_8 0x7f0b002b +int id accessibility_custom_action_9 0x7f0b002c +int id actionDown 0x7f0b002d +int id actionDownUp 0x7f0b002e +int id actionUp 0x7f0b002f +int id action_bar 0x7f0b0030 +int id action_bar_activity_content 0x7f0b0031 +int id action_bar_container 0x7f0b0032 +int id action_bar_root 0x7f0b0033 +int id action_bar_spinner 0x7f0b0034 +int id action_bar_subtitle 0x7f0b0035 +int id action_bar_title 0x7f0b0036 +int id action_container 0x7f0b0037 +int id action_context_bar 0x7f0b0038 +int id action_divider 0x7f0b0039 +int id action_image 0x7f0b003a +int id action_menu_divider 0x7f0b003b +int id action_menu_presenter 0x7f0b003c +int id action_mode_bar 0x7f0b003d +int id action_mode_bar_stub 0x7f0b003e +int id action_mode_close_button 0x7f0b003f +int id action_text 0x7f0b0040 +int id actions 0x7f0b0041 +int id activity_chooser_view_content 0x7f0b0042 +int id ad_full_id 0x7f0b0043 +int id ad_small_id 0x7f0b0044 +int id ad_time 0x7f0b0045 +int id add 0x7f0b0046 +int id alertTitle 0x7f0b0047 +int id aligned 0x7f0b0048 +int id allStates 0x7f0b0049 +int id animateToEnd 0x7f0b004a +int id animateToStart 0x7f0b004b +int id antiClockwise 0x7f0b004c +int id anticipate 0x7f0b004d +int id app_video_brightness 0x7f0b004e +int id app_video_brightness_box 0x7f0b004f +int id app_video_brightness_icon 0x7f0b0050 +int id arc 0x7f0b0051 +int id asConfigured 0x7f0b0052 +int id async 0x7f0b0053 +int id auto 0x7f0b0054 +int id autoComplete 0x7f0b0055 +int id autoCompleteToEnd 0x7f0b0056 +int id autoCompleteToStart 0x7f0b0057 +int id back 0x7f0b0058 +int id back_tiny 0x7f0b0059 +int id barrier 0x7f0b005a +int id baseline 0x7f0b005b +int id bestChoice 0x7f0b005c +int id bezier_view 0x7f0b005d +int id blocking 0x7f0b005e +int id bottom 0x7f0b005f +int id bottom_progressbar 0x7f0b0060 +int id bounce 0x7f0b0061 +int id buttonPanel 0x7f0b0062 +int id cancel_button 0x7f0b0063 +int id carryVelocity 0x7f0b0064 +int id center 0x7f0b0065 +int id centerCrop 0x7f0b0066 +int id centerInside 0x7f0b0067 +int id chain 0x7f0b0068 +int id checkbox 0x7f0b0069 +int id checked 0x7f0b006a +int id chip 0x7f0b006b +int id chip1 0x7f0b006c +int id chip2 0x7f0b006d +int id chip3 0x7f0b006e +int id chip_group 0x7f0b006f +int id chronometer 0x7f0b0070 +int id circle 0x7f0b0071 +int id circle_center 0x7f0b0072 +int id clMarkerContent 0x7f0b0073 +int id clMarkerTopView 0x7f0b0074 +int id clear_text 0x7f0b0075 +int id clockwise 0x7f0b0076 +int id closest 0x7f0b0077 +int id confirm_button 0x7f0b0078 +int id constraint 0x7f0b0079 +int id container 0x7f0b007a +int id content 0x7f0b007b +int id contentPanel 0x7f0b007c +int id contiguous 0x7f0b007d +int id continuousVelocity 0x7f0b007e +int id coordinator 0x7f0b007f +int id cos 0x7f0b0080 +int id counterclockwise 0x7f0b0081 +int id current 0x7f0b0082 +int id currentState 0x7f0b0083 +int id custom 0x7f0b0084 +int id customPanel 0x7f0b0085 +int id customRatingBar 0x7f0b0086 +int id cut 0x7f0b0087 +int id date_picker_actions 0x7f0b0088 +int id decelerate 0x7f0b0089 +int id decelerateAndComplete 0x7f0b008a +int id decor_content_parent 0x7f0b008b +int id default_activity_button 0x7f0b008c +int id deltaRelative 0x7f0b008d +int id design_bottom_sheet 0x7f0b008e +int id design_menu_item_action_area 0x7f0b008f +int id design_menu_item_action_area_stub 0x7f0b0090 +int id design_menu_item_text 0x7f0b0091 +int id design_navigation_view 0x7f0b0092 +int id dialog_button 0x7f0b0093 +int id disjoint 0x7f0b0094 +int id dragAnticlockwise 0x7f0b0095 +int id dragClockwise 0x7f0b0096 +int id dragDown 0x7f0b0097 +int id dragEnd 0x7f0b0098 +int id dragLeft 0x7f0b0099 +int id dragRight 0x7f0b009a +int id dragStart 0x7f0b009b +int id dragUp 0x7f0b009c +int id dropdown_menu 0x7f0b009d +int id duration_image_tip 0x7f0b009e +int id duration_progressbar 0x7f0b009f +int id easeIn 0x7f0b00a0 +int id easeInOut 0x7f0b00a1 +int id easeOut 0x7f0b00a2 +int id east 0x7f0b00a3 +int id edit_query 0x7f0b00a4 +int id elastic 0x7f0b00a5 +int id end 0x7f0b00a6 +int id endToStart 0x7f0b00a7 +int id exo_artwork 0x7f0b00a8 +int id exo_content_frame 0x7f0b00a9 +int id exo_controller_placeholder 0x7f0b00aa +int id exo_duration 0x7f0b00ab +int id exo_ffwd 0x7f0b00ac +int id exo_next 0x7f0b00ad +int id exo_overlay 0x7f0b00ae +int id exo_pause 0x7f0b00af +int id exo_play 0x7f0b00b0 +int id exo_position 0x7f0b00b1 +int id exo_prev 0x7f0b00b2 +int id exo_progress 0x7f0b00b3 +int id exo_rew 0x7f0b00b4 +int id exo_shutter 0x7f0b00b5 +int id exo_subtitles 0x7f0b00b6 +int id expand_activities_button 0x7f0b00b7 +int id expanded_menu 0x7f0b00b8 +int id fade 0x7f0b00b9 +int id fill 0x7f0b00ba +int id filled 0x7f0b00bb +int id fit 0x7f0b00bc +int id fitBottomStart 0x7f0b00bd +int id fitCenter 0x7f0b00be +int id fitEnd 0x7f0b00bf +int id fitStart 0x7f0b00c0 +int id fitXY 0x7f0b00c1 +int id fixed 0x7f0b00c2 +int id fixed_height 0x7f0b00c3 +int id fixed_width 0x7f0b00c4 +int id flip 0x7f0b00c5 +int id floating 0x7f0b00c6 +int id focusCrop 0x7f0b00c7 +int id forever 0x7f0b00c8 +int id fragment_container_view_tag 0x7f0b00c9 +int id frost 0x7f0b00ca +int id full_id 0x7f0b00cb +int id fullscreen 0x7f0b00cc +int id ghost_view 0x7f0b00cd +int id ghost_view_holder 0x7f0b00ce +int id glide_custom_view_target_tag 0x7f0b00cf +int id gone 0x7f0b00d0 +int id group_divider 0x7f0b00d1 +int id guideline 0x7f0b00d2 +int id header_title 0x7f0b00d3 +int id home 0x7f0b00d4 +int id honorRequest 0x7f0b00d5 +int id horizontal 0x7f0b00d6 +int id horizontal_only 0x7f0b00d7 +int id icon 0x7f0b00d8 +int id icon_group 0x7f0b00d9 +int id ignore 0x7f0b00da +int id ignoreRequest 0x7f0b00db +int id image 0x7f0b00dc +int id immediateStop 0x7f0b00dd +int id included 0x7f0b00de +int id info 0x7f0b00df +int id invisible 0x7f0b00e0 +int id inward 0x7f0b00e1 +int id italic 0x7f0b00e2 +int id item_touch_helper_previous_elevation 0x7f0b00e3 +int id item_video_cover 0x7f0b00e4 +int id ivCar 0x7f0b00e5 +int id ivIcon 0x7f0b00e6 +int id ivReverseTriangle 0x7f0b00e7 +int id ivUserHead 0x7f0b00e8 +int id iv_camera_traffic 0x7f0b00e9 +int id iv_close 0x7f0b00ea +int id jumpToEnd 0x7f0b00eb +int id jumpToStart 0x7f0b00ec +int id jump_ad 0x7f0b00ed +int id labeled 0x7f0b00ee +int id layout 0x7f0b00ef +int id layout_bottom 0x7f0b00f0 +int id layout_top 0x7f0b00f1 +int id left 0x7f0b00f2 +int id leftToRight 0x7f0b00f3 +int id line1 0x7f0b00f4 +int id line3 0x7f0b00f5 +int id linear 0x7f0b00f6 +int id listMode 0x7f0b00f7 +int id list_item 0x7f0b00f8 +int id loading 0x7f0b00f9 +int id loading_imageview 0x7f0b00fa +int id loading_liner_layout 0x7f0b00fb +int id loading_text 0x7f0b00fc +int id lock_screen 0x7f0b00fd +int id masked 0x7f0b00fe +int id match_constraint 0x7f0b00ff +int id match_parent 0x7f0b0100 +int id material_clock_display 0x7f0b0101 +int id material_clock_face 0x7f0b0102 +int id material_clock_hand 0x7f0b0103 +int id material_clock_period_am_button 0x7f0b0104 +int id material_clock_period_pm_button 0x7f0b0105 +int id material_clock_period_toggle 0x7f0b0106 +int id material_hour_text_input 0x7f0b0107 +int id material_hour_tv 0x7f0b0108 +int id material_label 0x7f0b0109 +int id material_minute_text_input 0x7f0b010a +int id material_minute_tv 0x7f0b010b +int id material_textinput_timepicker 0x7f0b010c +int id material_timepicker_cancel_button 0x7f0b010d +int id material_timepicker_container 0x7f0b010e +int id material_timepicker_edit_text 0x7f0b010f +int id material_timepicker_mode_button 0x7f0b0110 +int id material_timepicker_ok_button 0x7f0b0111 +int id material_timepicker_view 0x7f0b0112 +int id material_value_index 0x7f0b0113 +int id message 0x7f0b0114 +int id middle 0x7f0b0115 +int id mini 0x7f0b0116 +int id moduleCallChatBg 0x7f0b0117 +int id moduleCallChatCoverBg 0x7f0b0118 +int id moduleCallChatRatingBar 0x7f0b0119 +int id moduleCallChatUserCaller 0x7f0b011a +int id moduleCallChatUserClose 0x7f0b011b +int id moduleCallChatUserHead 0x7f0b011c +int id moduleCallChatUserJoinTeam 0x7f0b011d +int id moduleCallChatUserNickName 0x7f0b011e +int id module_carchatting_call_hangUp 0x7f0b011f +int id module_carchatting_call_head 0x7f0b0120 +int id module_carchatting_call_nickname 0x7f0b0121 +int id module_carchatting_call_time 0x7f0b0122 +int id module_carchatting_civ_head 0x7f0b0123 +int id module_carchatting_civ_head0 0x7f0b0124 +int id module_carchatting_civ_head1 0x7f0b0125 +int id module_carchatting_civ_head2 0x7f0b0126 +int id module_carchatting_civ_head3 0x7f0b0127 +int id module_carchatting_civ_head4 0x7f0b0128 +int id module_carchatting_incoming_answer 0x7f0b0129 +int id module_carchatting_incoming_hangUp 0x7f0b012a +int id module_carchatting_iv_join 0x7f0b012b +int id module_carchatting_iv_refuse 0x7f0b012c +int id module_carchatting_iv_team_quit 0x7f0b012d +int id module_carchatting_rl_call_view 0x7f0b012e +int id module_carchatting_rl_incoming_view 0x7f0b012f +int id module_carchatting_rl_match_init_view 0x7f0b0130 +int id module_carchatting_rl_matching_view 0x7f0b0131 +int id module_carchatting_team_ll_head 0x7f0b0132 +int id module_carchatting_team_num 0x7f0b0133 +int id module_carchatting_team_rl_view 0x7f0b0134 +int id module_carchatting_team_tv_info 0x7f0b0135 +int id module_carchatting_tv_cancel_match 0x7f0b0136 +int id module_carchatting_tv_content 0x7f0b0137 +int id module_carchatting_tv_identity 0x7f0b0138 +int id module_carchatting_tv_nickname 0x7f0b0139 +int id module_carchatting_tv_title 0x7f0b013a +int id module_commons_marker_car_model 0x7f0b013b +int id module_commons_toast_left_drawable 0x7f0b013c +int id module_commons_toast_msg 0x7f0b013d +int id module_commons_wm_dialog_button_cancel 0x7f0b013e +int id module_commons_wm_dialog_button_ok 0x7f0b013f +int id module_commons_wm_dialog_content 0x7f0b0140 +int id module_map_amap_my_location_bg_iv 0x7f0b0141 +int id module_map_amap_my_location_iv 0x7f0b0142 +int id month_grid 0x7f0b0143 +int id month_navigation_bar 0x7f0b0144 +int id month_navigation_fragment_toggle 0x7f0b0145 +int id month_navigation_next 0x7f0b0146 +int id month_navigation_previous 0x7f0b0147 +int id month_title 0x7f0b0148 +int id motion_base 0x7f0b0149 +int id mtrl_anchor_parent 0x7f0b014a +int id mtrl_calendar_day_selector_frame 0x7f0b014b +int id mtrl_calendar_days_of_week 0x7f0b014c +int id mtrl_calendar_frame 0x7f0b014d +int id mtrl_calendar_main_pane 0x7f0b014e +int id mtrl_calendar_months 0x7f0b014f +int id mtrl_calendar_selection_frame 0x7f0b0150 +int id mtrl_calendar_text_input_frame 0x7f0b0151 +int id mtrl_calendar_year_selector_frame 0x7f0b0152 +int id mtrl_card_checked_layer_id 0x7f0b0153 +int id mtrl_child_content_container 0x7f0b0154 +int id mtrl_internal_children_alpha_tag 0x7f0b0155 +int id mtrl_motion_snapshot_view 0x7f0b0156 +int id mtrl_picker_fullscreen 0x7f0b0157 +int id mtrl_picker_header 0x7f0b0158 +int id mtrl_picker_header_selection_text 0x7f0b0159 +int id mtrl_picker_header_title_and_selection 0x7f0b015a +int id mtrl_picker_header_toggle 0x7f0b015b +int id mtrl_picker_text_input_date 0x7f0b015c +int id mtrl_picker_text_input_range_end 0x7f0b015d +int id mtrl_picker_text_input_range_start 0x7f0b015e +int id mtrl_picker_title_text 0x7f0b015f +int id mtrl_view_tag_bottom_padding 0x7f0b0160 +int id multiply 0x7f0b0161 +int id navigation_bar_item_icon_view 0x7f0b0162 +int id navigation_bar_item_labels_group 0x7f0b0163 +int id navigation_bar_item_large_label_view 0x7f0b0164 +int id navigation_bar_item_small_label_view 0x7f0b0165 +int id navigation_header_container 0x7f0b0166 +int id neverCompleteToEnd 0x7f0b0167 +int id neverCompleteToStart 0x7f0b0168 +int id noState 0x7f0b0169 +int id none 0x7f0b016a +int id normal 0x7f0b016b +int id north 0x7f0b016c +int id notification_background 0x7f0b016d +int id notification_main_column 0x7f0b016e +int id notification_main_column_container 0x7f0b016f +int id off 0x7f0b0170 +int id on 0x7f0b0171 +int id outline 0x7f0b0172 +int id outward 0x7f0b0173 +int id overshoot 0x7f0b0174 +int id packed 0x7f0b0175 +int id parallax 0x7f0b0176 +int id parent 0x7f0b0177 +int id parentPanel 0x7f0b0178 +int id parentRelative 0x7f0b0179 +int id parent_matrix 0x7f0b017a +int id password_toggle 0x7f0b017b +int id path 0x7f0b017c +int id pathRelative 0x7f0b017d +int id percent 0x7f0b017e +int id pin 0x7f0b017f +int id position 0x7f0b0180 +int id postLayout 0x7f0b0181 +int id preview_layout 0x7f0b0182 +int id progress 0x7f0b0183 +int id progress_circular 0x7f0b0184 +int id progress_horizontal 0x7f0b0185 +int id radio 0x7f0b0186 +int id rectangles 0x7f0b0187 +int id refresh_button 0x7f0b0188 +int id reverseSawtooth 0x7f0b0189 +int id right 0x7f0b018a +int id rightToLeft 0x7f0b018b +int id right_icon 0x7f0b018c +int id right_side 0x7f0b018d +int id round 0x7f0b018e +int id rounded 0x7f0b018f +int id row_index_key 0x7f0b0190 +int id rv_teammates 0x7f0b0191 +int id save_non_transition_alpha 0x7f0b0192 +int id save_overlay_view 0x7f0b0193 +int id sawtooth 0x7f0b0194 +int id scale 0x7f0b0195 +int id screen 0x7f0b0196 +int id scrollIndicatorDown 0x7f0b0197 +int id scrollIndicatorUp 0x7f0b0198 +int id scrollView 0x7f0b0199 +int id scrollable 0x7f0b019a +int id search_badge 0x7f0b019b +int id search_bar 0x7f0b019c +int id search_button 0x7f0b019d +int id search_close_btn 0x7f0b019e +int id search_edit_frame 0x7f0b019f +int id search_go_btn 0x7f0b01a0 +int id search_mag_icon 0x7f0b01a1 +int id search_plate 0x7f0b01a2 +int id search_src_text 0x7f0b01a3 +int id search_voice_btn 0x7f0b01a4 +int id select_dialog_listview 0x7f0b01a5 +int id selected 0x7f0b01a6 +int id selection_type 0x7f0b01a7 +int id shape_id 0x7f0b01a8 +int id sharedValueSet 0x7f0b01a9 +int id sharedValueUnset 0x7f0b01aa +int id shortcut 0x7f0b01ab +int id sin 0x7f0b01ac +int id skipped 0x7f0b01ad +int id slide 0x7f0b01ae +int id small_close 0x7f0b01af +int id small_id 0x7f0b01b0 +int id snackbar_action 0x7f0b01b1 +int id snackbar_text 0x7f0b01b2 +int id south 0x7f0b01b3 +int id spacer 0x7f0b01b4 +int id special_effects_controller_view_tag 0x7f0b01b5 +int id spline 0x7f0b01b6 +int id split_action_bar 0x7f0b01b7 +int id spread 0x7f0b01b8 +int id spread_inside 0x7f0b01b9 +int id spring 0x7f0b01ba +int id square 0x7f0b01bb +int id src_atop 0x7f0b01bc +int id src_in 0x7f0b01bd +int id src_over 0x7f0b01be +int id standard 0x7f0b01bf +int id start 0x7f0b01c0 +int id startHorizontal 0x7f0b01c1 +int id startToEnd 0x7f0b01c2 +int id startVertical 0x7f0b01c3 +int id staticLayout 0x7f0b01c4 +int id staticPostLayout 0x7f0b01c5 +int id stop 0x7f0b01c6 +int id stretch 0x7f0b01c7 +int id submenuarrow 0x7f0b01c8 +int id submit_area 0x7f0b01c9 +int id surface_container 0x7f0b01ca +int id surface_view 0x7f0b01cb +int id tabMode 0x7f0b01cc +int id tag_accessibility_actions 0x7f0b01cd +int id tag_accessibility_clickable_spans 0x7f0b01ce +int id tag_accessibility_heading 0x7f0b01cf +int id tag_accessibility_pane_title 0x7f0b01d0 +int id tag_click_time 0x7f0b01d1 +int id tag_on_apply_window_listener 0x7f0b01d2 +int id tag_on_receive_content_listener 0x7f0b01d3 +int id tag_on_receive_content_mime_types 0x7f0b01d4 +int id tag_screen_reader_focusable 0x7f0b01d5 +int id tag_state_description 0x7f0b01d6 +int id tag_transition_group 0x7f0b01d7 +int id tag_unhandled_key_event_manager 0x7f0b01d8 +int id tag_unhandled_key_listeners 0x7f0b01d9 +int id tag_window_insets_animation_callback 0x7f0b01da +int id test_checkbox_android_button_tint 0x7f0b01db +int id test_checkbox_app_button_tint 0x7f0b01dc +int id test_radiobutton_android_button_tint 0x7f0b01dd +int id test_radiobutton_app_button_tint 0x7f0b01de +int id text 0x7f0b01df +int id text2 0x7f0b01e0 +int id textSpacerNoButtons 0x7f0b01e1 +int id textSpacerNoTitle 0x7f0b01e2 +int id text_input_end_icon 0x7f0b01e3 +int id text_input_error_icon 0x7f0b01e4 +int id text_input_start_icon 0x7f0b01e5 +int id textinput_counter 0x7f0b01e6 +int id textinput_error 0x7f0b01e7 +int id textinput_helper_text 0x7f0b01e8 +int id textinput_placeholder 0x7f0b01e9 +int id textinput_prefix_text 0x7f0b01ea +int id textinput_suffix_text 0x7f0b01eb +int id texture_view 0x7f0b01ec +int id thumb 0x7f0b01ed +int id thumbImage 0x7f0b01ee +int id time 0x7f0b01ef +int id title 0x7f0b01f0 +int id titleDividerNoCustom 0x7f0b01f1 +int id title_template 0x7f0b01f2 +int id top 0x7f0b01f3 +int id topPanel 0x7f0b01f4 +int id total 0x7f0b01f5 +int id touch_outside 0x7f0b01f6 +int id transition_current_scene 0x7f0b01f7 +int id transition_layout_save 0x7f0b01f8 +int id transition_position 0x7f0b01f9 +int id transition_scene_layoutid_cache 0x7f0b01fa +int id transition_transform 0x7f0b01fb +int id triangle 0x7f0b01fc +int id tvMarkerContent 0x7f0b01fd +int id tv_current 0x7f0b01fe +int id tv_duration 0x7f0b01ff +int id tv_num 0x7f0b0200 +int id unchecked 0x7f0b0201 +int id uniform 0x7f0b0202 +int id unlabeled 0x7f0b0203 +int id up 0x7f0b0204 +int id utvBottomIconView 0x7f0b0205 +int id utvLeftIconView 0x7f0b0206 +int id utvRightIconView 0x7f0b0207 +int id utvTopIconView 0x7f0b0208 +int id vertical 0x7f0b0209 +int id vertical_only 0x7f0b020a +int id view_lifecycle_owner 0x7f0b020b +int id view_offset_helper 0x7f0b020c +int id view_transition 0x7f0b020d +int id view_tree_lifecycle_owner 0x7f0b020e +int id view_tree_saved_state_registry_owner 0x7f0b020f +int id view_tree_view_model_store_owner 0x7f0b0210 +int id visible 0x7f0b0211 +int id visible_removing_fragment_view_tag 0x7f0b0212 +int id volume_progressbar 0x7f0b0213 +int id west 0x7f0b0214 +int id widget_container 0x7f0b0215 +int id withinBounds 0x7f0b0216 +int id wrap 0x7f0b0217 +int id wrap_content 0x7f0b0218 +int id wrap_content_constrained 0x7f0b0219 +int id x_left 0x7f0b021a +int id x_right 0x7f0b021b +int id zero_corner_chip 0x7f0b021c +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer app_bar_elevation_anim_duration 0x7f0c0003 +int integer bottom_sheet_slide_duration 0x7f0c0004 +int integer cancel_button_image_alpha 0x7f0c0005 +int integer config_tooltipAnimTime 0x7f0c0006 +int integer design_snackbar_text_max_lines 0x7f0c0007 +int integer design_tab_indicator_anim_duration_ms 0x7f0c0008 +int integer hide_password_duration 0x7f0c0009 +int integer material_motion_duration_long_1 0x7f0c000a +int integer material_motion_duration_long_2 0x7f0c000b +int integer material_motion_duration_medium_1 0x7f0c000c +int integer material_motion_duration_medium_2 0x7f0c000d +int integer material_motion_duration_short_1 0x7f0c000e +int integer material_motion_duration_short_2 0x7f0c000f +int integer material_motion_path 0x7f0c0010 +int integer mtrl_badge_max_character_count 0x7f0c0011 +int integer mtrl_btn_anim_delay_ms 0x7f0c0012 +int integer mtrl_btn_anim_duration_ms 0x7f0c0013 +int integer mtrl_calendar_header_orientation 0x7f0c0014 +int integer mtrl_calendar_selection_text_lines 0x7f0c0015 +int integer mtrl_calendar_year_selector_span 0x7f0c0016 +int integer mtrl_card_anim_delay_ms 0x7f0c0017 +int integer mtrl_card_anim_duration_ms 0x7f0c0018 +int integer mtrl_chip_anim_duration 0x7f0c0019 +int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c001a +int integer show_password_duration 0x7f0c001b +int integer status_bar_notification_info_maxnum 0x7f0c001c +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int interpolator mtrl_fast_out_linear_in 0x7f0d0008 +int interpolator mtrl_fast_out_slow_in 0x7f0d0009 +int interpolator mtrl_linear 0x7f0d000a +int interpolator mtrl_linear_out_slow_in 0x7f0d000b +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout custom_dialog 0x7f0e001d +int layout design_bottom_navigation_item 0x7f0e001e +int layout design_bottom_sheet_dialog 0x7f0e001f +int layout design_layout_snackbar 0x7f0e0020 +int layout design_layout_snackbar_include 0x7f0e0021 +int layout design_layout_tab_icon 0x7f0e0022 +int layout design_layout_tab_text 0x7f0e0023 +int layout design_menu_item_action_area 0x7f0e0024 +int layout design_navigation_item 0x7f0e0025 +int layout design_navigation_item_header 0x7f0e0026 +int layout design_navigation_item_separator 0x7f0e0027 +int layout design_navigation_item_subheader 0x7f0e0028 +int layout design_navigation_menu 0x7f0e0029 +int layout design_navigation_menu_item 0x7f0e002a +int layout design_text_input_end_icon 0x7f0e002b +int layout design_text_input_start_icon 0x7f0e002c +int layout exo_playback_control_view 0x7f0e002d +int layout exo_simple_player_view 0x7f0e002e +int layout item_notice_video 0x7f0e002f +int layout item_notice_video_small 0x7f0e0030 +int layout item_v2x_crossroad_live_video 0x7f0e0031 +int layout material_chip_input_combo 0x7f0e0032 +int layout material_clock_display 0x7f0e0033 +int layout material_clock_display_divider 0x7f0e0034 +int layout material_clock_period_toggle 0x7f0e0035 +int layout material_clock_period_toggle_land 0x7f0e0036 +int layout material_clockface_textview 0x7f0e0037 +int layout material_clockface_view 0x7f0e0038 +int layout material_radial_view_group 0x7f0e0039 +int layout material_textinput_timepicker 0x7f0e003a +int layout material_time_chip 0x7f0e003b +int layout material_time_input 0x7f0e003c +int layout material_timepicker 0x7f0e003d +int layout material_timepicker_dialog 0x7f0e003e +int layout material_timepicker_textinput_display 0x7f0e003f +int layout modeules_commons_layout_custom_ratingbar 0x7f0e0040 +int layout modudle_camera_layout_info 0x7f0e0041 +int layout modudle_services_marker_layout 0x7f0e0042 +int layout modudle_services_marker_layout_info 0x7f0e0043 +int layout modudle_services_marker_vr_layout 0x7f0e0044 +int layout module_car_chatting_fragment_team_view 0x7f0e0045 +int layout module_car_chatting_launcher_calling_hawk_eye_view 0x7f0e0046 +int layout module_car_chatting_launcher_calling_view 0x7f0e0047 +int layout module_car_chatting_launcher_incoming_hawk_eye_view 0x7f0e0048 +int layout module_car_chatting_launcher_team_invitation_hawk_eye_view 0x7f0e0049 +int layout module_car_chatting_launcher_team_invitation_view 0x7f0e004a +int layout module_car_chatting_launcher_teammate_item 0x7f0e004b +int layout module_car_chatting_launcher_user_view 0x7f0e004c +int layout module_common_bezier_layout 0x7f0e004d +int layout module_common_my_location 0x7f0e004e +int layout module_common_warning_marker_bottom 0x7f0e004f +int layout module_common_warning_marker_front 0x7f0e0050 +int layout module_commons_layout_car 0x7f0e0051 +int layout module_commons_layout_toast 0x7f0e0052 +int layout module_commons_layout_toast_with_left_drawable 0x7f0e0053 +int layout module_commons_layout_wm_dialog 0x7f0e0054 +int layout mtrl_alert_dialog 0x7f0e0055 +int layout mtrl_alert_dialog_actions 0x7f0e0056 +int layout mtrl_alert_dialog_title 0x7f0e0057 +int layout mtrl_alert_select_dialog_item 0x7f0e0058 +int layout mtrl_alert_select_dialog_multichoice 0x7f0e0059 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0e005a +int layout mtrl_calendar_day 0x7f0e005b +int layout mtrl_calendar_day_of_week 0x7f0e005c +int layout mtrl_calendar_days_of_week 0x7f0e005d +int layout mtrl_calendar_horizontal 0x7f0e005e +int layout mtrl_calendar_month 0x7f0e005f +int layout mtrl_calendar_month_labeled 0x7f0e0060 +int layout mtrl_calendar_month_navigation 0x7f0e0061 +int layout mtrl_calendar_months 0x7f0e0062 +int layout mtrl_calendar_vertical 0x7f0e0063 +int layout mtrl_calendar_year 0x7f0e0064 +int layout mtrl_layout_snackbar 0x7f0e0065 +int layout mtrl_layout_snackbar_include 0x7f0e0066 +int layout mtrl_navigation_rail_item 0x7f0e0067 +int layout mtrl_picker_actions 0x7f0e0068 +int layout mtrl_picker_dialog 0x7f0e0069 +int layout mtrl_picker_fullscreen 0x7f0e006a +int layout mtrl_picker_header_dialog 0x7f0e006b +int layout mtrl_picker_header_fullscreen 0x7f0e006c +int layout mtrl_picker_header_selection_text 0x7f0e006d +int layout mtrl_picker_header_title_text 0x7f0e006e +int layout mtrl_picker_header_toggle 0x7f0e006f +int layout mtrl_picker_text_input_date 0x7f0e0070 +int layout mtrl_picker_text_input_date_range 0x7f0e0071 +int layout network_loading_item 0x7f0e0072 +int layout notice_video_card_layout 0x7f0e0073 +int layout notification_action 0x7f0e0074 +int layout notification_action_tombstone 0x7f0e0075 +int layout notification_template_custom_big 0x7f0e0076 +int layout notification_template_icon_group 0x7f0e0077 +int layout notification_template_part_chronometer 0x7f0e0078 +int layout notification_template_part_time 0x7f0e0079 +int layout select_dialog_item_material 0x7f0e007a +int layout select_dialog_multichoice_material 0x7f0e007b +int layout select_dialog_singlechoice_material 0x7f0e007c +int layout support_simple_spinner_dropdown_item 0x7f0e007d +int layout test_action_chip 0x7f0e007e +int layout test_chip_zero_corner_radius 0x7f0e007f +int layout test_design_checkbox 0x7f0e0080 +int layout test_design_radiobutton 0x7f0e0081 +int layout test_navigation_bar_item_layout 0x7f0e0082 +int layout test_reflow_chipgroup 0x7f0e0083 +int layout test_toolbar 0x7f0e0084 +int layout test_toolbar_custom_background 0x7f0e0085 +int layout test_toolbar_elevation 0x7f0e0086 +int layout test_toolbar_surface 0x7f0e0087 +int layout text_view_with_line_height_from_appearance 0x7f0e0088 +int layout text_view_with_line_height_from_layout 0x7f0e0089 +int layout text_view_with_line_height_from_style 0x7f0e008a +int layout text_view_with_theme_line_height 0x7f0e008b +int layout text_view_without_line_height 0x7f0e008c +int layout utils_toast_view 0x7f0e008d +int layout video_brightness 0x7f0e008e +int layout video_layout_ad 0x7f0e008f +int layout video_layout_custom 0x7f0e0090 +int layout video_layout_normal 0x7f0e0091 +int layout video_layout_sample_ad 0x7f0e0092 +int layout video_layout_standard 0x7f0e0093 +int layout video_progress_dialog 0x7f0e0094 +int layout video_volume_dialog 0x7f0e0095 +int mipmap module_callchatting_launcher_incoming_answer 0x7f100001 +int mipmap module_callchatting_launcher_incoming_hangup 0x7f100002 +int mipmap module_callchatting_match 0x7f100003 +int mipmap module_callchatting_user_caller 0x7f100004 +int mipmap module_callchatting_user_close 0x7f100005 +int mipmap module_callchatting_user_join_team 0x7f100006 +int mipmap module_carchatting_caller 0x7f100007 +int mipmap module_carchatting_default_head_img 0x7f100008 +int mipmap module_carchatting_hawk_eye_default_head_img 0x7f100009 +int mipmap module_carchatting_launcher_calling_hangup 0x7f10000a +int mipmap module_carchatting_user_cover_bg 0x7f10000b +int plurals mtrl_badge_content_description 0x7f120001 +int raw call 0x7f130001 +int raw chuzuche 0x7f130002 +int raw fangkuang 0x7f130003 +int raw jiantou 0x7f130004 +int raw match1 0x7f130005 +int raw match2 0x7f130006 +int raw match3 0x7f130007 +int raw qfpz 0x7f130008 +int raw shexiangtou 0x7f130009 +int raw special_vehicle 0x7f13000a +int raw stopline 0x7f13000b +int raw traffic_daba 0x7f13000c +int raw traffic_kache 0x7f13000d +int raw traffic_motuoche 0x7f13000e +int raw traffic_people 0x7f13000f +int raw traffic_tachexiaoche 0x7f130010 +int raw traffic_unkonwn 0x7f130011 +int raw traffic_zixingche 0x7f130012 +int raw v2x_daolujiebing 0x7f130013 +int raw v2x_daolujishui 0x7f130014 +int raw v2x_daolushigong 0x7f130015 +int raw v2x_guzhangqiuzhu 0x7f130016 +int raw v2x_jiaotongjiancha 0x7f130017 +int raw v2x_nongwu 0x7f130018 +int raw v2x_shigong_warning 0x7f130019 +int raw v2x_shigu 0x7f13001a +int raw v2x_shishilukuang 0x7f13001b +int raw v2x_yongdu 0x7f13001c +int raw xiaobache 0x7f13001d +int raw ziche 0x7f13001e +int string N_A 0x7f140001 +int string TrackType_audio 0x7f140002 +int string TrackType_metadata 0x7f140003 +int string TrackType_subtitle 0x7f140004 +int string TrackType_timedtext 0x7f140005 +int string TrackType_unknown 0x7f140006 +int string TrackType_video 0x7f140007 +int string VideoView_ar_16_9_fit_parent 0x7f140008 +int string VideoView_ar_4_3_fit_parent 0x7f140009 +int string VideoView_ar_aspect_fill_parent 0x7f14000a +int string VideoView_ar_aspect_fit_parent 0x7f14000b +int string VideoView_ar_aspect_wrap_content 0x7f14000c +int string VideoView_ar_match_parent 0x7f14000d +int string VideoView_error_button 0x7f14000e +int string VideoView_error_text_invalid_progressive_playback 0x7f14000f +int string VideoView_error_text_unknown 0x7f140010 +int string VideoView_info_text_video_not_supported 0x7f140011 +int string VideoView_player_AndroidMediaPlayer 0x7f140012 +int string VideoView_player_IjkExoMediaPlayer 0x7f140013 +int string VideoView_player_IjkMediaPlayer 0x7f140014 +int string VideoView_player_none 0x7f140015 +int string VideoView_render_none 0x7f140016 +int string VideoView_render_surface_view 0x7f140017 +int string VideoView_render_texture_view 0x7f140018 +int string a_cache 0x7f140019 +int string abc_action_bar_home_description 0x7f14001a +int string abc_action_bar_up_description 0x7f14001b +int string abc_action_menu_overflow_description 0x7f14001c +int string abc_action_mode_done 0x7f14001d +int string abc_activity_chooser_view_see_all 0x7f14001e +int string abc_activitychooserview_choose_application 0x7f14001f +int string abc_capital_off 0x7f140020 +int string abc_capital_on 0x7f140021 +int string abc_font_family_body_1_material 0x7f140022 +int string abc_font_family_body_2_material 0x7f140023 +int string abc_font_family_button_material 0x7f140024 +int string abc_font_family_caption_material 0x7f140025 +int string abc_font_family_display_1_material 0x7f140026 +int string abc_font_family_display_2_material 0x7f140027 +int string abc_font_family_display_3_material 0x7f140028 +int string abc_font_family_display_4_material 0x7f140029 +int string abc_font_family_headline_material 0x7f14002a +int string abc_font_family_menu_material 0x7f14002b +int string abc_font_family_subhead_material 0x7f14002c +int string abc_font_family_title_material 0x7f14002d +int string abc_menu_alt_shortcut_label 0x7f14002e +int string abc_menu_ctrl_shortcut_label 0x7f14002f +int string abc_menu_delete_shortcut_label 0x7f140030 +int string abc_menu_enter_shortcut_label 0x7f140031 +int string abc_menu_function_shortcut_label 0x7f140032 +int string abc_menu_meta_shortcut_label 0x7f140033 +int string abc_menu_shift_shortcut_label 0x7f140034 +int string abc_menu_space_shortcut_label 0x7f140035 +int string abc_menu_sym_shortcut_label 0x7f140036 +int string abc_prepend_shortcut_label 0x7f140037 +int string abc_search_hint 0x7f140038 +int string abc_searchview_description_clear 0x7f140039 +int string abc_searchview_description_query 0x7f14003a +int string abc_searchview_description_search 0x7f14003b +int string abc_searchview_description_submit 0x7f14003c +int string abc_searchview_description_voice 0x7f14003d +int string abc_shareactionprovider_share_with 0x7f14003e +int string abc_shareactionprovider_share_with_application 0x7f14003f +int string abc_toolbar_collapse_description 0x7f140040 +int string androidx_startup 0x7f140041 +int string app_name 0x7f140042 +int string appbar_scrolling_view_behavior 0x7f140043 +int string bit_rate 0x7f140044 +int string bottom_sheet_behavior 0x7f140045 +int string bottomsheet_action_expand_halfway 0x7f140046 +int string character_counter_content_description 0x7f140047 +int string character_counter_overflowed_content_description 0x7f140048 +int string character_counter_pattern 0x7f140049 +int string chip_text 0x7f14004a +int string clear_text_end_icon_content_description 0x7f14004b +int string close 0x7f14004c +int string error_icon_content_description 0x7f14004d +int string exit 0x7f14004e +int string exo_controls_fastforward_description 0x7f14004f +int string exo_controls_next_description 0x7f140050 +int string exo_controls_pause_description 0x7f140051 +int string exo_controls_play_description 0x7f140052 +int string exo_controls_previous_description 0x7f140053 +int string exo_controls_rewind_description 0x7f140054 +int string exo_controls_stop_description 0x7f140055 +int string exposed_dropdown_menu_content_description 0x7f140056 +int string fab_transformation_scrim_behavior 0x7f140057 +int string fab_transformation_sheet_behavior 0x7f140058 +int string file_not_support 0x7f140059 +int string fps 0x7f14005a +int string hide_bottom_view_on_scroll_behavior 0x7f14005b +int string icon_content_description 0x7f14005c +int string ijkplayer_dummy 0x7f14005d +int string item_view_role_description 0x7f14005e +int string jump_ad 0x7f14005f +int string load_cost 0x7f140060 +int string material_clock_display_divider 0x7f140061 +int string material_clock_toggle_content_description 0x7f140062 +int string material_hour_selection 0x7f140063 +int string material_hour_suffix 0x7f140064 +int string material_minute_selection 0x7f140065 +int string material_minute_suffix 0x7f140066 +int string material_motion_easing_accelerated 0x7f140067 +int string material_motion_easing_decelerated 0x7f140068 +int string material_motion_easing_emphasized 0x7f140069 +int string material_motion_easing_linear 0x7f14006a +int string material_motion_easing_standard 0x7f14006b +int string material_slider_range_end 0x7f14006c +int string material_slider_range_start 0x7f14006d +int string material_timepicker_am 0x7f14006e +int string material_timepicker_clock_mode_description 0x7f14006f +int string material_timepicker_hour 0x7f140070 +int string material_timepicker_minute 0x7f140071 +int string material_timepicker_pm 0x7f140072 +int string material_timepicker_select_time 0x7f140073 +int string material_timepicker_text_input_mode_description 0x7f140074 +int string media_information 0x7f140075 +int string mi__selected_audio_track 0x7f140076 +int string mi__selected_subtitle_track 0x7f140077 +int string mi__selected_video_track 0x7f140078 +int string mi_bit_rate 0x7f140079 +int string mi_channels 0x7f14007a +int string mi_codec 0x7f14007b +int string mi_frame_rate 0x7f14007c +int string mi_language 0x7f14007d +int string mi_length 0x7f14007e +int string mi_media 0x7f14007f +int string mi_pixel_format 0x7f140080 +int string mi_player 0x7f140081 +int string mi_profile_level 0x7f140082 +int string mi_resolution 0x7f140083 +int string mi_sample_rate 0x7f140084 +int string mi_stream_fmt1 0x7f140085 +int string mi_type 0x7f140086 +int string module_car_chat_already_cancel 0x7f140087 +int string module_car_chat_call_hangup 0x7f140088 +int string module_car_chat_call_refuse 0x7f140089 +int string module_car_chat_can_not_call 0x7f14008a +int string module_car_chat_error_call_test 0x7f14008b +int string module_car_chat_hangup_fail 0x7f14008c +int string module_car_chat_in_call 0x7f14008d +int string module_car_chat_in_the_team 0x7f14008e +int string module_car_chat_invitation_window 0x7f14008f +int string module_car_chat_joined_team 0x7f140090 +int string module_car_chat_match_less 0x7f140091 +int string module_car_chat_match_tip 0x7f140092 +int string module_car_chat_matching 0x7f140093 +int string module_car_chat_matching_cancel 0x7f140094 +int string module_car_chat_matching_wait 0x7f140095 +int string module_car_chat_network_error 0x7f140096 +int string module_car_chat_ok 0x7f140097 +int string module_car_chat_self_error 0x7f140098 +int string module_car_chat_team_calling 0x7f140099 +int string module_car_chat_team_info 0x7f14009a +int string module_car_chat_team_invited 0x7f14009b +int string module_car_chat_team_invited_prompt 0x7f14009c +int string module_car_chat_team_quit 0x7f14009d +int string module_car_chat_user_caller 0x7f14009e +int string module_car_chat_user_info_null 0x7f14009f +int string module_car_chat_user_join_team 0x7f1400a0 +int string module_car_chat_vehicle_dismiss 0x7f1400a1 +int string module_commons_button_cancel 0x7f1400a2 +int string module_commons_button_ok 0x7f1400a3 +int string module_commons_exit_navi_content 0x7f1400a4 +int string module_distance_kilometre 0x7f1400a5 +int string module_distance_metre 0x7f1400a6 +int string module_map_model_faster 0x7f1400a7 +int string module_map_model_normal 0x7f1400a8 +int string mtrl_badge_numberless_content_description 0x7f1400a9 +int string mtrl_chip_close_icon_content_description 0x7f1400aa +int string mtrl_exceed_max_badge_number_content_description 0x7f1400ab +int string mtrl_exceed_max_badge_number_suffix 0x7f1400ac +int string mtrl_picker_a11y_next_month 0x7f1400ad +int string mtrl_picker_a11y_prev_month 0x7f1400ae +int string mtrl_picker_announce_current_selection 0x7f1400af +int string mtrl_picker_cancel 0x7f1400b0 +int string mtrl_picker_confirm 0x7f1400b1 +int string mtrl_picker_date_header_selected 0x7f1400b2 +int string mtrl_picker_date_header_title 0x7f1400b3 +int string mtrl_picker_date_header_unselected 0x7f1400b4 +int string mtrl_picker_day_of_week_column_header 0x7f1400b5 +int string mtrl_picker_invalid_format 0x7f1400b6 +int string mtrl_picker_invalid_format_example 0x7f1400b7 +int string mtrl_picker_invalid_format_use 0x7f1400b8 +int string mtrl_picker_invalid_range 0x7f1400b9 +int string mtrl_picker_navigate_to_year_description 0x7f1400ba +int string mtrl_picker_out_of_range 0x7f1400bb +int string mtrl_picker_range_header_only_end_selected 0x7f1400bc +int string mtrl_picker_range_header_only_start_selected 0x7f1400bd +int string mtrl_picker_range_header_selected 0x7f1400be +int string mtrl_picker_range_header_title 0x7f1400bf +int string mtrl_picker_range_header_unselected 0x7f1400c0 +int string mtrl_picker_save 0x7f1400c1 +int string mtrl_picker_text_input_date_hint 0x7f1400c2 +int string mtrl_picker_text_input_date_range_end_hint 0x7f1400c3 +int string mtrl_picker_text_input_date_range_start_hint 0x7f1400c4 +int string mtrl_picker_text_input_day_abbr 0x7f1400c5 +int string mtrl_picker_text_input_month_abbr 0x7f1400c6 +int string mtrl_picker_text_input_year_abbr 0x7f1400c7 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f1400c8 +int string mtrl_picker_toggle_to_day_selection 0x7f1400c9 +int string mtrl_picker_toggle_to_text_input_mode 0x7f1400ca +int string mtrl_picker_toggle_to_year_selection 0x7f1400cb +int string no_net 0x7f1400cc +int string no_url 0x7f1400cd +int string password_toggle_content_description 0x7f1400ce +int string path_password_eye 0x7f1400cf +int string path_password_eye_mask_strike_through 0x7f1400d0 +int string path_password_eye_mask_visible 0x7f1400d1 +int string path_password_strike_through 0x7f1400d2 +int string recent 0x7f1400d3 +int string sample 0x7f1400d4 +int string search_menu_title 0x7f1400d5 +int string seek_cost 0x7f1400d6 +int string seek_load_cost 0x7f1400d7 +int string settings 0x7f1400d8 +int string show_info 0x7f1400d9 +int string status_bar_notification_info_overflow 0x7f1400da +int string tcp_speed 0x7f1400db +int string tips_not_wifi 0x7f1400dc +int string tips_not_wifi_cancel 0x7f1400dd +int string tips_not_wifi_confirm 0x7f1400de +int string toggle_player 0x7f1400df +int string toggle_ratio 0x7f1400e0 +int string toggle_render 0x7f1400e1 +int string tracks 0x7f1400e2 +int string v_cache 0x7f1400e3 +int string vdec 0x7f1400e4 +int style ActivityTranslucent 0x7f150001 +int style AlertDialog_AppCompat 0x7f150002 +int style AlertDialog_AppCompat_Light 0x7f150003 +int style AndroidThemeColorAccentYellow 0x7f150004 +int style Animation_AppCompat_Dialog 0x7f150005 +int style Animation_AppCompat_DropDownUp 0x7f150006 +int style Animation_AppCompat_Tooltip 0x7f150007 +int style Animation_Design_BottomSheetDialog 0x7f150008 +int style Animation_MaterialComponents_BottomSheetDialog 0x7f150009 +int style BaseFloatDialogStyle 0x7f15000a +int style Base_AlertDialog_AppCompat 0x7f15000b +int style Base_AlertDialog_AppCompat_Light 0x7f15000c +int style Base_Animation_AppCompat_Dialog 0x7f15000d +int style Base_Animation_AppCompat_DropDownUp 0x7f15000e +int style Base_Animation_AppCompat_Tooltip 0x7f15000f +int style Base_CardView 0x7f150010 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f150011 +int style Base_DialogWindowTitle_AppCompat 0x7f150012 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f150013 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f150014 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f150015 +int style Base_TextAppearance_AppCompat 0x7f150016 +int style Base_TextAppearance_AppCompat_Body1 0x7f150017 +int style Base_TextAppearance_AppCompat_Body2 0x7f150018 +int style Base_TextAppearance_AppCompat_Button 0x7f150019 +int style Base_TextAppearance_AppCompat_Caption 0x7f15001a +int style Base_TextAppearance_AppCompat_Display1 0x7f15001b +int style Base_TextAppearance_AppCompat_Display2 0x7f15001c +int style Base_TextAppearance_AppCompat_Display3 0x7f15001d +int style Base_TextAppearance_AppCompat_Display4 0x7f15001e +int style Base_TextAppearance_AppCompat_Headline 0x7f15001f +int style Base_TextAppearance_AppCompat_Inverse 0x7f150020 +int style Base_TextAppearance_AppCompat_Large 0x7f150021 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150022 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150023 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150024 +int style Base_TextAppearance_AppCompat_Medium 0x7f150025 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150026 +int style Base_TextAppearance_AppCompat_Menu 0x7f150027 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150028 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150029 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f15002a +int style Base_TextAppearance_AppCompat_Small 0x7f15002b +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f15002c +int style Base_TextAppearance_AppCompat_Subhead 0x7f15002d +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f15002e +int style Base_TextAppearance_AppCompat_Title 0x7f15002f +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150030 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f15003a +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f15003b +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f15003c +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f15003d +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15003e +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15003f +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150040 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150041 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150042 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f150043 +int style Base_TextAppearance_MaterialComponents_Button 0x7f150044 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f150045 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f150046 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150047 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150048 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150049 +int style Base_ThemeOverlay_AppCompat 0x7f15004a +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15004b +int style Base_ThemeOverlay_AppCompat_Dark 0x7f15004c +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f15004d +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f15004e +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f15004f +int style Base_ThemeOverlay_AppCompat_Light 0x7f150050 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150051 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150052 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f150053 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f150054 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150055 +int style Base_Theme_AppCompat 0x7f150056 +int style Base_Theme_AppCompat_CompactMenu 0x7f150057 +int style Base_Theme_AppCompat_Dialog 0x7f150058 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150059 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f15005a +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15005b +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15005c +int style Base_Theme_AppCompat_Light 0x7f15005d +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15005e +int style Base_Theme_AppCompat_Light_Dialog 0x7f15005f +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150060 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150061 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150062 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150063 +int style Base_Theme_MaterialComponents 0x7f150064 +int style Base_Theme_MaterialComponents_Bridge 0x7f150065 +int style Base_Theme_MaterialComponents_CompactMenu 0x7f150066 +int style Base_Theme_MaterialComponents_Dialog 0x7f150067 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f150068 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f150069 +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f15006a +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f15006b +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15006c +int style Base_Theme_MaterialComponents_Light 0x7f15006d +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f15006e +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f15006f +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150070 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150071 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150072 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150073 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150074 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150075 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150076 +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150077 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f150078 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150079 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f15007a +int style Base_V14_Theme_MaterialComponents 0x7f15007b +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f15007c +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f15007d +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f15007e +int style Base_V14_Theme_MaterialComponents_Light 0x7f15007f +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f150080 +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150081 +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f150082 +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150083 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150084 +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150085 +int style Base_V21_Theme_AppCompat 0x7f150086 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150087 +int style Base_V21_Theme_AppCompat_Light 0x7f150088 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150089 +int style Base_V21_Theme_MaterialComponents 0x7f15008a +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f15008b +int style Base_V21_Theme_MaterialComponents_Light 0x7f15008c +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f15008d +int style Base_V22_Theme_AppCompat 0x7f15008e +int style Base_V22_Theme_AppCompat_Light 0x7f15008f +int style Base_V23_Theme_AppCompat 0x7f150090 +int style Base_V23_Theme_AppCompat_Light 0x7f150091 +int style Base_V26_Theme_AppCompat 0x7f150092 +int style Base_V26_Theme_AppCompat_Light 0x7f150093 +int style Base_V26_Widget_AppCompat_Toolbar 0x7f150094 +int style Base_V28_Theme_AppCompat 0x7f150095 +int style Base_V28_Theme_AppCompat_Light 0x7f150096 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150097 +int style Base_V7_Theme_AppCompat 0x7f150098 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150099 +int style Base_V7_Theme_AppCompat_Light 0x7f15009a +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f15009b +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f15009c +int style Base_V7_Widget_AppCompat_EditText 0x7f15009d +int style Base_V7_Widget_AppCompat_Toolbar 0x7f15009e +int style Base_Widget_AppCompat_ActionBar 0x7f15009f +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f1500a0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1500a1 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1500a2 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1500a3 +int style Base_Widget_AppCompat_ActionButton 0x7f1500a4 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1500a5 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1500a6 +int style Base_Widget_AppCompat_ActionMode 0x7f1500a7 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1500a8 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1500a9 +int style Base_Widget_AppCompat_Button 0x7f1500aa +int style Base_Widget_AppCompat_ButtonBar 0x7f1500ab +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1500ac +int style Base_Widget_AppCompat_Button_Borderless 0x7f1500ad +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1500ae +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1500af +int style Base_Widget_AppCompat_Button_Colored 0x7f1500b0 +int style Base_Widget_AppCompat_Button_Small 0x7f1500b1 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1500b2 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1500b3 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500b4 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500b5 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500b6 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500b7 +int style Base_Widget_AppCompat_EditText 0x7f1500b8 +int style Base_Widget_AppCompat_ImageButton 0x7f1500b9 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500ba +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500bb +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500bc +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500bd +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500be +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500bf +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500c0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500c1 +int style Base_Widget_AppCompat_ListMenuView 0x7f1500c2 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500c3 +int style Base_Widget_AppCompat_ListView 0x7f1500c4 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500c5 +int style Base_Widget_AppCompat_ListView_Menu 0x7f1500c6 +int style Base_Widget_AppCompat_PopupMenu 0x7f1500c7 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500c8 +int style Base_Widget_AppCompat_PopupWindow 0x7f1500c9 +int style Base_Widget_AppCompat_ProgressBar 0x7f1500ca +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500cb +int style Base_Widget_AppCompat_RatingBar 0x7f1500cc +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500cd +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500ce +int style Base_Widget_AppCompat_SearchView 0x7f1500cf +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500d0 +int style Base_Widget_AppCompat_SeekBar 0x7f1500d1 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500d2 +int style Base_Widget_AppCompat_Spinner 0x7f1500d3 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500d4 +int style Base_Widget_AppCompat_TextView 0x7f1500d5 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500d6 +int style Base_Widget_AppCompat_Toolbar 0x7f1500d7 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500d8 +int style Base_Widget_Design_TabLayout 0x7f1500d9 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f1500da +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f1500db +int style Base_Widget_MaterialComponents_Chip 0x7f1500dc +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f1500dd +int style Base_Widget_MaterialComponents_PopupMenu 0x7f1500de +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1500df +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1500e0 +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f1500e1 +int style Base_Widget_MaterialComponents_Slider 0x7f1500e2 +int style Base_Widget_MaterialComponents_Snackbar 0x7f1500e3 +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500e4 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500e5 +int style Base_Widget_MaterialComponents_TextView 0x7f1500e6 +int style CardView 0x7f1500e7 +int style CardView_Dark 0x7f1500e8 +int style CardView_Light 0x7f1500e9 +int style EmptyTheme 0x7f1500ea +int style ExoMediaButton 0x7f1500eb +int style ExoMediaButton_FastForward 0x7f1500ec +int style ExoMediaButton_Next 0x7f1500ed +int style ExoMediaButton_Pause 0x7f1500ee +int style ExoMediaButton_Play 0x7f1500ef +int style ExoMediaButton_Previous 0x7f1500f0 +int style ExoMediaButton_Rewind 0x7f1500f1 +int style MaterialAlertDialog_MaterialComponents 0x7f1500f2 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f1500f3 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f1500f4 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f1500f5 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f1500f6 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f1500f7 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f1500f8 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f1500f9 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f1500fa +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f1500fb +int style Platform_AppCompat 0x7f1500fc +int style Platform_AppCompat_Light 0x7f1500fd +int style Platform_MaterialComponents 0x7f1500fe +int style Platform_MaterialComponents_Dialog 0x7f1500ff +int style Platform_MaterialComponents_Light 0x7f150100 +int style Platform_MaterialComponents_Light_Dialog 0x7f150101 +int style Platform_ThemeOverlay_AppCompat 0x7f150102 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f150103 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f150104 +int style Platform_V21_AppCompat 0x7f150105 +int style Platform_V21_AppCompat_Light 0x7f150106 +int style Platform_V25_AppCompat 0x7f150107 +int style Platform_V25_AppCompat_Light 0x7f150108 +int style Platform_Widget_AppCompat_Spinner 0x7f150109 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f15010a +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f15010b +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f15010c +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f15010d +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f15010e +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f15010f +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f150110 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f150111 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f150112 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f150113 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f150114 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f150115 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f150116 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f150117 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f150118 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f150119 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f15011a +int style ShapeAppearanceOverlay 0x7f15011b +int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f15011c +int style ShapeAppearanceOverlay_BottomRightCut 0x7f15011d +int style ShapeAppearanceOverlay_Cut 0x7f15011e +int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f15011f +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f150120 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f150121 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f150122 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f150123 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150124 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f150125 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f150126 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f150127 +int style ShapeAppearanceOverlay_TopLeftCut 0x7f150128 +int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f150129 +int style ShapeAppearance_MaterialComponents 0x7f15012a +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f15012b +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f15012c +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f15012d +int style ShapeAppearance_MaterialComponents_Test 0x7f15012e +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f15012f +int style TestStyleWithLineHeight 0x7f150130 +int style TestStyleWithLineHeightAppearance 0x7f150131 +int style TestStyleWithThemeLineHeightAttribute 0x7f150132 +int style TestStyleWithoutLineHeight 0x7f150133 +int style TestThemeWithLineHeight 0x7f150134 +int style TestThemeWithLineHeightDisabled 0x7f150135 +int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150136 +int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f150137 +int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f150138 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f150139 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15013a +int style TextAppearance_AppCompat 0x7f15013b +int style TextAppearance_AppCompat_Body1 0x7f15013c +int style TextAppearance_AppCompat_Body2 0x7f15013d +int style TextAppearance_AppCompat_Button 0x7f15013e +int style TextAppearance_AppCompat_Caption 0x7f15013f +int style TextAppearance_AppCompat_Display1 0x7f150140 +int style TextAppearance_AppCompat_Display2 0x7f150141 +int style TextAppearance_AppCompat_Display3 0x7f150142 +int style TextAppearance_AppCompat_Display4 0x7f150143 +int style TextAppearance_AppCompat_Headline 0x7f150144 +int style TextAppearance_AppCompat_Inverse 0x7f150145 +int style TextAppearance_AppCompat_Large 0x7f150146 +int style TextAppearance_AppCompat_Large_Inverse 0x7f150147 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f150148 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f150149 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15014a +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15014b +int style TextAppearance_AppCompat_Medium 0x7f15014c +int style TextAppearance_AppCompat_Medium_Inverse 0x7f15014d +int style TextAppearance_AppCompat_Menu 0x7f15014e +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f15014f +int style TextAppearance_AppCompat_SearchResult_Title 0x7f150150 +int style TextAppearance_AppCompat_Small 0x7f150151 +int style TextAppearance_AppCompat_Small_Inverse 0x7f150152 +int style TextAppearance_AppCompat_Subhead 0x7f150153 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150154 +int style TextAppearance_AppCompat_Title 0x7f150155 +int style TextAppearance_AppCompat_Title_Inverse 0x7f150156 +int style TextAppearance_AppCompat_Tooltip 0x7f150157 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150158 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150159 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15015a +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15015b +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15015c +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15015d +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f15015e +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15015f +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f150160 +int style TextAppearance_AppCompat_Widget_Button 0x7f150161 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150162 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150163 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150164 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150165 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150166 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150167 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150168 +int style TextAppearance_AppCompat_Widget_Switch 0x7f150169 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15016a +int style TextAppearance_Compat_Notification 0x7f15016b +int style TextAppearance_Compat_Notification_Info 0x7f15016c +int style TextAppearance_Compat_Notification_Line2 0x7f15016d +int style TextAppearance_Compat_Notification_Time 0x7f15016e +int style TextAppearance_Compat_Notification_Title 0x7f15016f +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150170 +int style TextAppearance_Design_Counter 0x7f150171 +int style TextAppearance_Design_Counter_Overflow 0x7f150172 +int style TextAppearance_Design_Error 0x7f150173 +int style TextAppearance_Design_HelperText 0x7f150174 +int style TextAppearance_Design_Hint 0x7f150175 +int style TextAppearance_Design_Placeholder 0x7f150176 +int style TextAppearance_Design_Prefix 0x7f150177 +int style TextAppearance_Design_Snackbar_Message 0x7f150178 +int style TextAppearance_Design_Suffix 0x7f150179 +int style TextAppearance_Design_Tab 0x7f15017a +int style TextAppearance_MaterialComponents_Badge 0x7f15017b +int style TextAppearance_MaterialComponents_Body1 0x7f15017c +int style TextAppearance_MaterialComponents_Body2 0x7f15017d +int style TextAppearance_MaterialComponents_Button 0x7f15017e +int style TextAppearance_MaterialComponents_Caption 0x7f15017f +int style TextAppearance_MaterialComponents_Chip 0x7f150180 +int style TextAppearance_MaterialComponents_Headline1 0x7f150181 +int style TextAppearance_MaterialComponents_Headline2 0x7f150182 +int style TextAppearance_MaterialComponents_Headline3 0x7f150183 +int style TextAppearance_MaterialComponents_Headline4 0x7f150184 +int style TextAppearance_MaterialComponents_Headline5 0x7f150185 +int style TextAppearance_MaterialComponents_Headline6 0x7f150186 +int style TextAppearance_MaterialComponents_Overline 0x7f150187 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f150188 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f150189 +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f15018a +int style TextAppearance_MaterialComponents_Tooltip 0x7f15018b +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15018c +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15018d +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15018e +int style ThemeOverlayColorAccentRed 0x7f15018f +int style ThemeOverlay_AppCompat 0x7f150190 +int style ThemeOverlay_AppCompat_ActionBar 0x7f150191 +int style ThemeOverlay_AppCompat_Dark 0x7f150192 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150193 +int style ThemeOverlay_AppCompat_DayNight 0x7f150194 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f150195 +int style ThemeOverlay_AppCompat_Dialog 0x7f150196 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150197 +int style ThemeOverlay_AppCompat_Light 0x7f150198 +int style ThemeOverlay_Design_TextInputEditText 0x7f150199 +int style ThemeOverlay_MaterialComponents 0x7f15019a +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f15019b +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f15019c +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f15019d +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f15019e +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f15019f +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1501a0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1501a1 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1501a2 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1501a3 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1501a4 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1501a5 +int style ThemeOverlay_MaterialComponents_Dark 0x7f1501a6 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1501a7 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501a8 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f1501a9 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1501aa +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1501ab +int style ThemeOverlay_MaterialComponents_Light 0x7f1501ac +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1501ad +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1501ae +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1501af +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1501b0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1501b1 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1501b2 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1501b3 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1501b4 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1501b5 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1501b6 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1501b7 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1501b8 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501b9 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501ba +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501bb +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f1501bc +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f1501bd +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f1501be +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f1501bf +int style Theme_AppCompat 0x7f1501c0 +int style Theme_AppCompat_CompactMenu 0x7f1501c1 +int style Theme_AppCompat_DayNight 0x7f1501c2 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f1501c3 +int style Theme_AppCompat_DayNight_Dialog 0x7f1501c4 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f1501c5 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f1501c6 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f1501c7 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f1501c8 +int style Theme_AppCompat_Dialog 0x7f1501c9 +int style Theme_AppCompat_DialogWhenLarge 0x7f1501ca +int style Theme_AppCompat_Dialog_Alert 0x7f1501cb +int style Theme_AppCompat_Dialog_MinWidth 0x7f1501cc +int style Theme_AppCompat_Empty 0x7f1501cd +int style Theme_AppCompat_Light 0x7f1501ce +int style Theme_AppCompat_Light_DarkActionBar 0x7f1501cf +int style Theme_AppCompat_Light_Dialog 0x7f1501d0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f1501d1 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f1501d2 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f1501d3 +int style Theme_AppCompat_Light_NoActionBar 0x7f1501d4 +int style Theme_AppCompat_NoActionBar 0x7f1501d5 +int style Theme_Design 0x7f1501d6 +int style Theme_Design_BottomSheetDialog 0x7f1501d7 +int style Theme_Design_Light 0x7f1501d8 +int style Theme_Design_Light_BottomSheetDialog 0x7f1501d9 +int style Theme_Design_Light_NoActionBar 0x7f1501da +int style Theme_Design_NoActionBar 0x7f1501db +int style Theme_MaterialComponents 0x7f1501dc +int style Theme_MaterialComponents_BottomSheetDialog 0x7f1501dd +int style Theme_MaterialComponents_Bridge 0x7f1501de +int style Theme_MaterialComponents_CompactMenu 0x7f1501df +int style Theme_MaterialComponents_DayNight 0x7f1501e0 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501e1 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f1501e2 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f1501e3 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f1501e4 +int style Theme_MaterialComponents_DayNight_Dialog 0x7f1501e5 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f1501e6 +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f1501e7 +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f1501e8 +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f1501e9 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f1501ea +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f1501eb +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f1501ec +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f1501ed +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f1501ee +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f1501ef +int style Theme_MaterialComponents_Dialog 0x7f1501f0 +int style Theme_MaterialComponents_DialogWhenLarge 0x7f1501f1 +int style Theme_MaterialComponents_Dialog_Alert 0x7f1501f2 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f1501f3 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f1501f4 +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f1501f5 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f1501f6 +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f1501f7 +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f1501f8 +int style Theme_MaterialComponents_Light 0x7f1501f9 +int style Theme_MaterialComponents_Light_BarSize 0x7f1501fa +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f1501fb +int style Theme_MaterialComponents_Light_Bridge 0x7f1501fc +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f1501fd +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f1501fe +int style Theme_MaterialComponents_Light_Dialog 0x7f1501ff +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150200 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150201 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f150202 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150203 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150204 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f150205 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150206 +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f150207 +int style Theme_MaterialComponents_Light_LargeTouch 0x7f150208 +int style Theme_MaterialComponents_Light_NoActionBar 0x7f150209 +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f15020a +int style Theme_MaterialComponents_NoActionBar 0x7f15020b +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f15020c +int style Widget_AppCompat_ActionBar 0x7f15020d +int style Widget_AppCompat_ActionBar_Solid 0x7f15020e +int style Widget_AppCompat_ActionBar_TabBar 0x7f15020f +int style Widget_AppCompat_ActionBar_TabText 0x7f150210 +int style Widget_AppCompat_ActionBar_TabView 0x7f150211 +int style Widget_AppCompat_ActionButton 0x7f150212 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150213 +int style Widget_AppCompat_ActionButton_Overflow 0x7f150214 +int style Widget_AppCompat_ActionMode 0x7f150215 +int style Widget_AppCompat_ActivityChooserView 0x7f150216 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150217 +int style Widget_AppCompat_Button 0x7f150218 +int style Widget_AppCompat_ButtonBar 0x7f150219 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f15021a +int style Widget_AppCompat_Button_Borderless 0x7f15021b +int style Widget_AppCompat_Button_Borderless_Colored 0x7f15021c +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15021d +int style Widget_AppCompat_Button_Colored 0x7f15021e +int style Widget_AppCompat_Button_Small 0x7f15021f +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150220 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150221 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150222 +int style Widget_AppCompat_DrawerArrowToggle 0x7f150223 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f150224 +int style Widget_AppCompat_EditText 0x7f150225 +int style Widget_AppCompat_ImageButton 0x7f150226 +int style Widget_AppCompat_Light_ActionBar 0x7f150227 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150228 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150229 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f15022a +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15022b +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f15022c +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f15022d +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f15022e +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f15022f +int style Widget_AppCompat_Light_ActionButton 0x7f150230 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150231 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150232 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150233 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f150234 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150235 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150236 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150237 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150238 +int style Widget_AppCompat_Light_PopupMenu 0x7f150239 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15023a +int style Widget_AppCompat_Light_SearchView 0x7f15023b +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f15023c +int style Widget_AppCompat_ListMenuView 0x7f15023d +int style Widget_AppCompat_ListPopupWindow 0x7f15023e +int style Widget_AppCompat_ListView 0x7f15023f +int style Widget_AppCompat_ListView_DropDown 0x7f150240 +int style Widget_AppCompat_ListView_Menu 0x7f150241 +int style Widget_AppCompat_PopupMenu 0x7f150242 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150243 +int style Widget_AppCompat_PopupWindow 0x7f150244 +int style Widget_AppCompat_ProgressBar 0x7f150245 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150246 +int style Widget_AppCompat_RatingBar 0x7f150247 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150248 +int style Widget_AppCompat_RatingBar_Small 0x7f150249 +int style Widget_AppCompat_SearchView 0x7f15024a +int style Widget_AppCompat_SearchView_ActionBar 0x7f15024b +int style Widget_AppCompat_SeekBar 0x7f15024c +int style Widget_AppCompat_SeekBar_Discrete 0x7f15024d +int style Widget_AppCompat_Spinner 0x7f15024e +int style Widget_AppCompat_Spinner_DropDown 0x7f15024f +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150250 +int style Widget_AppCompat_Spinner_Underlined 0x7f150251 +int style Widget_AppCompat_TextView 0x7f150252 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150253 +int style Widget_AppCompat_Toolbar 0x7f150254 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150255 +int style Widget_Compat_NotificationActionContainer 0x7f150256 +int style Widget_Compat_NotificationActionText 0x7f150257 +int style Widget_Design_AppBarLayout 0x7f150258 +int style Widget_Design_BottomNavigationView 0x7f150259 +int style Widget_Design_BottomSheet_Modal 0x7f15025a +int style Widget_Design_CollapsingToolbar 0x7f15025b +int style Widget_Design_FloatingActionButton 0x7f15025c +int style Widget_Design_NavigationView 0x7f15025d +int style Widget_Design_ScrimInsetsFrameLayout 0x7f15025e +int style Widget_Design_Snackbar 0x7f15025f +int style Widget_Design_TabLayout 0x7f150260 +int style Widget_Design_TextInputEditText 0x7f150261 +int style Widget_Design_TextInputLayout 0x7f150262 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f150263 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f150264 +int style Widget_MaterialComponents_ActionBar_Solid 0x7f150265 +int style Widget_MaterialComponents_ActionBar_Surface 0x7f150266 +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f150267 +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f150268 +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f150269 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f15026a +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f15026b +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f15026c +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f15026d +int style Widget_MaterialComponents_Badge 0x7f15026e +int style Widget_MaterialComponents_BottomAppBar 0x7f15026f +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f150270 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f150271 +int style Widget_MaterialComponents_BottomNavigationView 0x7f150272 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f150273 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f150274 +int style Widget_MaterialComponents_BottomSheet 0x7f150275 +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f150276 +int style Widget_MaterialComponents_Button 0x7f150277 +int style Widget_MaterialComponents_Button_Icon 0x7f150278 +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f150279 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f15027a +int style Widget_MaterialComponents_Button_TextButton 0x7f15027b +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f15027c +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f15027d +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f15027e +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f15027f +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f150280 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f150281 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f150282 +int style Widget_MaterialComponents_CardView 0x7f150283 +int style Widget_MaterialComponents_CheckedTextView 0x7f150284 +int style Widget_MaterialComponents_ChipGroup 0x7f150285 +int style Widget_MaterialComponents_Chip_Action 0x7f150286 +int style Widget_MaterialComponents_Chip_Choice 0x7f150287 +int style Widget_MaterialComponents_Chip_Entry 0x7f150288 +int style Widget_MaterialComponents_Chip_Filter 0x7f150289 +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f15028a +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f15028b +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f15028c +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f15028d +int style Widget_MaterialComponents_CollapsingToolbar 0x7f15028e +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f15028f +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f150290 +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f150291 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f150292 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f150293 +int style Widget_MaterialComponents_FloatingActionButton 0x7f150294 +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f150295 +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f150296 +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f150297 +int style Widget_MaterialComponents_MaterialCalendar 0x7f150298 +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f150299 +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f15029a +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f15029b +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15029c +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f15029d +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f15029e +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f15029f +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f1502a0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f1502a1 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f1502a2 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f1502a3 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1502a4 +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f1502a5 +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f1502a6 +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f1502a7 +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f1502a8 +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f1502a9 +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f1502aa +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f1502ab +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f1502ac +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f1502ad +int style Widget_MaterialComponents_NavigationRailView 0x7f1502ae +int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f1502af +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f1502b0 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f1502b1 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f1502b2 +int style Widget_MaterialComponents_NavigationView 0x7f1502b3 +int style Widget_MaterialComponents_PopupMenu 0x7f1502b4 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1502b5 +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1502b6 +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f1502b7 +int style Widget_MaterialComponents_ProgressIndicator 0x7f1502b8 +int style Widget_MaterialComponents_ShapeableImageView 0x7f1502b9 +int style Widget_MaterialComponents_Slider 0x7f1502ba +int style Widget_MaterialComponents_Snackbar 0x7f1502bb +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1502bc +int style Widget_MaterialComponents_Snackbar_TextView 0x7f1502bd +int style Widget_MaterialComponents_TabLayout 0x7f1502be +int style Widget_MaterialComponents_TabLayout_Colored 0x7f1502bf +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f1502c0 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1502c1 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1502c2 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1502c3 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1502c4 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1502c5 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1502c6 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1502c7 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1502c8 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1502c9 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1502ca +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1502cb +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1502cc +int style Widget_MaterialComponents_TextView 0x7f1502cd +int style Widget_MaterialComponents_TimePicker 0x7f1502ce +int style Widget_MaterialComponents_TimePicker_Button 0x7f1502cf +int style Widget_MaterialComponents_TimePicker_Clock 0x7f1502d0 +int style Widget_MaterialComponents_TimePicker_Display 0x7f1502d1 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1502d2 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f1502d3 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f1502d4 +int style Widget_MaterialComponents_Toolbar 0x7f1502d5 +int style Widget_MaterialComponents_Toolbar_Primary 0x7f1502d6 +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f1502d7 +int style Widget_MaterialComponents_Toolbar_Surface 0x7f1502d8 +int style Widget_MaterialComponents_Tooltip 0x7f1502d9 +int style Widget_Support_CoordinatorLayout 0x7f1502da +int style customHeartHeartRatingBarStyle 0x7f1502db +int style video_popup_toast_anim 0x7f1502dc +int style video_style_dialog_progress 0x7f1502dd +int style video_vertical_progressBar 0x7f1502de +int[] styleable ActionBar { 0x7f040049, 0x7f040051, 0x7f040052, 0x7f0400fc, 0x7f0400fd, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040128, 0x7f04013b, 0x7f04013c, 0x7f040163, 0x7f0401be, 0x7f0401c5, 0x7f0401cc, 0x7f0401cd, 0x7f0401d0, 0x7f0401e1, 0x7f0401f3, 0x7f040267, 0x7f0402cb, 0x7f040303, 0x7f04030e, 0x7f04030f, 0x7f040384, 0x7f040388, 0x7f0403f1, 0x7f0403fd } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f040049, 0x7f040051, 0x7f0400d6, 0x7f0401be, 0x7f040388, 0x7f0403fd } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040177, 0x7f0401e7 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040085, 0x7f040086, 0x7f04025c, 0x7f04025d, 0x7f0402c7, 0x7f040359, 0x7f04035c } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f040163, 0x7f040178, 0x7f040252, 0x7f040253, 0x7f04037d } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollTargetViewId 6 +int styleable AppBarLayout_statusBarForeground 7 +int[] styleable AppBarLayoutStates { 0x7f040377, 0x7f040378, 0x7f04037a, 0x7f04037b } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f04024f, 0x7f040250 } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x1010119, 0x7f04036e, 0x7f0403ef, 0x7f0403f0 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f0403eb, 0x7f0403ec, 0x7f0403ed } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040043, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f040047, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040152, 0x7f040194, 0x7f0401aa, 0x7f0401b3, 0x7f040209, 0x7f040255, 0x7f0403b1, 0x7f0403d3 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040029, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040032, 0x10100ae, 0x1010057, 0x7f040042, 0x7f04006c, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040082, 0x7f040087, 0x7f040088, 0x7f04009e, 0x7f0400a7, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400eb, 0x7f0400ec, 0x7f0400f2, 0x7f04010b, 0x7f040137, 0x7f040138, 0x7f040139, 0x7f04013d, 0x7f04013f, 0x7f040154, 0x7f040155, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f0401cc, 0x7f0401db, 0x7f040258, 0x7f040259, 0x7f04025a, 0x7f04025b, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040264, 0x7f040265, 0x7f040266, 0x7f0402e4, 0x7f0402e5, 0x7f0402e6, 0x7f040302, 0x7f040304, 0x7f040315, 0x7f040317, 0x7f040318, 0x7f040319, 0x7f040346, 0x7f040347, 0x7f040348, 0x7f040349, 0x7f040366, 0x7f040367, 0x7f040390, 0x7f0403bc, 0x7f0403be, 0x7f0403bf, 0x7f0403c0, 0x7f0403c2, 0x7f0403c3, 0x7f0403c4, 0x7f0403c5, 0x7f0403cd, 0x7f0403ce, 0x7f0403ff, 0x7f040400, 0x7f040401, 0x7f040402, 0x7f040425, 0x7f040433, 0x7f040434, 0x7f040435, 0x7f040436, 0x7f040437, 0x7f040438, 0x7f040439, 0x7f04043a, 0x7f04043b, 0x7f04043c } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable AspectRatioFrameLayout { 0x7f040323 } +int styleable AspectRatioFrameLayout_resize_mode 0 +int[] styleable Badge { 0x7f04004a, 0x7f040055, 0x7f040057, 0x7f0401ce, 0x7f040288, 0x7f0402d0, 0x7f040423 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeTextColor 2 +int styleable Badge_horizontalOffset 3 +int styleable Badge_maxCharacterCount 4 +int styleable Badge_number 5 +int styleable Badge_verticalOffset 6 +int[] styleable BaseProgressIndicator { 0x1010139, 0x7f0401c3, 0x7f0401e2, 0x7f040293, 0x7f040352, 0x7f040354, 0x7f04040a, 0x7f04040d, 0x7f04040f } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f040053, 0x7f040163, 0x7f040184, 0x7f040185, 0x7f040186, 0x7f040187, 0x7f040188, 0x7f0401c6, 0x7f0402dd, 0x7f0402df, 0x7f0402e0 } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_elevation 1 +int styleable BottomAppBar_fabAlignmentMode 2 +int styleable BottomAppBar_fabAnimationMode 3 +int styleable BottomAppBar_fabCradleMargin 4 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 +int styleable BottomAppBar_fabCradleVerticalOffset 6 +int styleable BottomAppBar_hideOnScroll 7 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 +int styleable BottomAppBar_paddingRightSystemWindowInsets 10 +int[] styleable BottomNavigationView { 0x7f0401ee } +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 0 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x101011f, 0x7f040053, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040065, 0x7f040066, 0x7f040067, 0x7f0401b9, 0x7f0402dd, 0x7f0402df, 0x7f0402e0, 0x7f0402e3, 0x7f04034d, 0x7f040350 } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxWidth 1 +int styleable BottomSheetBehavior_Layout_backgroundTint 2 +int styleable BottomSheetBehavior_Layout_behavior_draggable 3 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 4 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 5 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 6 +int styleable BottomSheetBehavior_Layout_behavior_hideable 7 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 8 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 9 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 10 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 11 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 12 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 13 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_shapeAppearance 16 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 17 +int[] styleable ButtonBarLayout { 0x7f040033 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x1010140, 0x101013f, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040102, 0x7f040103, 0x7f040105, 0x7f040106, 0x7f040108 } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009c } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x1010098, 0x1010095, 0x7f0400a1, 0x7f0400a2, 0x7f0400a5, 0x7f0400a6, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400bb, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f04016f, 0x7f0401c4, 0x7f0401d1, 0x7f0401d5, 0x7f040328, 0x7f04034d, 0x7f040350, 0x7f040356, 0x7f0403cf, 0x7f0403d8 } +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x7f0400a0, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f04034a, 0x7f04035d, 0x7f04035e } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircleImageView { 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6 } +int styleable CircleImageView_civ_border_color 0 +int styleable CircleImageView_civ_border_overlay 1 +int styleable CircleImageView_civ_border_width 2 +int styleable CircleImageView_civ_circle_background_color 3 +int[] styleable CircularProgressIndicator { 0x7f0401e3, 0x7f0401e5, 0x7f0401e6 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0400cb, 0x7f0400ce } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0400cc, 0x7f040280, 0x7f04034b } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0400da, 0x7f0400db, 0x7f040109, 0x7f04017a, 0x7f04017b, 0x7f04017c, 0x7f04017d, 0x7f04017e, 0x7f04017f, 0x7f040180, 0x7f040183, 0x7f0401b5, 0x7f04028b, 0x7f04033d, 0x7f04033f, 0x7f04037e, 0x7f0403f1, 0x7f0403f3, 0x7f0403f4, 0x7f0403fe } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 10 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 11 +int styleable CollapsingToolbarLayout_maxLines 12 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 13 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 14 +int styleable CollapsingToolbarLayout_statusBarScrim 15 +int styleable CollapsingToolbarLayout_title 16 +int styleable CollapsingToolbarLayout_titleCollapseMode 17 +int styleable CollapsingToolbarLayout_titleEnabled 18 +int styleable CollapsingToolbarLayout_toolbarId 19 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f040211, 0x7f040212 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x7f040034, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040083, 0x7f040089, 0x7f04008a } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f7, 0x7f0400f8, 0x7f040149, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024d, 0x7f040251, 0x7f0402c1, 0x7f0402c2, 0x7f0402ec, 0x7f0402f3, 0x7f040300, 0x7f040310, 0x7f040311, 0x7f040312, 0x7f040412, 0x7f040414, 0x7f040416, 0x7f04042a } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_animate_relativeTo 29 +int styleable Constraint_barrierAllowsGoneWidgets 30 +int styleable Constraint_barrierDirection 31 +int styleable Constraint_barrierMargin 32 +int styleable Constraint_chainUseRtl 33 +int styleable Constraint_constraint_referenced_ids 34 +int styleable Constraint_constraint_referenced_tags 35 +int styleable Constraint_drawPath 36 +int styleable Constraint_flow_firstHorizontalBias 37 +int styleable Constraint_flow_firstHorizontalStyle 38 +int styleable Constraint_flow_firstVerticalBias 39 +int styleable Constraint_flow_firstVerticalStyle 40 +int styleable Constraint_flow_horizontalAlign 41 +int styleable Constraint_flow_horizontalBias 42 +int styleable Constraint_flow_horizontalGap 43 +int styleable Constraint_flow_horizontalStyle 44 +int styleable Constraint_flow_lastHorizontalBias 45 +int styleable Constraint_flow_lastHorizontalStyle 46 +int styleable Constraint_flow_lastVerticalBias 47 +int styleable Constraint_flow_lastVerticalStyle 48 +int styleable Constraint_flow_maxElementsWrap 49 +int styleable Constraint_flow_verticalAlign 50 +int styleable Constraint_flow_verticalBias 51 +int styleable Constraint_flow_verticalGap 52 +int styleable Constraint_flow_verticalStyle 53 +int styleable Constraint_flow_wrapMode 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x10100f5, 0x10100f6, 0x10100fa, 0x10103b6, 0x101053b, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x101053c, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400f4, 0x7f0400f7, 0x7f0400f8, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f04020b, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024d, 0x7f04024e, 0x7f040251 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_layoutDescription 55 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 56 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 57 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 64 +int styleable ConstraintLayout_Layout_layout_constraintCircle 65 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 67 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 68 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 70 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 73 +int styleable ConstraintLayout_Layout_layout_constraintHeight 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 78 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 81 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 84 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 87 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 89 +int styleable ConstraintLayout_Layout_layout_constraintTag 90 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 93 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 96 +int styleable ConstraintLayout_Layout_layout_constraintWidth 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 101 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 103 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 105 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 106 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 107 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 108 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 109 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 110 +int styleable ConstraintLayout_Layout_layout_marginBaseline 111 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 112 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 113 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f04031a, 0x7f04031b, 0x7f04031c, 0x7f04031d } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f0400fa, 0x7f0402f9 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040037, 0x7f040038, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f7, 0x7f040149, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040219, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f040230, 0x7f040235, 0x7f040236, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024d, 0x7f040251, 0x7f0402c1, 0x7f0402c2, 0x7f0402c3, 0x7f0402ec, 0x7f0402f3, 0x7f040300, 0x7f040310, 0x7f040311, 0x7f040312, 0x7f040412, 0x7f040414, 0x7f040416, 0x7f04042a } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_layout_constrainedHeight 53 +int styleable ConstraintOverride_layout_constrainedWidth 54 +int styleable ConstraintOverride_layout_constraintBaseline_creator 55 +int styleable ConstraintOverride_layout_constraintBottom_creator 56 +int styleable ConstraintOverride_layout_constraintCircleAngle 57 +int styleable ConstraintOverride_layout_constraintCircleRadius 58 +int styleable ConstraintOverride_layout_constraintDimensionRatio 59 +int styleable ConstraintOverride_layout_constraintGuide_begin 60 +int styleable ConstraintOverride_layout_constraintGuide_end 61 +int styleable ConstraintOverride_layout_constraintGuide_percent 62 +int styleable ConstraintOverride_layout_constraintHeight 63 +int styleable ConstraintOverride_layout_constraintHeight_default 64 +int styleable ConstraintOverride_layout_constraintHeight_max 65 +int styleable ConstraintOverride_layout_constraintHeight_min 66 +int styleable ConstraintOverride_layout_constraintHeight_percent 67 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 68 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 69 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 70 +int styleable ConstraintOverride_layout_constraintLeft_creator 71 +int styleable ConstraintOverride_layout_constraintRight_creator 72 +int styleable ConstraintOverride_layout_constraintTag 73 +int styleable ConstraintOverride_layout_constraintTop_creator 74 +int styleable ConstraintOverride_layout_constraintVertical_bias 75 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 76 +int styleable ConstraintOverride_layout_constraintVertical_weight 77 +int styleable ConstraintOverride_layout_constraintWidth 78 +int styleable ConstraintOverride_layout_constraintWidth_default 79 +int styleable ConstraintOverride_layout_constraintWidth_max 80 +int styleable ConstraintOverride_layout_constraintWidth_min 81 +int styleable ConstraintOverride_layout_constraintWidth_percent 82 +int styleable ConstraintOverride_layout_editor_absoluteX 83 +int styleable ConstraintOverride_layout_editor_absoluteY 84 +int styleable ConstraintOverride_layout_goneMarginBaseline 85 +int styleable ConstraintOverride_layout_goneMarginBottom 86 +int styleable ConstraintOverride_layout_goneMarginEnd 87 +int styleable ConstraintOverride_layout_goneMarginLeft 88 +int styleable ConstraintOverride_layout_goneMarginRight 89 +int styleable ConstraintOverride_layout_goneMarginStart 90 +int styleable ConstraintOverride_layout_goneMarginTop 91 +int styleable ConstraintOverride_layout_marginBaseline 92 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 93 +int styleable ConstraintOverride_motionProgress 94 +int styleable ConstraintOverride_motionStagger 95 +int styleable ConstraintOverride_motionTarget 96 +int styleable ConstraintOverride_pathMotionArc 97 +int styleable ConstraintOverride_pivotAnchor 98 +int styleable ConstraintOverride_polarRelativeTo 99 +int styleable ConstraintOverride_quantizeMotionInterpolator 100 +int styleable ConstraintOverride_quantizeMotionPhase 101 +int styleable ConstraintOverride_quantizeMotionSteps 102 +int styleable ConstraintOverride_transformPivotTarget 103 +int styleable ConstraintOverride_transitionEasing 104 +int styleable ConstraintOverride_transitionPathRotate 105 +int styleable ConstraintOverride_visibilityMode 106 +int[] styleable ConstraintSet { 0x7f040001, 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f7, 0x7f0400f8, 0x7f040136, 0x7f040149, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024d, 0x7f040251, 0x7f0402c1, 0x7f0402c2, 0x7f0402ec, 0x7f0402f3, 0x7f040300, 0x7f040312, 0x7f040414, 0x7f040416 } +int styleable ConstraintSet_ConstraintRotate 0 +int styleable ConstraintSet_android_alpha 1 +int styleable ConstraintSet_android_elevation 2 +int styleable ConstraintSet_android_id 3 +int styleable ConstraintSet_android_layout_height 4 +int styleable ConstraintSet_android_layout_marginBottom 5 +int styleable ConstraintSet_android_layout_marginEnd 6 +int styleable ConstraintSet_android_layout_marginLeft 7 +int styleable ConstraintSet_android_layout_marginRight 8 +int styleable ConstraintSet_android_layout_marginStart 9 +int styleable ConstraintSet_android_layout_marginTop 10 +int styleable ConstraintSet_android_layout_width 11 +int styleable ConstraintSet_android_maxHeight 12 +int styleable ConstraintSet_android_maxWidth 13 +int styleable ConstraintSet_android_minHeight 14 +int styleable ConstraintSet_android_minWidth 15 +int styleable ConstraintSet_android_orientation 16 +int styleable ConstraintSet_android_pivotX 17 +int styleable ConstraintSet_android_pivotY 18 +int styleable ConstraintSet_android_rotation 19 +int styleable ConstraintSet_android_rotationX 20 +int styleable ConstraintSet_android_rotationY 21 +int styleable ConstraintSet_android_scaleX 22 +int styleable ConstraintSet_android_scaleY 23 +int styleable ConstraintSet_android_transformPivotX 24 +int styleable ConstraintSet_android_transformPivotY 25 +int styleable ConstraintSet_android_translationX 26 +int styleable ConstraintSet_android_translationY 27 +int styleable ConstraintSet_android_translationZ 28 +int styleable ConstraintSet_android_visibility 29 +int styleable ConstraintSet_animateCircleAngleTo 30 +int styleable ConstraintSet_animateRelativeTo 31 +int styleable ConstraintSet_animate_relativeTo 32 +int styleable ConstraintSet_barrierAllowsGoneWidgets 33 +int styleable ConstraintSet_barrierDirection 34 +int styleable ConstraintSet_barrierMargin 35 +int styleable ConstraintSet_chainUseRtl 36 +int styleable ConstraintSet_constraint_referenced_ids 37 +int styleable ConstraintSet_constraint_referenced_tags 38 +int styleable ConstraintSet_deriveConstraintsFrom 39 +int styleable ConstraintSet_drawPath 40 +int styleable ConstraintSet_flow_firstHorizontalBias 41 +int styleable ConstraintSet_flow_firstHorizontalStyle 42 +int styleable ConstraintSet_flow_firstVerticalBias 43 +int styleable ConstraintSet_flow_firstVerticalStyle 44 +int styleable ConstraintSet_flow_horizontalAlign 45 +int styleable ConstraintSet_flow_horizontalBias 46 +int styleable ConstraintSet_flow_horizontalGap 47 +int styleable ConstraintSet_flow_horizontalStyle 48 +int styleable ConstraintSet_flow_lastHorizontalBias 49 +int styleable ConstraintSet_flow_lastHorizontalStyle 50 +int styleable ConstraintSet_flow_lastVerticalBias 51 +int styleable ConstraintSet_flow_lastVerticalStyle 52 +int styleable ConstraintSet_flow_maxElementsWrap 53 +int styleable ConstraintSet_flow_verticalAlign 54 +int styleable ConstraintSet_flow_verticalBias 55 +int styleable ConstraintSet_flow_verticalGap 56 +int styleable ConstraintSet_flow_verticalStyle 57 +int styleable ConstraintSet_flow_wrapMode 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int[] styleable CoordinatorLayout { 0x7f040205, 0x7f04037c } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f04020e, 0x7f04020f, 0x7f040210, 0x7f040241, 0x7f04024b, 0x7f04024c } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomAttribute { 0x7f040040, 0x7f040122, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040129, 0x7f04012a, 0x7f04012b, 0x7f040291 } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable CustomCircleImageView { 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c7 } +int styleable CustomCircleImageView_civ_border_color 0 +int styleable CustomCircleImageView_civ_border_overlay 1 +int styleable CustomCircleImageView_civ_border_width 2 +int styleable CustomCircleImageView_civ_fill_color 3 +int[] styleable CustomRatingBar { 0x7f040002, 0x7f0400ca, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f04037f } +int styleable CustomRatingBar_OtherHeartImg 0 +int styleable CustomRatingBar_clickable 1 +int styleable CustomRatingBar_elenmentCount 2 +int styleable CustomRatingBar_elenmentEmpty 3 +int styleable CustomRatingBar_elenmentFill 4 +int styleable CustomRatingBar_elenmentHarf 5 +int styleable CustomRatingBar_elenmentHeight 6 +int styleable CustomRatingBar_elenmentPadding 7 +int styleable CustomRatingBar_elenmentStep 8 +int styleable CustomRatingBar_elenmentWidth 9 +int styleable CustomRatingBar_stepSize 10 +int[] styleable DefaultTimeBar { 0x7f04002d, 0x7f04002e, 0x7f040059, 0x7f04007d, 0x7f0402fe, 0x7f040340, 0x7f040341, 0x7f040342, 0x7f040343, 0x7f040408, 0x7f04041c } +int styleable DefaultTimeBar_ad_marker_color 0 +int styleable DefaultTimeBar_ad_marker_width 1 +int styleable DefaultTimeBar_bar_height 2 +int styleable DefaultTimeBar_buffered_color 3 +int styleable DefaultTimeBar_played_color 4 +int styleable DefaultTimeBar_scrubber_color 5 +int styleable DefaultTimeBar_scrubber_disabled_size 6 +int styleable DefaultTimeBar_scrubber_dragged_size 7 +int styleable DefaultTimeBar_scrubber_enabled_size 8 +int styleable DefaultTimeBar_touch_target_height 9 +int styleable DefaultTimeBar_unplayed_color 10 +int[] styleable DiscreteScrollView { 0x7f040156 } +int styleable DiscreteScrollView_dsv_orientation 0 +int[] styleable DrawerArrowToggle { 0x7f04003e, 0x7f04003f, 0x7f040058, 0x7f0400dd, 0x7f04014e, 0x7f0401b8, 0x7f040365, 0x7f0403df } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable ExtendedFloatingActionButton { 0x7f0400d9, 0x7f040163, 0x7f040181, 0x7f0401c4, 0x7f040356, 0x7f04035b } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_hideMotionSpec 3 +int styleable ExtendedFloatingActionButton_showMotionSpec 4 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f04005d, 0x7f04005e } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x101000e, 0x7f040053, 0x7f040054, 0x7f04006b, 0x7f040163, 0x7f04016f, 0x7f040189, 0x7f04018a, 0x7f0401c4, 0x7f0401cf, 0x7f04028a, 0x7f04030a, 0x7f040328, 0x7f04034d, 0x7f040350, 0x7f040356, 0x7f04041e } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f04005d } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f0401fc, 0x7f040256 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f0401ab, 0x7f0401ac, 0x7f0401ad, 0x7f0401ae, 0x7f0401af, 0x7f0401b0, 0x7f0401b1 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0401a9, 0x7f0401b2, 0x7f0401b3, 0x7f0401b4, 0x7f04041b } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f0401b6 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GenericDraweeHierarchy { 0x7f04002b, 0x7f04004b, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f0402db, 0x7f0402f4, 0x7f0402f5, 0x7f040309, 0x7f04030b, 0x7f04030c, 0x7f04030d, 0x7f040324, 0x7f040325, 0x7f04032b, 0x7f04032c, 0x7f04032d, 0x7f04032e, 0x7f04032f, 0x7f040332, 0x7f040333, 0x7f040334, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f04033a, 0x7f040424 } +int styleable GenericDraweeHierarchy_actualImageScaleType 0 +int styleable GenericDraweeHierarchy_backgroundImage 1 +int styleable GenericDraweeHierarchy_fadeDuration 2 +int styleable GenericDraweeHierarchy_failureImage 3 +int styleable GenericDraweeHierarchy_failureImageScaleType 4 +int styleable GenericDraweeHierarchy_overlayImage 5 +int styleable GenericDraweeHierarchy_placeholderImage 6 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 +int styleable GenericDraweeHierarchy_progressBarImage 10 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 +int styleable GenericDraweeHierarchy_retryImage 12 +int styleable GenericDraweeHierarchy_retryImageScaleType 13 +int styleable GenericDraweeHierarchy_roundAsCircle 14 +int styleable GenericDraweeHierarchy_roundBottomEnd 15 +int styleable GenericDraweeHierarchy_roundBottomLeft 16 +int styleable GenericDraweeHierarchy_roundBottomRight 17 +int styleable GenericDraweeHierarchy_roundBottomStart 18 +int styleable GenericDraweeHierarchy_roundTopEnd 19 +int styleable GenericDraweeHierarchy_roundTopLeft 20 +int styleable GenericDraweeHierarchy_roundTopRight 21 +int styleable GenericDraweeHierarchy_roundTopStart 22 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24 +int styleable GenericDraweeHierarchy_roundingBorderColor 25 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27 +int styleable GenericDraweeHierarchy_viewAspectRatio 28 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable ImageFilterView { 0x7f040036, 0x7f040068, 0x7f04007c, 0x7f04010a, 0x7f04011f, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0402da, 0x7f04032a, 0x7f040331, 0x7f04033b, 0x7f04042c } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable Insets { 0x7f0402dd, 0x7f0402df, 0x7f0402e0, 0x7f0402e3 } +int styleable Insets_paddingBottomSystemWindowInsets 0 +int styleable Insets_paddingLeftSystemWindowInsets 1 +int styleable Insets_paddingRightSystemWindowInsets 2 +int styleable Insets_paddingTopSystemWindowInsets 3 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f040121, 0x7f0401b7, 0x7f0402c1, 0x7f0402c3, 0x7f040412, 0x7f040414, 0x7f040416 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f040121, 0x7f0401b7, 0x7f0402c1, 0x7f0402c3, 0x7f040414, 0x7f040416, 0x7f04042e, 0x7f04042f, 0x7f040430, 0x7f040431, 0x7f040432 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f040121, 0x7f040149, 0x7f0401b7, 0x7f040203, 0x7f0402c3, 0x7f0402ec, 0x7f0402ee, 0x7f0402ef, 0x7f0402f0, 0x7f0402f1, 0x7f04035f, 0x7f040414 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f040121, 0x7f0401b7, 0x7f0402c1, 0x7f0402c3, 0x7f040414, 0x7f040416, 0x7f04042d, 0x7f04042e, 0x7f04042f, 0x7f040430, 0x7f040431 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f0401b7, 0x7f0402c3, 0x7f0402c4, 0x7f0402c5, 0x7f0402d2, 0x7f0402d4, 0x7f0402d5, 0x7f040418, 0x7f040419, 0x7f04041a, 0x7f040427, 0x7f040428, 0x7f040429 } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f7, 0x7f0400f8, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024d, 0x7f040251, 0x7f040289, 0x7f04028d, 0x7f040292, 0x7f040296 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_layout_constrainedHeight 15 +int styleable Layout_layout_constrainedWidth 16 +int styleable Layout_layout_constraintBaseline_creator 17 +int styleable Layout_layout_constraintBaseline_toBaselineOf 18 +int styleable Layout_layout_constraintBaseline_toBottomOf 19 +int styleable Layout_layout_constraintBaseline_toTopOf 20 +int styleable Layout_layout_constraintBottom_creator 21 +int styleable Layout_layout_constraintBottom_toBottomOf 22 +int styleable Layout_layout_constraintBottom_toTopOf 23 +int styleable Layout_layout_constraintCircle 24 +int styleable Layout_layout_constraintCircleAngle 25 +int styleable Layout_layout_constraintCircleRadius 26 +int styleable Layout_layout_constraintDimensionRatio 27 +int styleable Layout_layout_constraintEnd_toEndOf 28 +int styleable Layout_layout_constraintEnd_toStartOf 29 +int styleable Layout_layout_constraintGuide_begin 30 +int styleable Layout_layout_constraintGuide_end 31 +int styleable Layout_layout_constraintGuide_percent 32 +int styleable Layout_layout_constraintHeight 33 +int styleable Layout_layout_constraintHeight_default 34 +int styleable Layout_layout_constraintHeight_max 35 +int styleable Layout_layout_constraintHeight_min 36 +int styleable Layout_layout_constraintHeight_percent 37 +int styleable Layout_layout_constraintHorizontal_bias 38 +int styleable Layout_layout_constraintHorizontal_chainStyle 39 +int styleable Layout_layout_constraintHorizontal_weight 40 +int styleable Layout_layout_constraintLeft_creator 41 +int styleable Layout_layout_constraintLeft_toLeftOf 42 +int styleable Layout_layout_constraintLeft_toRightOf 43 +int styleable Layout_layout_constraintRight_creator 44 +int styleable Layout_layout_constraintRight_toLeftOf 45 +int styleable Layout_layout_constraintRight_toRightOf 46 +int styleable Layout_layout_constraintStart_toEndOf 47 +int styleable Layout_layout_constraintStart_toStartOf 48 +int styleable Layout_layout_constraintTop_creator 49 +int styleable Layout_layout_constraintTop_toBottomOf 50 +int styleable Layout_layout_constraintTop_toTopOf 51 +int styleable Layout_layout_constraintVertical_bias 52 +int styleable Layout_layout_constraintVertical_chainStyle 53 +int styleable Layout_layout_constraintVertical_weight 54 +int styleable Layout_layout_constraintWidth 55 +int styleable Layout_layout_constraintWidth_default 56 +int styleable Layout_layout_constraintWidth_max 57 +int styleable Layout_layout_constraintWidth_min 58 +int styleable Layout_layout_constraintWidth_percent 59 +int styleable Layout_layout_editor_absoluteX 60 +int styleable Layout_layout_editor_absoluteY 61 +int styleable Layout_layout_goneMarginBaseline 62 +int styleable Layout_layout_goneMarginBottom 63 +int styleable Layout_layout_goneMarginEnd 64 +int styleable Layout_layout_goneMarginLeft 65 +int styleable Layout_layout_goneMarginRight 66 +int styleable Layout_layout_goneMarginStart 67 +int styleable Layout_layout_goneMarginTop 68 +int styleable Layout_layout_marginBaseline 69 +int styleable Layout_layout_wrapBehaviorInParent 70 +int styleable Layout_maxHeight 71 +int styleable Layout_maxWidth 72 +int styleable Layout_minHeight 73 +int styleable Layout_minWidth 74 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04013c, 0x7f04013e, 0x7f04028e, 0x7f040355 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable LinearProgressIndicator { 0x7f0401e0, 0x7f0401e4 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f04004c, 0x7f04004d, 0x7f04004e, 0x7f04004f } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x7f040269, 0x7f04026a, 0x7f04026b, 0x7f04026c, 0x7f04026d } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 +int[] styleable MaterialAutoCompleteTextView { 0x1010220 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int[] styleable MaterialButton { 0x10100d4, 0x10101e5, 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f040053, 0x7f040054, 0x7f040113, 0x7f040163, 0x7f0401d0, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d6, 0x7f0401d7, 0x7f040328, 0x7f04034d, 0x7f040350, 0x7f040380, 0x7f040381 } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int[] styleable MaterialButtonToggleGroup { 0x7f04009f, 0x7f04034a, 0x7f04035e } +int styleable MaterialButtonToggleGroup_checkedButton 0 +int styleable MaterialButtonToggleGroup_selectionRequired 1 +int styleable MaterialButtonToggleGroup_singleSelection 2 +int[] styleable MaterialCalendar { 0x101020d, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f0402cf, 0x7f040316, 0x7f04043d, 0x7f04043e, 0x7f04043f } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f0401ec, 0x7f0401f5, 0x7f0401f6, 0x7f0401fd, 0x7f0401fe, 0x7f040202 } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x10101e5, 0x7f04008e, 0x7f0400a1, 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f040328, 0x7f04034d, 0x7f040350, 0x7f040379, 0x7f040380, 0x7f040381 } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconMargin 3 +int styleable MaterialCardView_checkedIconSize 4 +int styleable MaterialCardView_checkedIconTint 5 +int styleable MaterialCardView_rippleColor 6 +int styleable MaterialCardView_shapeAppearance 7 +int styleable MaterialCardView_shapeAppearanceOverlay 8 +int styleable MaterialCardView_state_dragged 9 +int styleable MaterialCardView_strokeColor 10 +int styleable MaterialCardView_strokeWidth 11 +int[] styleable MaterialCheckBox { 0x7f040089, 0x7f04041f } +int styleable MaterialCheckBox_buttonTint 0 +int styleable MaterialCheckBox_useMaterialThemeColors 1 +int[] styleable MaterialRadioButton { 0x7f040089, 0x7f04041f } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f04034d, 0x7f040350 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x7f040255 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x7f040255 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0400cd, 0x7f040204 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f0402ca, 0x7f040385, 0x7f0403f2 } +int styleable MaterialToolbar_navigationIconTint 0 +int styleable MaterialToolbar_subtitleCentered 1 +int styleable MaterialToolbar_titleCentered 2 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f040012, 0x7f040026, 0x7f040028, 0x7f040035, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f0400fb, 0x7f0401d6, 0x7f0401d7, 0x7f0402d1, 0x7f040353, 0x7f040404 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f040308, 0x7f040382 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f0402a4, 0x7f0402a5, 0x7f0402a6, 0x7f0402a7, 0x7f0402a8, 0x7f0402a9 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable MogoImageView { 0x7f040297, 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d, 0x7f04029e, 0x7f04029f, 0x7f0402a0, 0x7f0402a1, 0x7f0402a2, 0x7f0402a3 } +int styleable MogoImageView_miv_blurRadius 0 +int styleable MogoImageView_miv_borderColor 1 +int styleable MogoImageView_miv_bottomLeftRadius 2 +int styleable MogoImageView_miv_bottomRightRadius 3 +int styleable MogoImageView_miv_failureHolder 4 +int styleable MogoImageView_miv_isBlur 5 +int styleable MogoImageView_miv_overlayImageId 6 +int styleable MogoImageView_miv_placeHolder 7 +int styleable MogoImageView_miv_radius 8 +int styleable MogoImageView_miv_shape 9 +int styleable MogoImageView_miv_shapeBorderWidth 10 +int styleable MogoImageView_miv_topLeftRadius 11 +int styleable MogoImageView_miv_topRightRadius 12 +int[] styleable Motion { 0x7f040037, 0x7f040038, 0x7f040039, 0x7f040149, 0x7f0402c0, 0x7f0402c2, 0x7f0402ec, 0x7f040310, 0x7f040311, 0x7f040312, 0x7f040414 } +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_animate_relativeTo 2 +int styleable Motion_drawPath 3 +int styleable Motion_motionPathRotate 4 +int styleable Motion_motionStagger 5 +int styleable Motion_pathMotionArc 6 +int styleable Motion_quantizeMotionInterpolator 7 +int styleable Motion_quantizeMotionPhase 8 +int styleable Motion_quantizeMotionSteps 9 +int styleable Motion_transitionEasing 10 +int[] styleable MotionEffect { 0x7f0402b6, 0x7f0402b7, 0x7f0402b8, 0x7f0402b9, 0x7f0402ba, 0x7f0402bb, 0x7f0402bc, 0x7f0402bd } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f0402d3, 0x7f0402d6 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x1010535, 0x10103ac, 0x10100af, 0x1010164, 0x101014f, 0x1010098, 0x1010095, 0x1010097, 0x1010096, 0x7f040069, 0x7f04006a, 0x7f04033c, 0x7f0403c8, 0x7f0403c9, 0x7f0403ca, 0x7f0403cb, 0x7f0403cc, 0x7f0403d4, 0x7f0403d5, 0x7f0403d6, 0x7f0403d7, 0x7f0403d9, 0x7f0403da, 0x7f0403db, 0x7f0403dc } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f04003c, 0x7f040120, 0x7f04020b, 0x7f0402aa, 0x7f0402c1, 0x7f040357 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f040130, 0x7f04020c } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f0403ae, 0x7f0403af, 0x7f0403b0 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarView { 0x7f040053, 0x7f040163, 0x7f0401eb, 0x7f0401f0, 0x7f0401f1, 0x7f0401f4, 0x7f040200, 0x7f040201, 0x7f040202, 0x7f040208, 0x7f04028f } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemBackground 2 +int styleable NavigationBarView_itemIconSize 3 +int styleable NavigationBarView_itemIconTint 4 +int styleable NavigationBarView_itemRippleColor 5 +int styleable NavigationBarView_itemTextAppearanceActive 6 +int styleable NavigationBarView_itemTextAppearanceInactive 7 +int styleable NavigationBarView_itemTextColor 8 +int styleable NavigationBarView_labelVisibilityMode 9 +int styleable NavigationBarView_menu 10 +int[] styleable NavigationRailView { 0x7f0401bd, 0x7f040290 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_menuGravity 1 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f040163, 0x7f0401bd, 0x7f0401eb, 0x7f0401ed, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f8, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401ff, 0x7f040202, 0x7f04028f, 0x7f04034d, 0x7f040350 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconSize 8 +int styleable NavigationView_itemIconTint 9 +int styleable NavigationView_itemMaxLines 10 +int styleable NavigationView_itemShapeAppearance 11 +int styleable NavigationView_itemShapeAppearanceOverlay 12 +int styleable NavigationView_itemShapeFillColor 13 +int styleable NavigationView_itemShapeInsetBottom 14 +int styleable NavigationView_itemShapeInsetEnd 15 +int styleable NavigationView_itemShapeInsetStart 16 +int styleable NavigationView_itemShapeInsetTop 17 +int styleable NavigationView_itemTextAppearance 18 +int styleable NavigationView_itemTextColor 19 +int styleable NavigationView_menu 20 +int styleable NavigationView_shapeAppearance 21 +int styleable NavigationView_shapeAppearanceOverlay 22 +int[] styleable OnClick { 0x7f0400c9, 0x7f0403ad } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f040041, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f040254, 0x7f040285, 0x7f04028c, 0x7f0402c6, 0x7f0402ce, 0x7f0402d8, 0x7f040329, 0x7f040369, 0x7f04036a, 0x7f04036b, 0x7f04036c, 0x7f04036d, 0x7f040405, 0x7f040406, 0x7f040407 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PlaybackControlView { 0x7f04010c, 0x7f040193, 0x7f040327, 0x7f04035a } +int styleable PlaybackControlView_controller_layout_id 0 +int styleable PlaybackControlView_fastforward_increment 1 +int styleable PlaybackControlView_rewind_increment 2 +int styleable PlaybackControlView_show_timeout 3 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0402d9 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f040376 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x7f040235, 0x7f0402c1, 0x7f04042a } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f040280 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f040294, 0x7f040422 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f0402dc, 0x7f0402e2 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f040192, 0x7f04020d, 0x7f040326, 0x7f040364, 0x7f04036f } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable RoundLayout { 0x7f040330 } +int styleable RoundLayout_roundLayoutRadius 0 +int[] styleable Scale { 0x7f04013a } +int styleable Scale_disappearedScale 0 +int[] styleable ScrimInsetsFrameLayout { 0x7f0401e8 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f040064 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f0400cf, 0x7f0400f3, 0x7f040131, 0x7f0401ba, 0x7f0401d8, 0x7f04020a, 0x7f040313, 0x7f040314, 0x7f040344, 0x7f040345, 0x7f040383, 0x7f04038c, 0x7f04042b } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f04010e, 0x7f04010f, 0x7f040110, 0x7f040111, 0x7f040112, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f040117, 0x7f040118 } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040107, 0x7f040108, 0x7f04034d, 0x7f040350, 0x7f040380, 0x7f040381 } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SimpleDraweeView { 0x7f04002a, 0x7f04002b, 0x7f04002c, 0x7f04004b, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f0402db, 0x7f0402f4, 0x7f0402f5, 0x7f040309, 0x7f04030b, 0x7f04030c, 0x7f04030d, 0x7f040324, 0x7f040325, 0x7f04032b, 0x7f04032c, 0x7f04032d, 0x7f04032e, 0x7f04032f, 0x7f040332, 0x7f040333, 0x7f040334, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f04033a, 0x7f040424 } +int styleable SimpleDraweeView_actualImageResource 0 +int styleable SimpleDraweeView_actualImageScaleType 1 +int styleable SimpleDraweeView_actualImageUri 2 +int styleable SimpleDraweeView_backgroundImage 3 +int styleable SimpleDraweeView_fadeDuration 4 +int styleable SimpleDraweeView_failureImage 5 +int styleable SimpleDraweeView_failureImageScaleType 6 +int styleable SimpleDraweeView_overlayImage 7 +int styleable SimpleDraweeView_placeholderImage 8 +int styleable SimpleDraweeView_placeholderImageScaleType 9 +int styleable SimpleDraweeView_pressedStateOverlayImage 10 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 +int styleable SimpleDraweeView_progressBarImage 12 +int styleable SimpleDraweeView_progressBarImageScaleType 13 +int styleable SimpleDraweeView_retryImage 14 +int styleable SimpleDraweeView_retryImageScaleType 15 +int styleable SimpleDraweeView_roundAsCircle 16 +int styleable SimpleDraweeView_roundBottomEnd 17 +int styleable SimpleDraweeView_roundBottomLeft 18 +int styleable SimpleDraweeView_roundBottomRight 19 +int styleable SimpleDraweeView_roundBottomStart 20 +int styleable SimpleDraweeView_roundTopEnd 21 +int styleable SimpleDraweeView_roundTopLeft 22 +int styleable SimpleDraweeView_roundTopRight 23 +int styleable SimpleDraweeView_roundTopStart 24 +int styleable SimpleDraweeView_roundWithOverlayColor 25 +int styleable SimpleDraweeView_roundedCornerRadius 26 +int styleable SimpleDraweeView_roundingBorderColor 27 +int styleable SimpleDraweeView_roundingBorderPadding 28 +int styleable SimpleDraweeView_roundingBorderWidth 29 +int styleable SimpleDraweeView_viewAspectRatio 30 +int[] styleable SimpleExoPlayerView { 0x7f04010c, 0x7f040133, 0x7f040193, 0x7f0401c7, 0x7f0402ff, 0x7f040323, 0x7f040327, 0x7f04035a, 0x7f04038d, 0x7f040420, 0x7f040421 } +int styleable SimpleExoPlayerView_controller_layout_id 0 +int styleable SimpleExoPlayerView_default_artwork 1 +int styleable SimpleExoPlayerView_fastforward_increment 2 +int styleable SimpleExoPlayerView_hide_on_touch 3 +int styleable SimpleExoPlayerView_player_layout_id 4 +int styleable SimpleExoPlayerView_resize_mode 5 +int styleable SimpleExoPlayerView_rewind_increment 6 +int styleable SimpleExoPlayerView_show_timeout 7 +int styleable SimpleExoPlayerView_surface_type 8 +int styleable SimpleExoPlayerView_use_artwork 9 +int styleable SimpleExoPlayerView_use_controller 10 +int[] styleable Slider { 0x101000e, 0x1010146, 0x1010024, 0x10102de, 0x10102df, 0x7f0401bb, 0x7f0401bc, 0x7f040206, 0x7f040207, 0x7f0403e0, 0x7f0403e1, 0x7f0403e2, 0x7f0403e3, 0x7f0403e4, 0x7f0403e8, 0x7f0403e9, 0x7f0403ea, 0x7f0403ee, 0x7f04040a, 0x7f04040b, 0x7f04040c, 0x7f04040e } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_thumbColor 9 +int styleable Slider_thumbElevation 10 +int styleable Slider_thumbRadius 11 +int styleable Slider_thumbStrokeColor 12 +int styleable Slider_thumbStrokeWidth 13 +int styleable Slider_tickColor 14 +int styleable Slider_tickColorActive 15 +int styleable Slider_tickColorInactive 16 +int styleable Slider_tickVisible 17 +int styleable Slider_trackColor 18 +int styleable Slider_trackColorActive 19 +int styleable Slider_trackColorInactive 20 +int styleable Slider_trackHeight 21 +int[] styleable Snackbar { 0x7f040361, 0x7f040362, 0x7f040363 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x7f040027, 0x101011f, 0x7f04003a, 0x7f040050, 0x7f040053, 0x7f040054, 0x7f040163, 0x7f040286 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f040303 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable State { 0x10100d0, 0x7f0400f9 } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x7f040132 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040358, 0x7f040368, 0x7f04038e, 0x7f04038f, 0x7f040391, 0x7f0403e5, 0x7f0403e6, 0x7f0403e7, 0x7f040409, 0x7f040410, 0x7f040411 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f04041f } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f040392, 0x7f040393, 0x7f040394, 0x7f040395, 0x7f040396, 0x7f040397, 0x7f040398, 0x7f040399, 0x7f04039a, 0x7f04039b, 0x7f04039c, 0x7f04039d, 0x7f04039e, 0x7f04039f, 0x7f0403a0, 0x7f0403a1, 0x7f0403a2, 0x7f0403a3, 0x7f0403a4, 0x7f0403a5, 0x7f0403a6, 0x7f0403a7, 0x7f0403a8, 0x7f0403aa, 0x7f0403ab, 0x7f0403ac } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextColor 22 +int styleable TabLayout_tabTextAppearance 23 +int styleable TabLayout_tabTextColor 24 +int styleable TabLayout_tabUnboundedRipple 25 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f0401aa, 0x7f0401b3, 0x7f0403b1, 0x7f0403d3 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x101014f, 0x1010095, 0x1010097, 0x1010096, 0x7f040069, 0x7f04006a, 0x7f0403d0, 0x7f0403d4, 0x7f0403d5 } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f0403d1 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x101011f, 0x101013f, 0x101009a, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f040075, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b, 0x7f040119, 0x7f04011a, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f04011e, 0x7f040167, 0x7f040168, 0x7f040169, 0x7f04016a, 0x7f04016b, 0x7f04016c, 0x7f040170, 0x7f040171, 0x7f040172, 0x7f040173, 0x7f040174, 0x7f040175, 0x7f040176, 0x7f040179, 0x7f0401bf, 0x7f0401c0, 0x7f0401c1, 0x7f0401c2, 0x7f0401c8, 0x7f0401c9, 0x7f0401ca, 0x7f0401cb, 0x7f0402e7, 0x7f0402e8, 0x7f0402e9, 0x7f0402ea, 0x7f0402eb, 0x7f0402f6, 0x7f0402f7, 0x7f0402f8, 0x7f040305, 0x7f040306, 0x7f040307, 0x7f04034d, 0x7f040350, 0x7f040371, 0x7f040372, 0x7f040373, 0x7f040374, 0x7f040375, 0x7f040389, 0x7f04038a, 0x7f04038b } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxWidth 2 +int styleable TextInputLayout_android_minWidth 3 +int styleable TextInputLayout_android_textColorHint 4 +int styleable TextInputLayout_boxBackgroundColor 5 +int styleable TextInputLayout_boxBackgroundMode 6 +int styleable TextInputLayout_boxCollapsedPaddingTop 7 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 8 +int styleable TextInputLayout_boxCornerRadiusBottomStart 9 +int styleable TextInputLayout_boxCornerRadiusTopEnd 10 +int styleable TextInputLayout_boxCornerRadiusTopStart 11 +int styleable TextInputLayout_boxStrokeColor 12 +int styleable TextInputLayout_boxStrokeErrorColor 13 +int styleable TextInputLayout_boxStrokeWidth 14 +int styleable TextInputLayout_boxStrokeWidthFocused 15 +int styleable TextInputLayout_counterEnabled 16 +int styleable TextInputLayout_counterMaxLength 17 +int styleable TextInputLayout_counterOverflowTextAppearance 18 +int styleable TextInputLayout_counterOverflowTextColor 19 +int styleable TextInputLayout_counterTextAppearance 20 +int styleable TextInputLayout_counterTextColor 21 +int styleable TextInputLayout_endIconCheckable 22 +int styleable TextInputLayout_endIconContentDescription 23 +int styleable TextInputLayout_endIconDrawable 24 +int styleable TextInputLayout_endIconMode 25 +int styleable TextInputLayout_endIconTint 26 +int styleable TextInputLayout_endIconTintMode 27 +int styleable TextInputLayout_errorContentDescription 28 +int styleable TextInputLayout_errorEnabled 29 +int styleable TextInputLayout_errorIconDrawable 30 +int styleable TextInputLayout_errorIconTint 31 +int styleable TextInputLayout_errorIconTintMode 32 +int styleable TextInputLayout_errorTextAppearance 33 +int styleable TextInputLayout_errorTextColor 34 +int styleable TextInputLayout_expandedHintEnabled 35 +int styleable TextInputLayout_helperText 36 +int styleable TextInputLayout_helperTextEnabled 37 +int styleable TextInputLayout_helperTextTextAppearance 38 +int styleable TextInputLayout_helperTextTextColor 39 +int styleable TextInputLayout_hintAnimationEnabled 40 +int styleable TextInputLayout_hintEnabled 41 +int styleable TextInputLayout_hintTextAppearance 42 +int styleable TextInputLayout_hintTextColor 43 +int styleable TextInputLayout_passwordToggleContentDescription 44 +int styleable TextInputLayout_passwordToggleDrawable 45 +int styleable TextInputLayout_passwordToggleEnabled 46 +int styleable TextInputLayout_passwordToggleTint 47 +int styleable TextInputLayout_passwordToggleTintMode 48 +int styleable TextInputLayout_placeholderText 49 +int styleable TextInputLayout_placeholderTextAppearance 50 +int styleable TextInputLayout_placeholderTextColor 51 +int styleable TextInputLayout_prefixText 52 +int styleable TextInputLayout_prefixTextAppearance 53 +int styleable TextInputLayout_prefixTextColor 54 +int styleable TextInputLayout_shapeAppearance 55 +int styleable TextInputLayout_shapeAppearanceOverlay 56 +int styleable TextInputLayout_startIconCheckable 57 +int styleable TextInputLayout_startIconContentDescription 58 +int styleable TextInputLayout_startIconDrawable 59 +int styleable TextInputLayout_startIconTint 60 +int styleable TextInputLayout_startIconTintMode 61 +int styleable TextInputLayout_suffixText 62 +int styleable TextInputLayout_suffixTextAppearance 63 +int styleable TextInputLayout_suffixTextColor 64 +int[] styleable ThemeEnforcement { 0x1010034, 0x7f04016d, 0x7f04016e } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040084, 0x7f0400d7, 0x7f0400d8, 0x7f0400fc, 0x7f0400fd, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040267, 0x7f040268, 0x7f040287, 0x7f04028f, 0x7f0402c8, 0x7f0402c9, 0x7f040303, 0x7f040384, 0x7f040386, 0x7f040387, 0x7f0403f1, 0x7f0403f5, 0x7f0403f6, 0x7f0403f7, 0x7f0403f8, 0x7f0403f9, 0x7f0403fa, 0x7f0403fb, 0x7f0403fc } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x10100f6, 0x1010140, 0x101013f, 0x10100d5, 0x101014f, 0x1010034, 0x7f040053 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_backgroundTint 6 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f040412 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x10100d0, 0x7f040048, 0x7f0400f5, 0x7f0400f6, 0x7f040157, 0x7f04020c, 0x7f0402be, 0x7f0402ec, 0x7f040370, 0x7f040413, 0x7f040415 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f0400f9, 0x7f04031f, 0x7f040320, 0x7f040321, 0x7f040322 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x7f0402de, 0x7f0402e1, 0x7f0403dd } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040053, 0x7f040054 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x7f040003, 0x7f040004, 0x10100d0, 0x7f0400c8, 0x7f040157, 0x7f0401d9, 0x7f0401da, 0x7f0402be, 0x7f0402c3, 0x7f0402d7, 0x7f0402ec, 0x7f04034c, 0x7f040413, 0x7f04041d, 0x7f040426 } +int styleable ViewTransition_SharedValue 0 +int styleable ViewTransition_SharedValueId 1 +int styleable ViewTransition_android_id 2 +int styleable ViewTransition_clearsTag 3 +int styleable ViewTransition_duration 4 +int styleable ViewTransition_ifTagNotSet 5 +int styleable ViewTransition_ifTagSet 6 +int styleable ViewTransition_motionInterpolator 7 +int styleable ViewTransition_motionTarget 8 +int styleable ViewTransition_onStateTransition 9 +int styleable ViewTransition_pathMotionArc 10 +int styleable ViewTransition_setsTag 11 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int[] styleable download { 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040145 } +int styleable download_download_bg_line_color 0 +int styleable download_download_bg_line_width 1 +int styleable download_download_line_color 2 +int styleable download_download_line_width 3 +int styleable download_download_text_color 4 +int styleable download_download_text_size 5 +int[] styleable include { 0x7f0400f4 } +int styleable include_constraintSet 0 +int[] styleable play { 0x7f0402fa, 0x7f0402fb, 0x7f0402fc, 0x7f0402fd } +int styleable play_play_bg_line_color 0 +int styleable play_play_bg_line_width 1 +int styleable play_play_line_color 2 +int styleable play_play_line_width 3 +int xml standalone_badge 0x7f180001 +int xml standalone_badge_gravity_bottom_end 0x7f180002 +int xml standalone_badge_gravity_bottom_start 0x7f180003 +int xml standalone_badge_gravity_top_start 0x7f180004 +int xml standalone_badge_offset 0x7f180005 +int xml util_code_provider_paths 0x7f180006 diff --git a/modules/mogo-module-carchatting/build/outputs/aar/mogo-module-carchatting-debug.aar b/modules/mogo-module-carchatting/build/outputs/aar/mogo-module-carchatting-debug.aar new file mode 100644 index 0000000000..a19dc8ed9a Binary files /dev/null and b/modules/mogo-module-carchatting/build/outputs/aar/mogo-module-carchatting-debug.aar differ diff --git a/modules/mogo-module-carchatting/build/outputs/logs/manifest-merger-debug-report.txt b/modules/mogo-module-carchatting/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..8541ee11ff --- /dev/null +++ b/modules/mogo-module-carchatting/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,37 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 + package + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:2:5-42 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:1-4:12 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml:1:11-69 +uses-sdk +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchatting/src/main/AndroidManifest.xml diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..3ef0e59816 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..c382133af1 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..7d2488ea0c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..6a1b3ff995 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/java-cache.bin b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..294b4c126b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-carchatting_debug.kotlin_module b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-carchatting_debug.kotlin_module new file mode 100644 index 0000000000..005c414b01 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-carchatting_debug.kotlin_module differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/Anim.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/Anim.class new file mode 100644 index 0000000000..41575d0807 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/Anim.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.class new file mode 100644 index 0000000000..e39ff96921 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.class new file mode 100644 index 0000000000..a0761977ae Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim$Companion.class new file mode 100644 index 0000000000..3d8c5ded33 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.class new file mode 100644 index 0000000000..52fe143c21 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.class new file mode 100644 index 0000000000..844bb86333 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.class new file mode 100644 index 0000000000..275ff239a9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/ErrorInfo.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/ErrorInfo.class new file mode 100644 index 0000000000..6fd9b172f0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/ErrorInfo.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/ResponseInfo.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/ResponseInfo.class new file mode 100644 index 0000000000..9c85a43d7b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/ResponseInfo.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/Result.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/Result.class new file mode 100644 index 0000000000..417ce66fdb Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/Result.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/UserInfo.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/UserInfo.class new file mode 100644 index 0000000000..9e8d9c3691 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/UserInfo.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/UserInfoKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/UserInfoKt.class new file mode 100644 index 0000000000..8772e4ef16 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/UserInfoKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/VoiceWake.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/VoiceWake.class new file mode 100644 index 0000000000..90eacc12e9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/VoiceWake.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.class new file mode 100644 index 0000000000..1e5eb0fb4f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion.class new file mode 100644 index 0000000000..cf89a34513 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatCenter.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatCenter.class new file mode 100644 index 0000000000..d474bbafdb Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatCenter.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatManager$Companion.class new file mode 100644 index 0000000000..4b3a3e9d4f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatManager.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatManager.class new file mode 100644 index 0000000000..0f31d610e8 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/CallChatManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack.class new file mode 100644 index 0000000000..65ae409a52 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IBizCallChat.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IBizCallChat.class new file mode 100644 index 0000000000..3024d551d6 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IBizCallChat.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion.class new file mode 100644 index 0000000000..e77981b2ad Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IMCallManager.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IMCallManager.class new file mode 100644 index 0000000000..6894efb610 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/biz/IMCallManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatConstant$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatConstant$Companion.class new file mode 100644 index 0000000000..aff008f0f7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatConstant$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatConstant.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatConstant.class new file mode 100644 index 0000000000..61776ce921 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatConstant.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatProvider.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatProvider.class new file mode 100644 index 0000000000..175ce173d6 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/card/CallChatProvider.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.class new file mode 100644 index 0000000000..572a9c9a4b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.class new file mode 100644 index 0000000000..3af7bd5789 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.class new file mode 100644 index 0000000000..cc75ddbde6 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpApi.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpApi.class new file mode 100644 index 0000000000..5bf1f90a49 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpApi.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpConstant$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpConstant$Companion.class new file mode 100644 index 0000000000..bb28167970 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpConstant$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpConstant.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpConstant.class new file mode 100644 index 0000000000..acff770862 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/HttpConstant.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/Repository.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/Repository.class new file mode 100644 index 0000000000..76a1455cbe Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/Repository.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/Request.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/Request.class new file mode 100644 index 0000000000..3ab97b781d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/net/Request.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/AnalyticsUtil.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/AnalyticsUtil.class new file mode 100644 index 0000000000..4ba24d828c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/AnalyticsUtil.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.class new file mode 100644 index 0000000000..c4f9f61c57 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/DateUtilKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/DateUtilKt.class new file mode 100644 index 0000000000..7f70e9a250 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/DateUtilKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.class new file mode 100644 index 0000000000..2ed8d3e46a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/LogUtil$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/LogUtil$Companion.class new file mode 100644 index 0000000000..a41861673f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/LogUtil$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/LogUtil.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/LogUtil.class new file mode 100644 index 0000000000..e8d9c22eff Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/LogUtil.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.class new file mode 100644 index 0000000000..932d2aed2d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion.class new file mode 100644 index 0000000000..15ccd1c610 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/CallingWindowManager.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/CallingWindowManager.class new file mode 100644 index 0000000000..d9f44abb16 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/CallingWindowManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/DrawableTextView.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/DrawableTextView.class new file mode 100644 index 0000000000..5cee44ecd7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/DrawableTextView.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.class new file mode 100644 index 0000000000..f820f87d7d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/MapViewManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/MapViewManager$Companion.class new file mode 100644 index 0000000000..66c0e5cace Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/MapViewManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/MapViewManager.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/MapViewManager.class new file mode 100644 index 0000000000..5d8603344b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/MapViewManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion.class new file mode 100644 index 0000000000..f3d65278ef Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.class new file mode 100644 index 0000000000..020fe0ec02 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TextViewExtendKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TextViewExtendKt.class new file mode 100644 index 0000000000..bf8d667ac4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/TextViewExtendKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserDialog.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserDialog.class new file mode 100644 index 0000000000..6d022a7902 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserDialog.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserDialogKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserDialogKt.class new file mode 100644 index 0000000000..1eb6f488b5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserDialogKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion.class new file mode 100644 index 0000000000..0d28cab932 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserWindowManager.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserWindowManager.class new file mode 100644 index 0000000000..f7659fd942 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/UserWindowManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VehicleTeamModel.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VehicleTeamModel.class new file mode 100644 index 0000000000..07b6985f39 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VehicleTeamModel.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion.class new file mode 100644 index 0000000000..0de42ae5d5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VrModeHelper.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VrModeHelper.class new file mode 100644 index 0000000000..213f75ba88 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/view/VrModeHelper.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener$DefaultImpls.class new file mode 100644 index 0000000000..5141b4ff18 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.class new file mode 100644 index 0000000000..9aa1525acc Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener$DefaultImpls.class new file mode 100644 index 0000000000..f08741bc1e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.class new file mode 100644 index 0000000000..ded3edef97 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.class new file mode 100644 index 0000000000..39c0dcb477 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener$DefaultImpls.class new file mode 100644 index 0000000000..adfec3d273 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.class new file mode 100644 index 0000000000..29de9d630a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.class new file mode 100644 index 0000000000..9ea2848557 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener$DefaultImpls.class new file mode 100644 index 0000000000..ace9635f75 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.class new file mode 100644 index 0000000000..5807552d7b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/VoiceManager.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/VoiceManager.class new file mode 100644 index 0000000000..d609fc0efa Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/VoiceManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/VoiceUtil.class b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/VoiceUtil.class new file mode 100644 index 0000000000..857abc11c4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/incrementalData/debug/com/mogo/module/carchatting/voice/VoiceUtil.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/Anim.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/Anim.java new file mode 100644 index 0000000000..16101ce81b --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/Anim.java @@ -0,0 +1,123 @@ +package com.mogo.module.carchatting.anim_dsl; + +import java.lang.System; + +/** + * an Animation just like [ValueAnimator], but it could reverse itself without the limitation of API level + * [ValueAnimator.reverse] is only available to the API level over 26. + * so this class comes to help. + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\t\n\u0002\b\b\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\b\u0012\b&\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\r\u00100\u001a\u00020\"H\u0000\u00a2\u0006\u0002\b1J\b\u00102\u001a\u00020\"H&J\b\u00103\u001a\u00020\"H&R\u0018\u0010\u0003\u001a\u00020\u0004X\u00a6\u000e\u00a2\u0006\f\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR \u0010\t\u001a\b\u0018\u00010\nR\u00020\u000bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000fR$\u0010\u0012\u001a\u00020\u00112\u0006\u0010\u0010\u001a\u00020\u00118F@FX\u0086\u000e\u00a2\u0006\f\u001a\u0004\b\u0013\u0010\u0014\"\u0004\b\u0015\u0010\u0016R$\u0010\u0017\u001a\u00020\u00112\u0006\u0010\u0010\u001a\u00020\u00118F@FX\u0086\u000e\u00a2\u0006\f\u001a\u0004\b\u0018\u0010\u0014\"\u0004\b\u0019\u0010\u0016R$\u0010\u001b\u001a\u00020\u001a2\u0006\u0010\u0010\u001a\u00020\u001a8F@FX\u0086\u000e\u00a2\u0006\f\u001a\u0004\b\u001c\u0010\u001d\"\u0004\b\u001e\u0010\u001fR(\u0010 \u001a\u0010\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\"\u0018\u00010!X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b#\u0010$\"\u0004\b%\u0010&R(\u0010\'\u001a\u0010\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\"\u0018\u00010!X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b(\u0010$\"\u0004\b)\u0010&R(\u0010*\u001a\u0010\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\"\u0018\u00010!X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b+\u0010$\"\u0004\b,\u0010&R(\u0010-\u001a\u0010\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\"\u0018\u00010!X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b.\u0010$\"\u0004\b/\u0010&\u00a8\u00064"}, d2 = {"Lcom/mogo/module/carchatting/anim_dsl/Anim;", "", "()V", "animator", "Landroid/animation/Animator;", "getAnimator", "()Landroid/animation/Animator;", "setAnimator", "(Landroid/animation/Animator;)V", "builder", "Landroid/animation/AnimatorSet$Builder;", "Landroid/animation/AnimatorSet;", "getBuilder", "()Landroid/animation/AnimatorSet$Builder;", "setBuilder", "(Landroid/animation/AnimatorSet$Builder;)V", "value", "", "delay", "getDelay", "()J", "setDelay", "(J)V", "duration", "getDuration", "setDuration", "Landroid/view/animation/Interpolator;", "interpolator", "getInterpolator", "()Landroid/view/animation/Interpolator;", "setInterpolator", "(Landroid/view/animation/Interpolator;)V", "onCancel", "Lkotlin/Function1;", "", "getOnCancel", "()Lkotlin/jvm/functions/Function1;", "setOnCancel", "(Lkotlin/jvm/functions/Function1;)V", "onEnd", "getOnEnd", "setOnEnd", "onRepeat", "getOnRepeat", "setOnRepeat", "onStart", "getOnStart", "setOnStart", "addListener", "addListener$mogo_module_carchatting_debug", "reverse", "toBeginning", "mogo-module-carchatting_debug"}) +public abstract class Anim { + @org.jetbrains.annotations.Nullable() + private android.animation.AnimatorSet.Builder builder; + + /** + * the callbacks describe the status of animation + */ + @org.jetbrains.annotations.Nullable() + private kotlin.jvm.functions.Function1 onRepeat; + @org.jetbrains.annotations.Nullable() + private kotlin.jvm.functions.Function1 onEnd; + @org.jetbrains.annotations.Nullable() + private kotlin.jvm.functions.Function1 onCancel; + @org.jetbrains.annotations.Nullable() + private kotlin.jvm.functions.Function1 onStart; + + /** + * the real Animator which is about to run + */ + @org.jetbrains.annotations.NotNull() + public abstract android.animation.Animator getAnimator(); + + /** + * the real Animator which is about to run + */ + public abstract void setAnimator(@org.jetbrains.annotations.NotNull() + android.animation.Animator p0); + + @org.jetbrains.annotations.Nullable() + public final android.animation.AnimatorSet.Builder getBuilder() { + return null; + } + + public final void setBuilder(@org.jetbrains.annotations.Nullable() + android.animation.AnimatorSet.Builder p0) { + } + + public final long getDuration() { + return 0L; + } + + public final void setDuration(long value) { + } + + @org.jetbrains.annotations.NotNull() + public final android.view.animation.Interpolator getInterpolator() { + return null; + } + + public final void setInterpolator(@org.jetbrains.annotations.NotNull() + android.view.animation.Interpolator value) { + } + + public final long getDelay() { + return 0L; + } + + public final void setDelay(long value) { + } + + @org.jetbrains.annotations.Nullable() + public final kotlin.jvm.functions.Function1 getOnRepeat() { + return null; + } + + public final void setOnRepeat(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 p0) { + } + + @org.jetbrains.annotations.Nullable() + public final kotlin.jvm.functions.Function1 getOnEnd() { + return null; + } + + public final void setOnEnd(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 p0) { + } + + @org.jetbrains.annotations.Nullable() + public final kotlin.jvm.functions.Function1 getOnCancel() { + return null; + } + + public final void setOnCancel(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 p0) { + } + + @org.jetbrains.annotations.Nullable() + public final kotlin.jvm.functions.Function1 getOnStart() { + return null; + } + + public final void setOnStart(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 p0) { + } + + /** + * reverse the value of [ValueAnimator] + */ + public abstract void reverse(); + + /** + * to the beginning of animation + */ + public abstract void toBeginning(); + + public final void addListener$mogo_module_carchatting_debug() { + } + + public Anim() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/Anim.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/Anim.kapt_metadata new file mode 100644 index 0000000000..77fecf77c9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/Anim.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.java new file mode 100644 index 0000000000..21bfe4c591 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.java @@ -0,0 +1,168 @@ +package com.mogo.module.carchatting.anim_dsl; + +import java.lang.System; + +/** + * a Container for [Anim] just like [AnimatorSet], but it could reverse itself without API level limitation. + * In addition, it is easy to build mush shorter and readable animation code like the following: + * + * animSet { + * anim { + * values = floatArrayOf(1.0f, 1.4f) + * action = { value -> tv.scaleX = (value as Float) } + * } with anim { + * values = floatArrayOf(0f, -200f) + * action = { value -> tv.translationY = (value as Float) } + * } + * duration = 200L + * } + * + * if you want to run animation with several properties on one Object, + * using [ObjectAnim] is more efficient than [ValueAnim], like the following: + * + * animSet { + * objectAnim { + * target = tvTitle + * translationX = floatArrayOf(0f, 200f) + * alpha = floatArrayOf(1.0f, 0.3f) + * scaleX = floatArrayOf(1.0f, 1.3f) + * } + * duration = 100L + * } + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000P\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010!\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0006\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u001f\u0010\u0016\u001a\u00020\u00012\u0017\u0010\u0017\u001a\u0013\u0012\u0004\u0012\u00020\u0019\u0012\u0004\u0012\u00020\u001a0\u0018\u00a2\u0006\u0002\b\u001bJ\u0006\u0010\u001c\u001a\u00020\u001aJ\u0010\u0010\u001d\u001a\u0004\u0018\u00010\u00012\u0006\u0010\u001e\u001a\u00020\u001fJ\u001f\u0010 \u001a\u00020\u00012\u0017\u0010!\u001a\u0013\u0012\u0004\u0012\u00020\"\u0012\u0004\u0012\u00020\u001a0\u0018\u00a2\u0006\u0002\b\u001bJ\b\u0010#\u001a\u00020\u001aH\u0016J\u0006\u0010$\u001a\u00020\u001aJ\b\u0010%\u001a\u00020\u001aH\u0016J\u0015\u0010&\u001a\u00020\u0001*\u00020\u00012\u0006\u0010\u0016\u001a\u00020\u0001H\u0086\u0004J\u0015\u0010\'\u001a\u00020\u0001*\u00020\u00012\u0006\u0010\u0016\u001a\u00020\u0001H\u0086\u0004R\u001a\u0010\u0003\u001a\u00020\u0004X\u0096\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR\u0014\u0010\t\u001a\u00020\n8BX\u0082\u0004\u00a2\u0006\u0006\u001a\u0004\b\u000b\u0010\fR!\u0010\r\u001a\b\u0012\u0004\u0012\u00020\u00010\u000e8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0011\u0010\u0012\u001a\u0004\b\u000f\u0010\u0010R\u000e\u0010\u0013\u001a\u00020\u0014X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0015\u001a\u00020\u0014X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006("}, d2 = {"Lcom/mogo/module/carchatting/anim_dsl/AnimSet;", "Lcom/mogo/module/carchatting/anim_dsl/Anim;", "()V", "animator", "Landroid/animation/Animator;", "getAnimator", "()Landroid/animation/Animator;", "setAnimator", "(Landroid/animation/Animator;)V", "animatorSet", "Landroid/animation/AnimatorSet;", "getAnimatorSet", "()Landroid/animation/AnimatorSet;", "anims", "", "getAnims", "()Ljava/util/List;", "anims$delegate", "Lkotlin/Lazy;", "hasReverse", "", "isAtStartPoint", "anim", "animCreation", "Lkotlin/Function1;", "Lcom/mogo/module/carchatting/anim_dsl/ValueAnim;", "", "Lkotlin/ExtensionFunctionType;", "cancel", "getAnim", "index", "", "objectAnim", "action", "Lcom/mogo/module/carchatting/anim_dsl/ObjectAnim;", "reverse", "start", "toBeginning", "before", "with", "mogo-module-carchatting_debug"}) +public final class AnimSet extends com.mogo.module.carchatting.anim_dsl.Anim { + @org.jetbrains.annotations.NotNull() + private android.animation.Animator animator; + private final kotlin.Lazy anims$delegate = null; + + /** + * whether animation is at start point + */ + private boolean isAtStartPoint = true; + + /** + * whether animation value has reversed + */ + private boolean hasReverse = false; + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public android.animation.Animator getAnimator() { + return null; + } + + @java.lang.Override() + public void setAnimator(@org.jetbrains.annotations.NotNull() + android.animation.Animator p0) { + } + + private final android.animation.AnimatorSet getAnimatorSet() { + return null; + } + + private final java.util.List getAnims() { + return null; + } + + /** + * it creates a single [ValueAnim] + * [with] and [before] is available to combine several [anim] to one complex animation set by chain-invocation style. + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.anim_dsl.Anim anim(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 animCreation) { + return null; + } + + /** + * build an [ObjectAnim] with a much shorter and readable code by DSL + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.anim_dsl.Anim objectAnim(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 action) { + return null; + } + + /** + * start the [AnimSet] + */ + public final void start() { + } + + /** + * reverse the animation + */ + @java.lang.Override() + public void reverse() { + } + + @java.lang.Override() + public void toBeginning() { + } + + /** + * get the animation in the [AnimSet] by [index] + */ + @org.jetbrains.annotations.Nullable() + public final com.mogo.module.carchatting.anim_dsl.Anim getAnim(int index) { + return null; + } + + /** + * cancel the [AnimatorSet] + */ + public final void cancel() { + } + + /** + * if you want to play animations one after another, use [before] to link several [Anim], + * like the following: + * + * animSet { + * anim { + * value = floatArrayOf(1.0f, 1.4f) + * action = { value -> tv.scaleX = (value as Float) } + * } before anim { + * values = floatArrayOf(0f, -200f) + * action = { value -> btn.translationY = (value as Float) } + * } + * duration = 200L + * } + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.anim_dsl.Anim before(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.anim_dsl.Anim $this$before, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.anim_dsl.Anim anim) { + return null; + } + + /** + * if you want to play animations at the same time, use [with] to link several [Anim], + * like the following: + * + * animSet { + * play { + * value = floatArrayOf(1.0f, 1.4f) + * action = { value -> tv.scaleX = (value as Float) } + * } with anim { + * values = floatArrayOf(0f, -200f) + * action = { value -> btn.translationY = (value as Float) } + * } + * duration = 200L + * } + * + * if there are both [with] and [before] in one invocation chain, [with] has higher priority, + * for example: `a before b with c` means b and c will play at the same time and a plays before them + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.anim_dsl.Anim with(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.anim_dsl.Anim $this$with, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.anim_dsl.Anim anim) { + return null; + } + + public AnimSet() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.kapt_metadata new file mode 100644 index 0000000000..69bbf924be Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.java new file mode 100644 index 0000000000..73494e2e8d --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.java @@ -0,0 +1,16 @@ +package com.mogo.module.carchatting.anim_dsl; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0016\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\u0018\u0002\n\u0000\u001a\u001f\u0010\u0000\u001a\u00020\u00012\u0017\u0010\u0002\u001a\u0013\u0012\u0004\u0012\u00020\u0001\u0012\u0004\u0012\u00020\u00040\u0003\u00a2\u0006\u0002\b\u0005\u00a8\u0006\u0006"}, d2 = {"animSet", "Lcom/mogo/module/carchatting/anim_dsl/AnimSet;", "creation", "Lkotlin/Function1;", "", "Lkotlin/ExtensionFunctionType;", "mogo-module-carchatting_debug"}) +public final class AnimSetKt { + + /** + * build a set of animation with a much shorter and readable code by DSL + */ + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.anim_dsl.AnimSet animSet(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 creation) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.kapt_metadata new file mode 100644 index 0000000000..ea5ca48bb7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.java new file mode 100644 index 0000000000..a7782c5ee1 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.java @@ -0,0 +1,198 @@ +package com.mogo.module.carchatting.anim_dsl; + +import java.lang.System; + +/** + * An Animator just like [ObjectAnimator], but it could reverse itself without the limitation of API level. + * In addition, combing with [AnimSet], it is easy to build much more readable animation code. See at [AnimSet] + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000J\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0014\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0017\n\u0002\u0010\u0000\n\u0002\b\f\n\u0002\u0010%\n\u0002\u0010\u000e\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0004\u0018\u0000 @2\u00020\u0001:\u0001@B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010<\u001a\u00020=H\u0016J\u0006\u0010>\u001a\u00020=J\b\u0010?\u001a\u00020=H\u0016R(\u0010\u0005\u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0006\u0010\u0007\"\u0004\b\b\u0010\tR\u001a\u0010\n\u001a\u00020\u000bX\u0096\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000fR\u0014\u0010\u0010\u001a\u00020\u00118BX\u0082\u0004\u00a2\u0006\u0006\u001a\u0004\b\u0012\u0010\u0013R$\u0010\u0015\u001a\u00020\u00142\u0006\u0010\u0003\u001a\u00020\u00148F@FX\u0086\u000e\u00a2\u0006\f\u001a\u0004\b\u0016\u0010\u0017\"\u0004\b\u0018\u0010\u0019R$\u0010\u001a\u001a\u00020\u00142\u0006\u0010\u0003\u001a\u00020\u00148F@FX\u0086\u000e\u00a2\u0006\f\u001a\u0004\b\u001b\u0010\u0017\"\u0004\b\u001c\u0010\u0019R(\u0010\u001d\u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001e\u0010\u0007\"\u0004\b\u001f\u0010\tR(\u0010 \u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b!\u0010\u0007\"\u0004\b\"\u0010\tR(\u0010#\u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b$\u0010\u0007\"\u0004\b%\u0010\tR(\u0010&\u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\'\u0010\u0007\"\u0004\b(\u0010\tR(\u0010)\u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b*\u0010\u0007\"\u0004\b+\u0010\tR(\u0010-\u001a\u0004\u0018\u00010,2\b\u0010\u0003\u001a\u0004\u0018\u00010,@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b.\u0010/\"\u0004\b0\u00101R(\u00102\u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b3\u0010\u0007\"\u0004\b4\u0010\tR(\u00105\u001a\u0004\u0018\u00010\u00042\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b6\u0010\u0007\"\u0004\b7\u0010\tR\u001a\u00108\u001a\u000e\u0012\u0004\u0012\u00020:\u0012\u0004\u0012\u00020;09X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006A"}, d2 = {"Lcom/mogo/module/carchatting/anim_dsl/ObjectAnim;", "Lcom/mogo/module/carchatting/anim_dsl/Anim;", "()V", "value", "", "alpha", "getAlpha", "()[F", "setAlpha", "([F)V", "animator", "Landroid/animation/Animator;", "getAnimator", "()Landroid/animation/Animator;", "setAnimator", "(Landroid/animation/Animator;)V", "objectAnimator", "Landroid/animation/ObjectAnimator;", "getObjectAnimator", "()Landroid/animation/ObjectAnimator;", "", "repeatCount", "getRepeatCount", "()I", "setRepeatCount", "(I)V", "repeatMode", "getRepeatMode", "setRepeatMode", "rotation", "getRotation", "setRotation", "rotationX", "getRotationX", "setRotationX", "rotationY", "getRotationY", "setRotationY", "scaleX", "getScaleX", "setScaleX", "scaleY", "getScaleY", "setScaleY", "", "target", "getTarget", "()Ljava/lang/Object;", "setTarget", "(Ljava/lang/Object;)V", "translationX", "getTranslationX", "setTranslationX", "translationY", "getTranslationY", "setTranslationY", "valuesHolder", "", "", "Landroid/animation/PropertyValuesHolder;", "reverse", "", "setPropertyValueHolder", "toBeginning", "Companion", "mogo-module-carchatting_debug"}) +public final class ObjectAnim extends com.mogo.module.carchatting.anim_dsl.Anim { + + /** + * the [ObjectAnim] is about to run + */ + @org.jetbrains.annotations.NotNull() + private android.animation.Animator animator; + + /** + * predefine properties for [android.view.View] + * add a set() for each property inorder to change it dynamically + */ + @org.jetbrains.annotations.Nullable() + private float[] translationX; + @org.jetbrains.annotations.Nullable() + private float[] translationY; + @org.jetbrains.annotations.Nullable() + private float[] scaleX; + @org.jetbrains.annotations.Nullable() + private float[] scaleY; + @org.jetbrains.annotations.Nullable() + private float[] alpha; + @org.jetbrains.annotations.Nullable() + private float[] rotation; + @org.jetbrains.annotations.Nullable() + private float[] rotationX; + @org.jetbrains.annotations.Nullable() + private float[] rotationY; + + /** + * the object to be animated which is needed for [ObjectAnimator] + */ + @org.jetbrains.annotations.Nullable() + private java.lang.Object target; + + /** + * a map of [PropertyValuesHolder] to describe what kind of animations to run + */ + private final java.util.Map valuesHolder = null; + private static final java.lang.String TRANSLATION_X = "translationX"; + private static final java.lang.String TRANSLATION_Y = "translationY"; + private static final java.lang.String SCALE_X = "scaleX"; + private static final java.lang.String SCALE_Y = "scaleY"; + private static final java.lang.String ALPHA = "alpha"; + private static final java.lang.String ROTATION = "rotation"; + private static final java.lang.String ROTATION_X = "rotationX"; + private static final java.lang.String ROTATION_Y = "rotationY"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.anim_dsl.ObjectAnim.Companion Companion = null; + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public android.animation.Animator getAnimator() { + return null; + } + + @java.lang.Override() + public void setAnimator(@org.jetbrains.annotations.NotNull() + android.animation.Animator p0) { + } + + private final android.animation.ObjectAnimator getObjectAnimator() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final float[] getTranslationX() { + return null; + } + + public final void setTranslationX(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final float[] getTranslationY() { + return null; + } + + public final void setTranslationY(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final float[] getScaleX() { + return null; + } + + public final void setScaleX(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final float[] getScaleY() { + return null; + } + + public final void setScaleY(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final float[] getAlpha() { + return null; + } + + public final void setAlpha(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final float[] getRotation() { + return null; + } + + public final void setRotation(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final float[] getRotationX() { + return null; + } + + public final void setRotationX(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final float[] getRotationY() { + return null; + } + + public final void setRotationY(@org.jetbrains.annotations.Nullable() + float[] value) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getTarget() { + return null; + } + + public final void setTarget(@org.jetbrains.annotations.Nullable() + java.lang.Object value) { + } + + public final int getRepeatCount() { + return 0; + } + + public final void setRepeatCount(int value) { + } + + public final int getRepeatMode() { + return 0; + } + + public final void setRepeatMode(int value) { + } + + /** + * reverse the value of [ObjectAnimator] + */ + @java.lang.Override() + public void reverse() { + } + + @java.lang.Override() + public void toBeginning() { + } + + /** + * add available [PropertyValuesHolder] to the list + */ + public final void setPropertyValueHolder() { + } + + public ObjectAnim() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\b\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000b\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\f"}, d2 = {"Lcom/mogo/module/carchatting/anim_dsl/ObjectAnim$Companion;", "", "()V", "ALPHA", "", "ROTATION", "ROTATION_X", "ROTATION_Y", "SCALE_X", "SCALE_Y", "TRANSLATION_X", "TRANSLATION_Y", "mogo-module-carchatting_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.kapt_metadata new file mode 100644 index 0000000000..f433a27de1 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.java new file mode 100644 index 0000000000..6e54ff7160 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.java @@ -0,0 +1,91 @@ +package com.mogo.module.carchatting.anim_dsl; + +import java.lang.System; + +/** + * An Animator just like [ValueAnimator], but it could reverse itself without the limitation of API level. + * In addition, combing with [AnimSet], it is easy to build much more readable animation code. See at [AnimSet] + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0010\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\b\n\u0002\b\t\n\u0002\u0018\u0002\n\u0002\b\n\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010$\u001a\u00020\u0006H\u0016J\b\u0010%\u001a\u00020\u0006H\u0016R@\u0010\u0007\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u00042\u0014\u0010\u0003\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\b\u0010\t\"\u0004\b\n\u0010\u000bR\u001a\u0010\f\u001a\u00020\rX\u0096\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000e\u0010\u000f\"\u0004\b\u0010\u0010\u0011R$\u0010\u0013\u001a\u00020\u00122\u0006\u0010\u0003\u001a\u00020\u00128F@FX\u0086\u000e\u00a2\u0006\f\u001a\u0004\b\u0014\u0010\u0015\"\u0004\b\u0016\u0010\u0017R$\u0010\u0018\u001a\u00020\u00122\u0006\u0010\u0003\u001a\u00020\u00128F@FX\u0086\u000e\u00a2\u0006\f\u001a\u0004\b\u0019\u0010\u0015\"\u0004\b\u001a\u0010\u0017R\u0014\u0010\u001b\u001a\u00020\u001c8BX\u0082\u0004\u00a2\u0006\u0006\u001a\u0004\b\u001d\u0010\u001eR(\u0010\u001f\u001a\u0004\u0018\u00010\u00052\b\u0010\u0003\u001a\u0004\u0018\u00010\u0005@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b \u0010!\"\u0004\b\"\u0010#\u00a8\u0006&"}, d2 = {"Lcom/mogo/module/carchatting/anim_dsl/ValueAnim;", "Lcom/mogo/module/carchatting/anim_dsl/Anim;", "()V", "value", "Lkotlin/Function1;", "", "", "action", "getAction", "()Lkotlin/jvm/functions/Function1;", "setAction", "(Lkotlin/jvm/functions/Function1;)V", "animator", "Landroid/animation/Animator;", "getAnimator", "()Landroid/animation/Animator;", "setAnimator", "(Landroid/animation/Animator;)V", "", "repeatCount", "getRepeatCount", "()I", "setRepeatCount", "(I)V", "repeatMode", "getRepeatMode", "setRepeatMode", "valueAnimator", "Landroid/animation/ValueAnimator;", "getValueAnimator", "()Landroid/animation/ValueAnimator;", "values", "getValues", "()Ljava/lang/Object;", "setValues", "(Ljava/lang/Object;)V", "reverse", "toBeginning", "mogo-module-carchatting_debug"}) +public final class ValueAnim extends com.mogo.module.carchatting.anim_dsl.Anim { + + /** + * the [ValueAnimator] is about to run + */ + @org.jetbrains.annotations.NotNull() + private android.animation.Animator animator; + + /** + * the animation value + */ + @org.jetbrains.annotations.Nullable() + private java.lang.Object values; + + /** + * [action] describe what to animate + */ + @org.jetbrains.annotations.Nullable() + private kotlin.jvm.functions.Function1 action; + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public android.animation.Animator getAnimator() { + return null; + } + + @java.lang.Override() + public void setAnimator(@org.jetbrains.annotations.NotNull() + android.animation.Animator p0) { + } + + private final android.animation.ValueAnimator getValueAnimator() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getValues() { + return null; + } + + public final void setValues(@org.jetbrains.annotations.Nullable() + java.lang.Object value) { + } + + @org.jetbrains.annotations.Nullable() + public final kotlin.jvm.functions.Function1 getAction() { + return null; + } + + public final void setAction(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 value) { + } + + public final int getRepeatCount() { + return 0; + } + + public final void setRepeatCount(int value) { + } + + public final int getRepeatMode() { + return 0; + } + + public final void setRepeatMode(int value) { + } + + /** + * reverse the value of [ValueAnimator] + */ + @java.lang.Override() + public void reverse() { + } + + @java.lang.Override() + public void toBeginning() { + } + + public ValueAnim() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.kapt_metadata new file mode 100644 index 0000000000..d56411f803 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.java new file mode 100644 index 0000000000..fd58df06e9 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.java @@ -0,0 +1,69 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0005\n\u0002\u0010\u0006\n\u0002\b\u0010\u0018\u00002\u00020\u0001Be\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u0012\b\b\u0002\u0010\u0006\u001a\u00020\u0003\u0012\b\b\u0002\u0010\u0007\u001a\u00020\u0003\u0012\b\b\u0002\u0010\b\u001a\u00020\u0003\u0012\b\b\u0002\u0010\t\u001a\u00020\u0003\u0012\b\b\u0002\u0010\n\u001a\u00020\u000b\u0012\n\b\u0002\u0010\f\u001a\u0004\u0018\u00010\u0005\u0012\n\b\u0002\u0010\r\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\u0002\u0010\u000eR\u0013\u0010\f\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u0010R\u0011\u0010\n\u001a\u00020\u000b\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u0012R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0013\u0010\u0014R\u0011\u0010\b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0015\u0010\u0014R\u0011\u0010\t\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0016\u0010\u0014R\u0011\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0017\u0010\u0014R\u0011\u0010\u0007\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0018\u0010\u0014R\u0013\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0019\u0010\u0010R\u0013\u0010\r\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001a\u0010\u0010\u00a8\u0006\u001b"}, d2 = {"Lcom/mogo/module/carchatting/bean/EnthusiasmIndex;", "", "id", "", "sn", "", "score", "shareNum", "likeNum", "notLikeNum", "enthusiasmIndex", "", "createTime", "updateTime", "(ILjava/lang/String;IIIIDLjava/lang/String;Ljava/lang/String;)V", "getCreateTime", "()Ljava/lang/String;", "getEnthusiasmIndex", "()D", "getId", "()I", "getLikeNum", "getNotLikeNum", "getScore", "getShareNum", "getSn", "getUpdateTime", "mogo-module-carchatting_debug"}) +public final class EnthusiasmIndex { + private final int id = 0; + @org.jetbrains.annotations.Nullable() + private final java.lang.String sn = null; + private final int score = 0; + private final int shareNum = 0; + private final int likeNum = 0; + private final int notLikeNum = 0; + private final double enthusiasmIndex = 0.0; + @org.jetbrains.annotations.Nullable() + private final java.lang.String createTime = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String updateTime = null; + + public final int getId() { + return 0; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getSn() { + return null; + } + + public final int getScore() { + return 0; + } + + public final int getShareNum() { + return 0; + } + + public final int getLikeNum() { + return 0; + } + + public final int getNotLikeNum() { + return 0; + } + + public final double getEnthusiasmIndex() { + return 0.0; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCreateTime() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getUpdateTime() { + return null; + } + + public EnthusiasmIndex(int id, @org.jetbrains.annotations.Nullable() + java.lang.String sn, int score, int shareNum, int likeNum, int notLikeNum, double enthusiasmIndex, @org.jetbrains.annotations.Nullable() + java.lang.String createTime, @org.jetbrains.annotations.Nullable() + java.lang.String updateTime) { + super(); + } + + public EnthusiasmIndex() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.kapt_metadata new file mode 100644 index 0000000000..635d678933 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ErrorInfo.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ErrorInfo.java new file mode 100644 index 0000000000..14f771b5e2 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ErrorInfo.java @@ -0,0 +1,63 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\r\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\t\u0010\u000f\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0010\u001a\u00020\u0005H\u00c6\u0003J\u001d\u0010\u0011\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005H\u00c6\u0001J\u0013\u0010\u0012\u001a\u00020\u00132\b\u0010\u0014\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0015\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u0016\u001a\u00020\u0005H\u00d6\u0001R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\nR\u001a\u0010\u0004\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\f\"\u0004\b\r\u0010\u000e\u00a8\u0006\u0017"}, d2 = {"Lcom/mogo/module/carchatting/bean/ErrorInfo;", "", "errorCode", "", "errorMsg", "", "(ILjava/lang/String;)V", "getErrorCode", "()I", "setErrorCode", "(I)V", "getErrorMsg", "()Ljava/lang/String;", "setErrorMsg", "(Ljava/lang/String;)V", "component1", "component2", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-carchatting_debug"}) +public final class ErrorInfo { + private int errorCode; + @org.jetbrains.annotations.NotNull() + private java.lang.String errorMsg; + + public final int getErrorCode() { + return 0; + } + + public final void setErrorCode(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getErrorMsg() { + return null; + } + + public final void setErrorMsg(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public ErrorInfo(int errorCode, @org.jetbrains.annotations.NotNull() + java.lang.String errorMsg) { + super(); + } + + public final int component1() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.bean.ErrorInfo copy(int errorCode, @org.jetbrains.annotations.NotNull() + java.lang.String errorMsg) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ErrorInfo.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ErrorInfo.kapt_metadata new file mode 100644 index 0000000000..6ba4ff9b2f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ErrorInfo.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ResponseInfo.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ResponseInfo.java new file mode 100644 index 0000000000..e8410e6d71 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ResponseInfo.java @@ -0,0 +1,63 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\r\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\t\u0010\u000f\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0010\u001a\u00020\u0005H\u00c6\u0003J\u001d\u0010\u0011\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005H\u00c6\u0001J\u0013\u0010\u0012\u001a\u00020\u00132\b\u0010\u0014\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0015\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u0016\u001a\u00020\u0005H\u00d6\u0001R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\nR\u001a\u0010\u0004\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\f\"\u0004\b\r\u0010\u000e\u00a8\u0006\u0017"}, d2 = {"Lcom/mogo/module/carchatting/bean/ResponseInfo;", "", "code", "", "msg", "", "(ILjava/lang/String;)V", "getCode", "()I", "setCode", "(I)V", "getMsg", "()Ljava/lang/String;", "setMsg", "(Ljava/lang/String;)V", "component1", "component2", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-carchatting_debug"}) +public final class ResponseInfo { + private int code; + @org.jetbrains.annotations.NotNull() + private java.lang.String msg; + + public final int getCode() { + return 0; + } + + public final void setCode(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getMsg() { + return null; + } + + public final void setMsg(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public ResponseInfo(int code, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + super(); + } + + public final int component1() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.bean.ResponseInfo copy(int code, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ResponseInfo.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ResponseInfo.kapt_metadata new file mode 100644 index 0000000000..a8ffc12666 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/ResponseInfo.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/Result.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/Result.java new file mode 100644 index 0000000000..02e5ffb6f6 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/Result.java @@ -0,0 +1,19 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0004\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\u0007"}, d2 = {"Lcom/mogo/module/carchatting/bean/Result;", "", "enthusiasmIndex", "Lcom/mogo/module/carchatting/bean/EnthusiasmIndex;", "(Lcom/mogo/module/carchatting/bean/EnthusiasmIndex;)V", "getEnthusiasmIndex", "()Lcom/mogo/module/carchatting/bean/EnthusiasmIndex;", "mogo-module-carchatting_debug"}) +public final class Result { + @org.jetbrains.annotations.NotNull() + private final com.mogo.module.carchatting.bean.EnthusiasmIndex enthusiasmIndex = null; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.bean.EnthusiasmIndex getEnthusiasmIndex() { + return null; + } + + public Result(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.EnthusiasmIndex enthusiasmIndex) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/Result.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/Result.kapt_metadata new file mode 100644 index 0000000000..b0862ca809 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/Result.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfo.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfo.java new file mode 100644 index 0000000000..7da44706bd --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfo.java @@ -0,0 +1,98 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\t\n\u0002\b\u001a\u0018\u00002\u00020\u0001Bc\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\n\b\u0002\u0010\u0006\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u0007\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\b\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\t\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\n\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u000b\u001a\u0004\u0018\u00010\u0003\u0012\u0006\u0010\f\u001a\u00020\u0003\u0012\u0006\u0010\r\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u000eJ\b\u0010\u001e\u001a\u00020\u0003H\u0016R\u0013\u0010\t\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u0010R\u0013\u0010\n\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u0010R\u0013\u0010\b\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0012\u0010\u0010R\u0011\u0010\f\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0013\u0010\u0010R\u0013\u0010\u000b\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0014\u0010\u0010R\u0011\u0010\r\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0015\u0010\u0010R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0016\u0010\u0010R\u0013\u0010\u0007\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0017\u0010\u0010R\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0018\u0010\u0019R(\u0010\u0006\u001a\u0004\u0018\u00010\u00032\b\u0010\u001a\u001a\u0004\u0018\u00010\u0003@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001b\u0010\u0010\"\u0004\b\u001c\u0010\u001d\u00a8\u0006\u001f"}, d2 = {"Lcom/mogo/module/carchatting/bean/UserInfo;", "", "sn", "", "userId", "", "userName", "userHead", "gender", "age", "carTypeName", "location", "lat", "lon", "(Ljava/lang/String;JLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "getAge", "()Ljava/lang/String;", "getCarTypeName", "getGender", "getLat", "getLocation", "getLon", "getSn", "getUserHead", "getUserId", "()J", "value", "getUserName", "setUserName", "(Ljava/lang/String;)V", "toString", "mogo-module-carchatting_debug"}) +public final class UserInfo { + @org.jetbrains.annotations.Nullable() + private java.lang.String userName = "\u5c0f\u8611\u83c7"; + @org.jetbrains.annotations.NotNull() + private final java.lang.String sn = null; + private final long userId = 0L; + @org.jetbrains.annotations.Nullable() + private final java.lang.String userHead = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String gender = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String age = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String carTypeName = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String location = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String lat = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String lon = null; + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getUserName() { + return null; + } + + public final void setUserName(@org.jetbrains.annotations.Nullable() + java.lang.String value) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + public final long getUserId() { + return 0L; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getUserHead() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getGender() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getAge() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCarTypeName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getLocation() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getLat() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getLon() { + return null; + } + + public UserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String sn, long userId, @org.jetbrains.annotations.Nullable() + java.lang.String userName, @org.jetbrains.annotations.Nullable() + java.lang.String userHead, @org.jetbrains.annotations.Nullable() + java.lang.String gender, @org.jetbrains.annotations.Nullable() + java.lang.String age, @org.jetbrains.annotations.Nullable() + java.lang.String carTypeName, @org.jetbrains.annotations.Nullable() + java.lang.String location, @org.jetbrains.annotations.NotNull() + java.lang.String lat, @org.jetbrains.annotations.NotNull() + java.lang.String lon) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfo.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfo.kapt_metadata new file mode 100644 index 0000000000..f8ee4666c9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfo.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfoKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfoKt.java new file mode 100644 index 0000000000..fe110330ce --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfoKt.java @@ -0,0 +1,13 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u000e\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u001a\u000e\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003\u00a8\u0006\u0004"}, d2 = {"toUserInfo", "Lcom/mogo/module/carchatting/bean/UserInfo;", "sns", "Lcom/mogo/chat/model/bean/Sns;", "mogo-module-carchatting_debug"}) +public final class UserInfoKt { + + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.bean.UserInfo toUserInfo(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Sns sns) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfoKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfoKt.kapt_metadata new file mode 100644 index 0000000000..dbb106e9e5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/UserInfoKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWake.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWake.java new file mode 100644 index 0000000000..0d7b71a687 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWake.java @@ -0,0 +1,34 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\b\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002R \u0010\u0003\u001a\u0004\u0018\u00010\u00048\u0006@\u0006X\u0087\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR\u001c\u0010\t\u001a\u0004\u0018\u00010\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\n\u0010\u0006\"\u0004\b\u000b\u0010\b\u00a8\u0006\f"}, d2 = {"Lcom/mogo/module/carchatting/bean/VoiceWake;", "", "()V", "obj", "", "getObj", "()Ljava/lang/String;", "setObj", "(Ljava/lang/String;)V", "operation", "getOperation", "setOperation", "mogo-module-carchatting_debug"}) +public final class VoiceWake { + @org.jetbrains.annotations.Nullable() + @com.google.gson.annotations.SerializedName(value = "object") + private java.lang.String obj; + @org.jetbrains.annotations.Nullable() + private java.lang.String operation; + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getObj() { + return null; + } + + public final void setObj(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getOperation() { + return null; + } + + public final void setOperation(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + public VoiceWake() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWake.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWake.kapt_metadata new file mode 100644 index 0000000000..ef0bf7d503 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWake.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.java new file mode 100644 index 0000000000..61c350c0c4 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.java @@ -0,0 +1,12 @@ +package com.mogo.module.carchatting.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\f\n\u0000\n\u0002\u0010\u000b\n\u0002\u0018\u0002\n\u0000\u001a\n\u0010\u0000\u001a\u00020\u0001*\u00020\u0002\u00a8\u0006\u0003"}, d2 = {"check", "", "Lcom/mogo/module/carchatting/bean/VoiceWake;", "mogo-module-carchatting_debug"}) +public final class VoiceWakeKt { + + public static final boolean check(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.VoiceWake $this$check) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.kapt_metadata new file mode 100644 index 0000000000..78fb11f495 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatCenter.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatCenter.java new file mode 100644 index 0000000000..e35ef4f6a2 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatCenter.java @@ -0,0 +1,389 @@ +package com.mogo.module.carchatting.biz; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000r\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000b\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u001d\n\u0002\u0018\u0002\n\u0002\b#\n\u0002\u0018\u0002\n\u0002\b\u0016\u0018\u0000 t2\u00020\u00012\u00020\u00022\u00020\u0003:\u0001tB\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0004J\b\u0010\u001f\u001a\u00020\fH\u0016J\u0010\u0010 \u001a\u00020\f2\u0006\u0010!\u001a\u00020\u0015H\u0016J\u0012\u0010\"\u001a\u00020\f2\b\u0010#\u001a\u0004\u0018\u00010\u0013H\u0016J\u0010\u0010$\u001a\u00020\f2\u0006\u0010%\u001a\u00020\u000bH\u0016J\u0010\u0010&\u001a\u00020\f2\u0006\u0010\'\u001a\u00020\u0015H\u0016J\u0010\u0010(\u001a\u00020\f2\u0006\u0010)\u001a\u00020\u000bH\u0016J\b\u0010*\u001a\u00020\fH\u0016J\b\u0010+\u001a\u00020\fH\u0002J\b\u0010,\u001a\u00020\fH\u0002J\u0012\u0010-\u001a\u00020\f2\b\b\u0002\u0010.\u001a\u00020\u000bH\u0002J\u0010\u0010/\u001a\u00020\f2\u0006\u0010.\u001a\u00020\u000bH\u0002J\u0006\u00100\u001a\u00020\fJ\b\u00101\u001a\u00020\fH\u0002J\u000e\u00102\u001a\u00020\f2\u0006\u00103\u001a\u00020\u0015J\u000e\u00104\u001a\u00020\f2\u0006\u00103\u001a\u00020\u0015J\u0010\u00105\u001a\u00020\f2\u0006\u00106\u001a\u00020\u0015H\u0002J\b\u0010%\u001a\u00020\fH\u0002J\b\u00107\u001a\u00020\fH\u0002J0\u00108\u001a\u00020\f2\u0016\b\u0002\u00109\u001a\u0010\u0012\u0004\u0012\u00020\u0015\u0012\u0004\u0012\u00020\f\u0018\u00010\n2\u0010\b\u0002\u0010:\u001a\n\u0012\u0004\u0012\u00020\f\u0018\u00010;J\u000e\u0010<\u001a\u00020\f2\u0006\u0010=\u001a\u00020\u0011J\b\u0010>\u001a\u00020\fH\u0002J\u001e\u0010?\u001a\u00020\f2\u0006\u0010\u0014\u001a\u00020\u00152\u0006\u0010\r\u001a\u00020\u000e2\u0006\u0010\u0005\u001a\u00020\u0006J\u000e\u0010@\u001a\u00020\f2\u0006\u00103\u001a\u00020\u0015J\u000e\u0010A\u001a\u00020\f2\u0006\u00106\u001a\u00020\u0015J\u0012\u0010B\u001a\u00020\f2\b\u0010#\u001a\u0004\u0018\u00010\u0013H\u0016J\u000e\u0010C\u001a\u00020\f2\u0006\u0010D\u001a\u00020\u0015J\u0010\u0010E\u001a\u00020\f2\u0006\u0010\'\u001a\u00020\u0015H\u0016J\b\u0010F\u001a\u00020\fH\u0016J\u0010\u0010G\u001a\u00020\f2\u0006\u0010#\u001a\u00020\u0013H\u0016J\u001a\u0010G\u001a\u00020\f2\u0006\u0010H\u001a\u00020\u000e2\b\b\u0002\u0010I\u001a\u00020\u000eH\u0002J\"\u0010J\u001a\u00020\f2\u0006\u0010K\u001a\u00020\u000b2\b\u0010#\u001a\u0004\u0018\u00010\u00132\u0006\u0010!\u001a\u00020\u0015H\u0016J\u0006\u0010L\u001a\u00020\fJ\b\u0010M\u001a\u00020\fH\u0002J\b\u0010N\u001a\u00020\fH\u0016J\u0010\u0010O\u001a\u00020\f2\u0006\u0010.\u001a\u00020\u000bH\u0016J\b\u0010P\u001a\u00020\fH\u0016J\u0010\u0010Q\u001a\u00020\f2\u0006\u0010#\u001a\u00020\u0013H\u0016J\b\u0010R\u001a\u00020\fH\u0002J\b\u0010S\u001a\u00020\fH\u0002J\u000e\u0010S\u001a\u00020\f2\u0006\u0010D\u001a\u00020\u0015J\u001a\u0010T\u001a\u00020\f2\u0012\u0010\t\u001a\u000e\u0012\u0004\u0012\u00020\u000b\u0012\u0004\u0012\u00020\f0\nJ\u001a\u0010U\u001a\u00020\f2\u0012\u0010\u001e\u001a\u000e\u0012\u0004\u0012\u00020\u000b\u0012\u0004\u0012\u00020\f0\nJ\b\u0010V\u001a\u00020\fH\u0002J\u0010\u0010W\u001a\u00020\f2\u0006\u0010X\u001a\u00020\u0015H\u0016J\u0010\u0010Y\u001a\u00020\f2\u0006\u0010#\u001a\u00020\u0013H\u0016J\b\u0010Z\u001a\u00020\fH\u0002J\b\u0010[\u001a\u00020\fH\u0002J\u0012\u0010\\\u001a\u00020\f2\b\u0010#\u001a\u0004\u0018\u00010\u0015H\u0016J\u000e\u0010]\u001a\u00020\f2\u0006\u0010^\u001a\u00020_J\b\u0010`\u001a\u00020\fH\u0002J\u0010\u0010a\u001a\u00020\f2\u0006\u0010b\u001a\u00020\u0015H\u0002J\b\u0010c\u001a\u00020\fH\u0002J\b\u0010d\u001a\u00020\fH\u0002J\b\u0010e\u001a\u00020\fH\u0002J\u0010\u0010f\u001a\u00020\f2\u0006\u0010g\u001a\u00020\u000eH\u0002J\u0010\u0010h\u001a\u00020\f2\u0006\u0010g\u001a\u00020\u000eH\u0016J\u0006\u0010i\u001a\u00020\fJ\u0006\u0010j\u001a\u00020\fJ\b\u0010k\u001a\u00020\fH\u0002J\u001a\u0010l\u001a\u00020\f2\u0012\u0010m\u001a\u000e\u0012\u0004\u0012\u00020\u000b\u0012\u0004\u0012\u00020\f0\nJ\b\u0010n\u001a\u00020\fH\u0016J\u0010\u0010o\u001a\u00020\f2\u0006\u0010%\u001a\u00020\u000bH\u0016J\u0010\u0010p\u001a\u00020\f2\u0006\u0010q\u001a\u00020\u000bH\u0016J\u0018\u0010r\u001a\u00020\f2\u000e\u0010\u001b\u001a\n\u0012\u0004\u0012\u00020\u001d\u0018\u00010\u001cH\u0016J\u0010\u0010s\u001a\u00020\f2\u0006\u0010)\u001a\u00020\u000bH\u0016R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u001c\u0010\t\u001a\u0010\u0012\u0004\u0012\u00020\u000b\u0012\u0004\u0012\u00020\f\u0018\u00010\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0012\u0010\r\u001a\u0004\u0018\u00010\u000eX\u0082\u000e\u00a2\u0006\u0004\n\u0002\u0010\u000fR\u0010\u0010\u0010\u001a\u0004\u0018\u00010\u0011X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0012\u001a\u0004\u0018\u00010\u0013X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0014\u001a\u0004\u0018\u00010\u0015X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0016\u001a\u0004\u0018\u00010\u0017X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0018\u001a\u00020\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0019\u001a\u00020\u001aX\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u001b\u001a\n\u0012\u0004\u0012\u00020\u001d\u0018\u00010\u001cX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\u001e\u001a\u0010\u0012\u0004\u0012\u00020\u000b\u0012\u0004\u0012\u00020\f\u0018\u00010\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006u"}, d2 = {"Lcom/mogo/module/carchatting/biz/CallChatCenter;", "Lcom/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack;", "Lcom/mogo/module/carchatting/voice/IVoiceCommandListener;", "Lcom/mogo/module/carchatting/voice/IVoiceIntentListener;", "()V", "activity", "Landroidx/fragment/app/FragmentActivity;", "callChatManager", "Lcom/mogo/module/carchatting/biz/CallChatManager;", "callWindowStatusListener", "Lkotlin/Function1;", "", "", "containerId", "", "Ljava/lang/Integer;", "context", "Landroid/content/Context;", "currentUserInfo", "Lcom/mogo/module/carchatting/bean/UserInfo;", "flag", "", "serviceApi", "Lcom/mogo/service/IMogoServiceApis;", "showCallWindowFromDefault", "statusChangedListener", "Lcom/mogo/service/statusmanager/IMogoStatusChangedListener;", "teamMember", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "userWindowStatusListener", "answerCall", "answerCallError", "errorMsg", "call", "userInfo", "callHangUp", "hangUp", "callInvokeError", "msg", "callRefuse", "refuse", "callTypeInit", "callWindowHideCallBack", "callWindowShowCallBack", "cancelMatch", "isTTS", "cancelMatchToDefault", "closeVehicleTeamFragment", "connectSuccess", "getUserEnthusiasmIndex", "sn", "getUserInfo", "handleCallInvokeData", "userData", "hideLauncherCallingView", "hideUserWindow", "onError", "onFinish", "Lkotlin/Function0;", "init", "mContext", "initServiceApi", "initVehicleTeamContainer", "inviteJoinVehicleTeam", "invokeCall", "invokeCallData", "joinVehicleTeam", "snSender", "joinVehicleTeamInvokeError", "joinVehicleTeamInvokeSuccess", "match", "matchType", "from", "matchInvokeResult", "invokeResult", "onDestroy", "onPause", "onVoiceCancelCall", "onVoiceCancelMatch", "onVoiceStartMatch", "receiverVehicleTeamInvitation", "refreshViewByType", "refuseCall", "registerCallWindowStatusListener", "registerUserWindowStatusListener", "resetCallingView", "showError", "errInfo", "showIncomingCall", "showLauncherCallingView", "showReadyToCallView", "showUserInfo", "showUserWindow", "mogoDriverInfo", "Lcom/zhidao/carchattingprovider/MogoDriverInfo;", "showVehicleTeamFragment", "speakContent", "content", "startCall", "syncCallViewStatus", "syncInitStatus", "toast", "msgId", "toastMsg", "unRegisterCallWindowStatusListener", "unRegisterUserWindowStatusListener", "updateCallingWindowInVRMode", "updateUserCallStatus", "status", "vehicleTeamEnterRoom", "vehicleTeamHangUp", "vehicleTeamInviteResult", "invite", "vehicleTeamMemberChange", "vehicleTeamRefuse", "Companion", "mogo-module-carchatting_debug"}) +public final class CallChatCenter implements com.mogo.module.carchatting.biz.IBizCallChat.IBizCallBack, com.mogo.module.carchatting.voice.IVoiceCommandListener, com.mogo.module.carchatting.voice.IVoiceIntentListener { + private boolean showCallWindowFromDefault = false; + private com.mogo.module.carchatting.bean.UserInfo currentUserInfo; + private java.util.List teamMember; + private com.mogo.service.IMogoServiceApis serviceApi; + private android.content.Context context; + private final com.mogo.module.carchatting.biz.CallChatManager callChatManager = null; + private kotlin.jvm.functions.Function1 callWindowStatusListener; + private kotlin.jvm.functions.Function1 userWindowStatusListener; + private java.lang.String flag; + private java.lang.Integer containerId; + private androidx.fragment.app.FragmentActivity activity; + private final com.mogo.service.statusmanager.IMogoStatusChangedListener statusChangedListener = null; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy callChatCenter$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.biz.CallChatCenter.Companion Companion = null; + + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context mContext) { + } + + private final void initServiceApi() { + } + + private final void updateCallingWindowInVRMode() { + } + + public final void invokeCall(@org.jetbrains.annotations.NotNull() + java.lang.String userData) { + } + + public final void registerCallWindowStatusListener(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 callWindowStatusListener) { + } + + public final void unRegisterCallWindowStatusListener() { + } + + public final void registerUserWindowStatusListener(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 userWindowStatusListener) { + } + + public final void unRegisterUserWindowStatusListener() { + } + + public final void showUserWindow(@org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.MogoDriverInfo mogoDriverInfo) { + } + + public final void hideUserWindow(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 onFinish) { + } + + public final void updateUserCallStatus(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 status) { + } + + public final void getUserEnthusiasmIndex(@org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + public final void getUserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + private final void match(int matchType, int from) { + } + + private final void cancelMatch(boolean isTTS) { + } + + private final void showVehicleTeamFragment() { + } + + public final void closeVehicleTeamFragment() { + } + + private final void cancelMatchToDefault(boolean isTTS) { + } + + @java.lang.Override() + public void onVoiceStartMatch() { + } + + @java.lang.Override() + public void onVoiceCancelCall() { + } + + @java.lang.Override() + public void onVoiceCancelMatch(boolean isTTS) { + } + + private final void speakContent(java.lang.String content) { + } + + private final void handleCallInvokeData(java.lang.String userData) { + } + + private final void syncCallViewStatus() { + } + + private final void syncInitStatus() { + } + + @java.lang.Override() + public void showUserInfo(@org.jetbrains.annotations.Nullable() + java.lang.String userInfo) { + } + + @java.lang.Override() + public void toastMsg(int msgId) { + } + + /** + * 展示Launcher浮窗 + */ + private final void showReadyToCallView() { + } + + private final synchronized void showLauncherCallingView() { + } + + private final synchronized void hideLauncherCallingView() { + } + + private final void callWindowShowCallBack() { + } + + private final void callWindowHideCallBack() { + } + + @java.lang.Override() + public void callTypeInit() { + } + + @java.lang.Override() + public void answerCall() { + } + + @java.lang.Override() + public void answerCallError(@org.jetbrains.annotations.NotNull() + java.lang.String errorMsg) { + } + + @java.lang.Override() + public void call(@org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo userInfo) { + } + + @java.lang.Override() + public void invokeCallData(@org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo userInfo) { + } + + private final void startCall() { + } + + private final void refreshViewByType() { + } + + private final void resetCallingView() { + } + + @java.lang.Override() + public void callInvokeError(@org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } + + /** + * 收到来电消息 + * 1.如果当前已经打来电话,再次接收到,则拒绝 + * 2.如果当前正在打电话中,则拒绝 + */ + @java.lang.Override() + public void showIncomingCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.UserInfo userInfo) { + } + + @java.lang.Override() + public void match(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.UserInfo userInfo) { + } + + @java.lang.Override() + public void matchInvokeResult(boolean invokeResult, @org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo userInfo, @org.jetbrains.annotations.NotNull() + java.lang.String errorMsg) { + } + + /** + * 发起车队邀请 接口回调 + */ + @java.lang.Override() + public void vehicleTeamInviteResult(boolean invite) { + } + + /** + * 接收到车队邀请 + */ + @java.lang.Override() + public void receiverVehicleTeamInvitation(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.UserInfo userInfo) { + } + + /** + * 加入车队成功,进房,开始聊天 + */ + @java.lang.Override() + public void vehicleTeamEnterRoom() { + } + + /** + * 同意加入车队 接口回调 调用成功,等待消息下发 + */ + @java.lang.Override() + public void joinVehicleTeamInvokeSuccess() { + } + + /** + * 同意加入车队 接口回调 调用失败,处理 是否重新申请还是toast + */ + @java.lang.Override() + public void joinVehicleTeamInvokeError(@org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } + + /** + * 车队成员变化 + */ + @java.lang.Override() + public void vehicleTeamMemberChange(@org.jetbrains.annotations.Nullable() + java.util.List teamMember) { + } + + /** + * 挂断电话回调 + */ + @java.lang.Override() + public void callHangUp(boolean hangUp) { + } + + /** + * 退出车队回调 + */ + @java.lang.Override() + public void vehicleTeamHangUp(boolean hangUp) { + } + + /** + * 拒接电话回调 + */ + @java.lang.Override() + public void callRefuse(boolean refuse) { + } + + /** + * 拒绝加入车队回调 + */ + @java.lang.Override() + public void vehicleTeamRefuse(boolean refuse) { + } + + private final void hangUp() { + } + + private final void refuseCall() { + } + + @java.lang.Override() + public void showError(@org.jetbrains.annotations.NotNull() + java.lang.String errInfo) { + } + + private final void connectSuccess() { + } + + private final void toast(int msgId) { + } + + public final void initVehicleTeamContainer(@org.jetbrains.annotations.NotNull() + java.lang.String flag, int containerId, @org.jetbrains.annotations.NotNull() + androidx.fragment.app.FragmentActivity activity) { + } + + /** + * 邀请加入车队 + */ + public final void inviteJoinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + /** + * 加入车队 + */ + public final void joinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String snSender) { + } + + /** + * 拒绝 来电消息/车队邀请 + */ + public final void refuseCall(@org.jetbrains.annotations.NotNull() + java.lang.String snSender) { + } + + private final void onPause() { + } + + public final void onDestroy() { + } + + private CallChatCenter() { + super(); + } + + @java.lang.Override() + public void onCmdSelected(@org.jetbrains.annotations.Nullable() + java.lang.String cmd) { + } + + @java.lang.Override() + public void onCmdAction(@org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public void onCmdCancel(@org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public void onSpeakSelectTimeOut(@org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public void onSpeakEnd(@org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public void onVoiceContinueCall(boolean isTTS) { + } + + @java.lang.Override() + public void onVoiceReMatch() { + } + + @java.lang.Override() + public void onVoiceInviteJoinTeam() { + } + + @java.lang.Override() + public void onVoiceJoinTeam() { + } + + @java.lang.Override() + public void onVoiceRefuseJoinTeam() { + } + + @java.lang.Override() + public void onIntentReceived(@org.jetbrains.annotations.Nullable() + java.lang.String cmd, @org.jetbrains.annotations.Nullable() + android.content.Intent intent) { + } + + public void onSwitchCardToChat() { + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/module/carchatting/biz/CallChatCenter$Companion;", "", "()V", "callChatCenter", "Lcom/mogo/module/carchatting/biz/CallChatCenter;", "getCallChatCenter", "()Lcom/mogo/module/carchatting/biz/CallChatCenter;", "callChatCenter$delegate", "Lkotlin/Lazy;", "mogo-module-carchatting_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.biz.CallChatCenter getCallChatCenter() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatCenter.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatCenter.kapt_metadata new file mode 100644 index 0000000000..c213f42804 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatCenter.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatManager.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatManager.java new file mode 100644 index 0000000000..9ed3c44877 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatManager.java @@ -0,0 +1,223 @@ +package com.mogo.module.carchatting.biz; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000X\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\b\n\u0002\u0010\u000b\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\b\n\u0002\b\u0016\n\u0002\u0010\t\n\u0002\b\u0004\u0018\u0000 A2\u00020\u0001:\u0001AB\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\b\u0010\b\u001a\u00020\tH\u0016J\u0010\u0010\n\u001a\u00020\t2\u0006\u0010\u000b\u001a\u00020\fH\u0016J\u000e\u0010\r\u001a\u00020\t2\u0006\u0010\u000e\u001a\u00020\fJ\u0010\u0010\u000f\u001a\u00020\t2\u0006\u0010\u0010\u001a\u00020\fH\u0016J\u0010\u0010\u0011\u001a\u00020\t2\u0006\u0010\u0012\u001a\u00020\fH\u0016J\u000e\u0010\u0013\u001a\u00020\t2\u0006\u0010\u000e\u001a\u00020\fJ\u0006\u0010\u0014\u001a\u00020\u0015J\u0006\u0010\u0016\u001a\u00020\tJ\u0010\u0010\u0017\u001a\u00020\t2\u0006\u0010\u0018\u001a\u00020\fH\u0016J\u001f\u0010\u0019\u001a\b\u0012\u0004\u0012\u00020\u001b0\u001a2\u0006\u0010\u000e\u001a\u00020\fH\u0082@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001cJ6\u0010\u001d\u001a\u00020\t2\u0006\u0010\u000e\u001a\u00020\f2\u0012\u0010\u001e\u001a\u000e\u0012\u0004\u0012\u00020 \u0012\u0004\u0012\u00020\t0\u001f2\u0012\u0010!\u001a\u000e\u0012\u0004\u0012\u00020\f\u0012\u0004\u0012\u00020\t0\u001fJ\u0006\u0010\"\u001a\u00020\fJ6\u0010#\u001a\u00020\t2\u0006\u0010\u000e\u001a\u00020\f2\u0012\u0010\u001e\u001a\u000e\u0012\u0004\u0012\u00020\f\u0012\u0004\u0012\u00020\t0\u001f2\u0012\u0010!\u001a\u000e\u0012\u0004\u0012\u00020\f\u0012\u0004\u0012\u00020\t0\u001fJ\u0006\u0010$\u001a\u00020\tJ\u0018\u0010%\u001a\u00020\t2\u0006\u0010%\u001a\u00020\u00152\u0006\u0010&\u001a\u00020\'H\u0016J\u0010\u0010%\u001a\u00020\t2\b\u0010\u000e\u001a\u0004\u0018\u00010\fJ\u0010\u0010(\u001a\u00020\t2\u0006\u0010)\u001a\u00020\u0015H\u0016J\u000e\u0010(\u001a\u00020\t2\u0006\u0010\u000e\u001a\u00020\fJ\u0010\u0010*\u001a\u00020\t2\u0006\u0010+\u001a\u00020\fH\u0016J\u0006\u0010,\u001a\u00020\u0015J\u0006\u0010-\u001a\u00020\u0015J\u0006\u0010.\u001a\u00020\u0015J\u0006\u0010/\u001a\u00020\u0015J\u0006\u00100\u001a\u00020\u0015J\u000e\u00101\u001a\u00020\t2\u0006\u00102\u001a\u00020\fJ\u0010\u00103\u001a\u00020\t2\u0006\u0010\u0012\u001a\u00020\fH\u0016J\b\u00104\u001a\u00020\tH\u0016J\u0006\u00105\u001a\u00020\tJ\u0010\u00105\u001a\u00020\t2\u0006\u0010\u0010\u001a\u00020\fH\u0016J\u0018\u00106\u001a\u00020\t2\u0006\u00107\u001a\u00020\u00152\u0006\u0010\u0012\u001a\u00020\fH\u0016J\u000e\u00108\u001a\u00020\t2\u0006\u00109\u001a\u00020\u0015J\u0018\u0010:\u001a\u00020\t2\u0006\u0010:\u001a\u00020\u00152\u0006\u0010&\u001a\u00020\'H\u0016J\u000e\u0010;\u001a\u00020\t2\u0006\u00102\u001a\u00020\fJ\u001a\u0010<\u001a\u00020\t2\u0012\u0010=\u001a\u000e\u0012\u0004\u0012\u00020>\u0012\u0004\u0012\u00020\t0\u001fJ\u001c\u0010?\u001a\u00020\t2\b\u0010@\u001a\u0004\u0018\u00010\f2\b\u0010\u000b\u001a\u0004\u0018\u00010\fH\u0016R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0003X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006B"}, d2 = {"Lcom/mogo/module/carchatting/biz/CallChatManager;", "Lcom/zhidao/carchattingprovider/ICallResponse;", "iBizCallChat", "Lcom/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack;", "(Lcom/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack;)V", "iBizCallBack", "repository", "Lcom/mogo/module/carchatting/net/Repository;", "answer", "", "answerCallError", "errorMsg", "", "answerInvoke", "sn", "call", "data", "callInvokeError", "msg", "callToSomeone", "canCall", "", "cancelMatch", "error", "errInfo", "getEnthIndex", "Lcom/mogo/eagle/core/data/BaseResponse;", "Lcom/mogo/module/carchatting/bean/Result;", "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getEnthusiasmIndex", "onSuccess", "Lkotlin/Function1;", "Lcom/mogo/module/carchatting/bean/EnthusiasmIndex;", "onError", "getStatusName", "getUserInfo", "getUserInfoForCall", "hangUp", "type", "", "inviteJoinVehicleTeam", "status", "invokeCallData", "invokeData", "isCalling", "isInit", "isMatchFailed", "isMatching", "isReadyCalling", "joinVehicleTeam", "snSender", "joinVehicleTeamInvokeError", "joinVehicleTeamInvokeSuccess", "match", "matchInvokeResult", "invokeResult", "muteVoice", "mute", "refuse", "refuseCall", "syncCallTimer", "timer", "", "userInfoCallBack", "userInfo", "Companion", "mogo-module-carchatting_debug"}) +public final class CallChatManager implements com.zhidao.carchattingprovider.ICallResponse { + private final com.mogo.module.carchatting.net.Repository repository = null; + private com.mogo.module.carchatting.biz.IBizCallChat.IBizCallBack iBizCallBack; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String METHOD_FLAG = "CAR_CALL_TO_DEFAULT"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.biz.CallChatManager.Companion Companion = null; + + /** + * ****************************************** Invoke + */ + public final boolean isInit() { + return false; + } + + public final boolean canCall() { + return false; + } + + public final boolean isReadyCalling() { + return false; + } + + public final boolean isCalling() { + return false; + } + + public final boolean isMatching() { + return false; + } + + public final boolean isMatchFailed() { + return false; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getStatusName() { + return null; + } + + public final void syncCallTimer(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 timer) { + } + + public final void answerInvoke(@org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + public final void callToSomeone(@org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + public final void match() { + } + + public final void cancelMatch() { + } + + /** + * 邀请加入车队 + */ + public final void inviteJoinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String sn) { + } + + /** + * 加入车队 + */ + public final void joinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String snSender) { + } + + /** + * 挂断电话/车队聊天 + */ + public final void hangUp(@org.jetbrains.annotations.Nullable() + java.lang.String sn) { + } + + /** + * 拒绝电话/拒绝加入车队/未接通时挂断电话 + */ + public final void refuseCall(@org.jetbrains.annotations.NotNull() + java.lang.String snSender) { + } + + public final void muteVoice(boolean mute) { + } + + public final void getUserInfoForCall() { + } + + public final void getUserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + public final void getEnthusiasmIndex(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + /** + * ****************************************** CallBack + */ + @java.lang.Override() + public void invokeCallData(@org.jetbrains.annotations.NotNull() + java.lang.String invokeData) { + } + + @java.lang.Override() + public void answer() { + } + + @java.lang.Override() + public void answerCallError(@org.jetbrains.annotations.NotNull() + java.lang.String errorMsg) { + } + + @java.lang.Override() + public void call(@org.jetbrains.annotations.NotNull() + java.lang.String data) { + } + + @java.lang.Override() + public void callInvokeError(@org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } + + @java.lang.Override() + public void match(@org.jetbrains.annotations.NotNull() + java.lang.String data) { + } + + @java.lang.Override() + public void matchInvokeResult(boolean invokeResult, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } + + @java.lang.Override() + public void hangUp(boolean hangUp, int type) { + } + + @java.lang.Override() + public void refuse(boolean refuse, int type) { + } + + @java.lang.Override() + public void inviteJoinVehicleTeam(boolean status) { + } + + @java.lang.Override() + public void joinVehicleTeamInvokeSuccess() { + } + + @java.lang.Override() + public void joinVehicleTeamInvokeError(@org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } + + @java.lang.Override() + public void error(@org.jetbrains.annotations.NotNull() + java.lang.String errInfo) { + } + + @java.lang.Override() + public void userInfoCallBack(@org.jetbrains.annotations.Nullable() + java.lang.String userInfo, @org.jetbrains.annotations.Nullable() + java.lang.String errorMsg) { + } + + public CallChatManager(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.biz.IBizCallChat.IBizCallBack iBizCallChat) { + super(); + } + + public void canCall(boolean canCall) { + } + + public void cancelMatch(boolean cancelStatus) { + } + + public void addFriend(boolean addFriend) { + } + + public void callWindowStatus(boolean status) { + } + + public void hideUserWindowError(@org.jetbrains.annotations.NotNull() + java.lang.String errorMsg) { + } + + public void invisibleUser(boolean visible) { + } + + public void isFriend(boolean friend) { + } + + public void isOnLine(boolean onLine, @org.jetbrains.annotations.Nullable() + java.lang.String errorMsg) { + } + + public void mute(boolean mute) { + } + + public void userWindowStatus(boolean status) { + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/carchatting/biz/CallChatManager$Companion;", "", "()V", "METHOD_FLAG", "", "mogo-module-carchatting_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatManager.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatManager.kapt_metadata new file mode 100644 index 0000000000..8a014f2971 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/CallChatManager.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IBizCallChat.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IBizCallChat.java new file mode 100644 index 0000000000..27b88435da --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IBizCallChat.java @@ -0,0 +1,68 @@ +package com.mogo.module.carchatting.biz; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001:\u0001\u0002\u00a8\u0006\u0003"}, d2 = {"Lcom/mogo/module/carchatting/biz/IBizCallChat;", "", "IBizCallBack", "mogo-module-carchatting_debug"}) +public abstract interface IBizCallChat { + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000>\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0012\n\u0002\u0010\b\n\u0002\b\u0006\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J\b\u0010\u0002\u001a\u00020\u0003H&J\u0010\u0010\u0004\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H&J\u0012\u0010\u0007\u001a\u00020\u00032\b\u0010\b\u001a\u0004\u0018\u00010\tH&J\u0010\u0010\n\u001a\u00020\u00032\u0006\u0010\u000b\u001a\u00020\fH&J\u0010\u0010\r\u001a\u00020\u00032\u0006\u0010\u000e\u001a\u00020\u0006H&J\u0010\u0010\u000f\u001a\u00020\u00032\u0006\u0010\u0010\u001a\u00020\fH&J\b\u0010\u0011\u001a\u00020\u0003H&J\u0012\u0010\u0012\u001a\u00020\u00032\b\u0010\b\u001a\u0004\u0018\u00010\tH&J\u0010\u0010\u0013\u001a\u00020\u00032\u0006\u0010\u000e\u001a\u00020\u0006H&J\b\u0010\u0014\u001a\u00020\u0003H&J\u0010\u0010\u0015\u001a\u00020\u00032\u0006\u0010\b\u001a\u00020\tH&J\"\u0010\u0016\u001a\u00020\u00032\u0006\u0010\u0017\u001a\u00020\f2\b\u0010\b\u001a\u0004\u0018\u00010\t2\u0006\u0010\u0005\u001a\u00020\u0006H&J\u0010\u0010\u0018\u001a\u00020\u00032\u0006\u0010\b\u001a\u00020\tH&J\u0010\u0010\u0019\u001a\u00020\u00032\u0006\u0010\u001a\u001a\u00020\u0006H&J\u0010\u0010\u001b\u001a\u00020\u00032\u0006\u0010\b\u001a\u00020\tH&J\u0012\u0010\u001c\u001a\u00020\u00032\b\u0010\b\u001a\u0004\u0018\u00010\u0006H&J\u0010\u0010\u001d\u001a\u00020\u00032\u0006\u0010\u001e\u001a\u00020\u001fH&J\b\u0010 \u001a\u00020\u0003H&J\u0010\u0010!\u001a\u00020\u00032\u0006\u0010\u000b\u001a\u00020\fH&J\u0010\u0010\"\u001a\u00020\u00032\u0006\u0010#\u001a\u00020\fH&J\u0018\u0010$\u001a\u00020\u00032\u000e\u0010%\u001a\n\u0012\u0004\u0012\u00020\'\u0018\u00010&H&J\u0010\u0010(\u001a\u00020\u00032\u0006\u0010\u0010\u001a\u00020\fH&\u00a8\u0006)"}, d2 = {"Lcom/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack;", "", "answerCall", "", "answerCallError", "errorMsg", "", "call", "userInfo", "Lcom/mogo/module/carchatting/bean/UserInfo;", "callHangUp", "hangUp", "", "callInvokeError", "msg", "callRefuse", "refuse", "callTypeInit", "invokeCallData", "joinVehicleTeamInvokeError", "joinVehicleTeamInvokeSuccess", "match", "matchInvokeResult", "invokeResult", "receiverVehicleTeamInvitation", "showError", "errInfo", "showIncomingCall", "showUserInfo", "toastMsg", "msgId", "", "vehicleTeamEnterRoom", "vehicleTeamHangUp", "vehicleTeamInviteResult", "invite", "vehicleTeamMemberChange", "teamMember", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "vehicleTeamRefuse", "mogo-module-carchatting_debug"}) + public static abstract interface IBizCallBack { + + public abstract void callTypeInit(); + + public abstract void answerCall(); + + public abstract void answerCallError(@org.jetbrains.annotations.NotNull() + java.lang.String errorMsg); + + public abstract void call(@org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo userInfo); + + public abstract void invokeCallData(@org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo userInfo); + + public abstract void callInvokeError(@org.jetbrains.annotations.NotNull() + java.lang.String msg); + + public abstract void showIncomingCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.UserInfo userInfo); + + public abstract void match(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.UserInfo userInfo); + + public abstract void matchInvokeResult(boolean invokeResult, @org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo userInfo, @org.jetbrains.annotations.NotNull() + java.lang.String errorMsg); + + public abstract void vehicleTeamInviteResult(boolean invite); + + public abstract void receiverVehicleTeamInvitation(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.UserInfo userInfo); + + public abstract void vehicleTeamEnterRoom(); + + public abstract void joinVehicleTeamInvokeSuccess(); + + public abstract void joinVehicleTeamInvokeError(@org.jetbrains.annotations.NotNull() + java.lang.String msg); + + public abstract void vehicleTeamMemberChange(@org.jetbrains.annotations.Nullable() + java.util.List teamMember); + + public abstract void callHangUp(boolean hangUp); + + public abstract void vehicleTeamHangUp(boolean hangUp); + + public abstract void callRefuse(boolean refuse); + + public abstract void vehicleTeamRefuse(boolean refuse); + + public abstract void showError(@org.jetbrains.annotations.NotNull() + java.lang.String errInfo); + + public abstract void showUserInfo(@org.jetbrains.annotations.Nullable() + java.lang.String userInfo); + + public abstract void toastMsg(int msgId); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IBizCallChat.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IBizCallChat.kapt_metadata new file mode 100644 index 0000000000..767b8e0643 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IBizCallChat.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IMCallManager.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IMCallManager.java new file mode 100644 index 0000000000..35d56e0684 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IMCallManager.java @@ -0,0 +1,111 @@ +package com.mogo.module.carchatting.biz; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/module/carchatting/biz/IMCallManager;", "", "()V", "Companion", "mogo-module-carchatting_debug"}) +public final class IMCallManager { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.biz.IMCallManager.Companion Companion = null; + + private IMCallManager() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000:\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0002\b\n\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u001e\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u0016\u0010\n\u001a\u00020\u00042\u0006\u0010\u0007\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\u000b\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\f\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u0016\u0010\r\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\u000eJ\u0016\u0010\u000f\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ6\u0010\u0010\u001a\u00020\u00042\u0006\u0010\u0007\u001a\u00020\u00062\u0012\u0010\u0011\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00040\u00122\u0012\u0010\u0013\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00040\u0012J \u0010\u0014\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\u00062\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\u0015\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\f\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\u0016\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0017\u001a\u00020\u00182\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\u0019\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u001a\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\u001b\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\u001c\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\u001d\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u001e\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u0016\u0010\u001f\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010 \u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010 \u001a\u00020\u00182\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010!\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u001e\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\t\u00a8\u0006\""}, d2 = {"Lcom/mogo/module/carchatting/biz/IMCallManager$Companion;", "", "()V", "addFriend", "", "flag", "", "sn", "response", "Lcom/zhidao/carchattingprovider/ICallResponse;", "answer", "call", "snReceiver", "canCall", "Lcom/zhidao/carchattingprovider/ICallProviderResponse;", "cancelMatch", "getUserInfo", "onSuccess", "Lkotlin/Function1;", "onError", "getUserInfoForCall", "hangUp", "invisibleUser", "visible", "", "inviteJoinVehicleTeam", "inviteSn", "isFriend", "isOnLine", "joinVehicleTeam", "snSender", "match", "mute", "refuseCall", "mogo-module-carchatting_debug"}) + public static final class Companion { + + public final void canCall(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + public final void answer(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void call(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void match(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void cancelMatch(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void inviteJoinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String inviteSn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void joinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String snSender, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void hangUp(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void refuseCall(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String snSender, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void mute(@org.jetbrains.annotations.NotNull() + java.lang.String flag, boolean mute, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void addFriend(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void isFriend(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void invisibleUser(@org.jetbrains.annotations.NotNull() + java.lang.String flag, boolean visible, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void isOnLine(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void getUserInfoForCall(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.Nullable() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallResponse response) { + } + + public final void getUserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IMCallManager.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IMCallManager.kapt_metadata new file mode 100644 index 0000000000..2a220eb3b6 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/biz/IMCallManager.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatConstant.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatConstant.java new file mode 100644 index 0000000000..417d14d65f --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatConstant.java @@ -0,0 +1,51 @@ +package com.mogo.module.carchatting.card; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/module/carchatting/card/CallChatConstant;", "", "()V", "Companion", "mogo-module-carchatting_debug"}) +public final class CallChatConstant { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PATH = "/carchatting/ui"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PROVIDER = "/callchat/ui"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MODULE_NAME = "CARD_TYPE_CARS_CHATTING"; + public static final int ACTION_ERROR = 0; + public static final int ACTION_CALL = 1; + public static final int ACTION_MATCH = 2; + public static final int ACTION_HANG_UP = 3; + public static final int ACTION_MUTE = 4; + public static final int ACTION_CAN_CALL = 5; + public static final int ACTION_ADD_FRIEND = 6; + public static final int ACTION_IS_FRIEND = 7; + public static final int ACTION_CALL_STATUS = 8; + public static final int ACTION_INVISIBLE_USER = 9; + public static final int ACTION_ENTER_PERSONAL_CENTER = 10; + public static final int ACTION_CANCEL_MATCH = 11; + public static final int ACTION_IS_ONLINE = 12; + public static final int ACTION_GET_USER_INFO = 13; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_SN = "PARAM_SN"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_MUTE = "PARAM_MUTE"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_VISIBLE = "PARAM_VISIBLE"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_END_TYPE = "PARAM_END_TYPE"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "CALL_CHATTING"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.card.CallChatConstant.Companion Companion = null; + + public CallChatConstant() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u000e\n\u0002\u0010\u000e\n\u0002\b\b\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000b\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\f\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\r\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000e\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000f\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0010\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0011\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0012\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0014\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0015\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0016\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0017\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0018\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0019\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u001a\u001a\u00020\u0013X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001b"}, d2 = {"Lcom/mogo/module/carchatting/card/CallChatConstant$Companion;", "", "()V", "ACTION_ADD_FRIEND", "", "ACTION_CALL", "ACTION_CALL_STATUS", "ACTION_CANCEL_MATCH", "ACTION_CAN_CALL", "ACTION_ENTER_PERSONAL_CENTER", "ACTION_ERROR", "ACTION_GET_USER_INFO", "ACTION_HANG_UP", "ACTION_INVISIBLE_USER", "ACTION_IS_FRIEND", "ACTION_IS_ONLINE", "ACTION_MATCH", "ACTION_MUTE", "MODULE_NAME", "", "PARAM_END_TYPE", "PARAM_MUTE", "PARAM_SN", "PARAM_VISIBLE", "PATH", "PROVIDER", "TAG", "mogo-module-carchatting_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatConstant.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatConstant.kapt_metadata new file mode 100644 index 0000000000..c2d81d776a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatConstant.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatProvider.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatProvider.java new file mode 100644 index 0000000000..41c7c97aae --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatProvider.java @@ -0,0 +1,89 @@ +package com.mogo.module.carchatting.card; + +import java.lang.System; + +@com.alibaba.android.arouter.facade.annotation.Route(path = "/callchat/ui") +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000Z\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u001e\u0010\u0003\u001a\u0004\u0018\u00010\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0016J\u0014\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016J\n\u0010\u000b\u001a\u0004\u0018\u00010\fH\u0016J\n\u0010\r\u001a\u0004\u0018\u00010\fH\u0016J\n\u0010\u000e\u001a\u0004\u0018\u00010\u000fH\u0016J\n\u0010\u0010\u001a\u0004\u0018\u00010\u0011H\u0016J\n\u0010\u0012\u001a\u0004\u0018\u00010\u0013H\u0016J\n\u0010\u0014\u001a\u0004\u0018\u00010\u0015H\u0016J\b\u0010\u0016\u001a\u00020\fH\u0016J\n\u0010\u0017\u001a\u0004\u0018\u00010\u0018H\u0016J\b\u0010\u0019\u001a\u00020\u001aH\u0016J\u0010\u0010\u001b\u001a\u00020\u001c2\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\b\u0010\u001d\u001a\u00020\u001cH\u0016\u00a8\u0006\u001e"}, d2 = {"Lcom/mogo/module/carchatting/card/CallChatProvider;", "Lcom/mogo/service/module/IMogoModuleProvider;", "()V", "createFragment", "Landroidx/fragment/app/Fragment;", "context", "Landroid/content/Context;", "data", "Landroid/os/Bundle;", "createView", "Landroid/view/View;", "getAppName", "", "getAppPackage", "getCardLifecycle", "Lcom/mogo/service/module/IMogoModuleLifecycle;", "getLocationListener", "Lcom/mogo/map/location/IMogoLocationListener;", "getMapListener", "Lcom/mogo/map/listener/IMogoMapListener;", "getMarkerClickListener", "Lcom/mogo/map/marker/IMogoMarkerClickListener;", "getModuleName", "getNaviListener", "Lcom/mogo/map/navi/IMogoNaviListener;", "getType", "", "init", "", "onDestroy", "mogo-module-carchatting_debug"}) +public final class CallChatProvider implements com.mogo.service.module.IMogoModuleProvider { + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public androidx.fragment.app.Fragment createFragment(@org.jetbrains.annotations.Nullable() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.os.Bundle data) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public android.view.View createView(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.navi.IMogoNaviListener getNaviListener() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.location.IMogoLocationListener getLocationListener() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.marker.IMogoMarkerClickListener getMarkerClickListener() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getModuleName() { + return null; + } + + @java.lang.Override() + public int getType() { + return 0; + } + + @java.lang.Override() + public void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.service.module.IMogoModuleLifecycle getCardLifecycle() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.listener.IMogoMapListener getMapListener() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.String getAppPackage() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.String getAppName() { + return null; + } + + @java.lang.Override() + public void onDestroy() { + } + + public CallChatProvider() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatProvider.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatProvider.kapt_metadata new file mode 100644 index 0000000000..fee394001c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/card/CallChatProvider.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.java new file mode 100644 index 0000000000..e610734592 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.java @@ -0,0 +1,114 @@ +package com.mogo.module.carchatting.invoke; + +import java.lang.System; + +@com.alibaba.android.arouter.facade.annotation.Route(path = "/callchat/provider") +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000F\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010$\n\u0002\b\u0007\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J(\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\u00062\u0006\u0010\n\u001a\u00020\u000bH\u0016J\u001c\u0010\f\u001a\u00020\u00042\u0012\u0010\r\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00060\u000eH\u0016J \u0010\u000f\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\n\u001a\u00020\u000bH\u0016J(\u0010\u0010\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\u0011\u001a\u00020\u00062\u0006\u0010\n\u001a\u00020\u000bH\u0016J\"\u0010\u0012\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\b\u0010\n\u001a\u0004\u0018\u00010\u000bH\u0016J\u0012\u0010\u0013\u001a\u00020\u00042\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0016J \u0010\u0014\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0015\u001a\u00020\u00162\u0006\u0010\u0017\u001a\u00020\u0018H\u0016J \u0010\u0019\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\n\u001a\u00020\u000bH\u0016J(\u0010\u001a\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\u00062\u0006\u0010\n\u001a\u00020\u000bH\u0016J(\u0010\u001b\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\u0011\u001a\u00020\u00062\u0006\u0010\n\u001a\u00020\u000bH\u0016J \u0010\u001c\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\n\u001a\u00020\u000bH\u0016J \u0010\u001d\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\n\u001a\u00020\u000bH\u0016J \u0010\u001e\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u001f\u001a\u00020 2\u0006\u0010\u0007\u001a\u00020\bH\u0016J\u0018\u0010!\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0016J\u0018\u0010\"\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0016\u00a8\u0006#"}, d2 = {"Lcom/mogo/module/carchatting/invoke/CarsChattingProvider;", "Lcom/zhidao/carchattingprovider/ICarsChattingProvider;", "()V", "addFriend", "", "flag", "", "context", "Landroid/content/Context;", "friendSn", "response", "Lcom/zhidao/carchattingprovider/ICallProviderResponse;", "call", "params", "", "canCall", "getUserInfo", "sn", "hideUserWindow", "init", "initVehicleTeamContainer", "containerId", "", "activity", "Landroidx/fragment/app/FragmentActivity;", "invisibleUser", "isFriend", "isOnLine", "registerCallWindowStatusListener", "registerUserWindowStatusListener", "showUserWindow", "mogoDriverInfo", "Lcom/zhidao/carchattingprovider/MogoDriverInfo;", "unRegisterCallWindowStatusListener", "unRegisterUserWindowStatusListener", "mogo-module-carchatting_debug"}) +public final class CarsChattingProvider implements com.zhidao.carchattingprovider.ICarsChattingProvider { + + @java.lang.Override() + public void addFriend(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String friendSn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void call(@org.jetbrains.annotations.NotNull() + java.util.Map params) { + } + + @java.lang.Override() + public void canCall(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void getUserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void isOnLine(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void init(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + } + + @java.lang.Override() + public void initVehicleTeamContainer(@org.jetbrains.annotations.NotNull() + java.lang.String flag, int containerId, @org.jetbrains.annotations.NotNull() + androidx.fragment.app.FragmentActivity activity) { + } + + @java.lang.Override() + public void isFriend(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String friendSn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void registerCallWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void unRegisterCallWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void registerUserWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void unRegisterUserWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void showUserWindow(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.MogoDriverInfo mogoDriverInfo, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void hideUserWindow(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void invisibleUser(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + public CarsChattingProvider() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.kapt_metadata new file mode 100644 index 0000000000..80a342c029 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.java new file mode 100644 index 0000000000..f64f5a76eb --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.java @@ -0,0 +1,120 @@ +package com.mogo.module.carchatting.invoke; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000H\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010$\n\u0002\b\u0007\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J(\u0010\t\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J\u001c\u0010\u0010\u001a\u00020\n2\u0012\u0010\u0011\u001a\u000e\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\u00040\u0012H\u0016J \u0010\u0013\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J(\u0010\u0014\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u0015\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J\"\u0010\u0016\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\b\u0010\u000f\u001a\u0004\u0018\u00010\u0006H\u0016J\u0012\u0010\u0017\u001a\u00020\n2\b\u0010\f\u001a\u0004\u0018\u00010\rH\u0016J \u0010\u0018\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\u0019\u001a\u00020\u001a2\u0006\u0010\u001b\u001a\u00020\u001cH\u0016J \u0010\u001d\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J(\u0010\u001e\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J(\u0010\u001f\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u0015\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J \u0010 \u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J \u0010!\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000f\u001a\u00020\u0006H\u0016J \u0010\"\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010#\u001a\u00020$2\u0006\u0010\f\u001a\u00020\rH\u0016J\u0018\u0010%\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\rH\u0016J\u0018\u0010&\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0006\u0010\f\u001a\u00020\rH\u0016R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\b\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\'"}, d2 = {"Lcom/mogo/module/carchatting/invoke/CarsChattingProviderImpl;", "Lcom/zhidao/carchattingprovider/ICarsChattingProvider;", "()V", "TAG", "", "callWindowStatusResponse", "Lcom/zhidao/carchattingprovider/ICallProviderResponse;", "hideUserWindowStatusResponse", "userWindowStatusResponse", "addFriend", "", "flag", "context", "Landroid/content/Context;", "friendSn", "response", "call", "params", "", "canCall", "getUserInfo", "sn", "hideUserWindow", "init", "initVehicleTeamContainer", "containerId", "", "activity", "Landroidx/fragment/app/FragmentActivity;", "invisibleUser", "isFriend", "isOnLine", "registerCallWindowStatusListener", "registerUserWindowStatusListener", "showUserWindow", "mogoDriverInfo", "Lcom/zhidao/carchattingprovider/MogoDriverInfo;", "unRegisterCallWindowStatusListener", "unRegisterUserWindowStatusListener", "mogo-module-carchatting_debug"}) +public final class CarsChattingProviderImpl implements com.zhidao.carchattingprovider.ICarsChattingProvider { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "CarsChattingProviderImpl"; + private static com.zhidao.carchattingprovider.ICallProviderResponse callWindowStatusResponse; + private static com.zhidao.carchattingprovider.ICallProviderResponse userWindowStatusResponse; + private static com.zhidao.carchattingprovider.ICallProviderResponse hideUserWindowStatusResponse; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.invoke.CarsChattingProviderImpl INSTANCE = null; + + @java.lang.Override() + public void init(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + } + + @java.lang.Override() + public void initVehicleTeamContainer(@org.jetbrains.annotations.NotNull() + java.lang.String flag, int containerId, @org.jetbrains.annotations.NotNull() + androidx.fragment.app.FragmentActivity activity) { + } + + @java.lang.Override() + public void addFriend(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String friendSn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void isFriend(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String friendSn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void canCall(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void getUserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void isOnLine(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void call(@org.jetbrains.annotations.NotNull() + java.util.Map params) { + } + + @java.lang.Override() + public void invisibleUser(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void registerCallWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void unRegisterCallWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void registerUserWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + @java.lang.Override() + public void unRegisterUserWindowStatusListener(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void showUserWindow(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.MogoDriverInfo mogoDriverInfo, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void hideUserWindow(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + com.zhidao.carchattingprovider.ICallProviderResponse response) { + } + + private CarsChattingProviderImpl() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.kapt_metadata new file mode 100644 index 0000000000..6997915a33 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.java new file mode 100644 index 0000000000..fa32785c73 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.java @@ -0,0 +1,11 @@ +package com.mogo.module.carchatting.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0018\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u001a1\u0010\u0000\u001a\u00020\u0001\"\u0004\b\u0000\u0010\u00022\u001d\u0010\u0003\u001a\u0019\u0012\n\u0012\b\u0012\u0004\u0012\u0002H\u00020\u0005\u0012\u0004\u0012\u00020\u00010\u0004\u00a2\u0006\u0002\b\u0006H\u0086\b\u00f8\u0001\u0000\u0082\u0002\u0007\n\u0005\b\u009920\u0001\u00a8\u0006\u0007"}, d2 = {"request", "", "T", "buildRequest", "Lkotlin/Function1;", "Lcom/mogo/module/carchatting/net/Request;", "Lkotlin/ExtensionFunctionType;", "mogo-module-carchatting_debug"}) +public final class CoroutineDSLKt { + + public static final void request(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1, kotlin.Unit> buildRequest) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.kapt_metadata new file mode 100644 index 0000000000..528e389c5c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpApi.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpApi.java new file mode 100644 index 0000000000..7281fe8205 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpApi.java @@ -0,0 +1,23 @@ +package com.mogo.module.carchatting.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010$\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J-\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u00032\u0014\b\u0001\u0010\u0005\u001a\u000e\u0012\u0004\u0012\u00020\u0007\u0012\u0004\u0012\u00020\u00070\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\bJ3\u0010\t\u001a\u000e\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u000b0\n0\u00032\u0014\b\u0001\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0007\u0012\u0004\u0012\u00020\u00070\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\b\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\r"}, d2 = {"Lcom/mogo/module/carchatting/net/HttpApi;", "", "queryEnthusiasmIndex", "Lcom/mogo/eagle/core/data/BaseResponse;", "Lcom/mogo/module/carchatting/bean/Result;", "status", "", "", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "queryTeamDate", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "date", "mogo-module-carchatting_debug"}) +public abstract interface HttpApi { + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/deva/poiInfoFabulous/car/poi/no/queryEnthusiasmIndex/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object queryEnthusiasmIndex(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map status, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chat/no/queryTeamDate/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object queryTeamDate(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map date, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation>> p1); +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpApi.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpApi.kapt_metadata new file mode 100644 index 0000000000..33c39cba7c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpApi.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpConstant.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpConstant.java new file mode 100644 index 0000000000..f678740b8e --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpConstant.java @@ -0,0 +1,34 @@ +package com.mogo.module.carchatting.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/module/carchatting/net/HttpConstant;", "", "()V", "Companion", "mogo-module-carchatting_debug"}) +public final class HttpConstant { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String HOST_DEV = "http://dzt-test.zhidaohulian.com"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String HOST_TEST = "http://dzt-test.zhidaohulian.com"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String HOST_DEMO = "http://dzt-show.zhidaohulian.com"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String HOST_PRODUCT = "https://dzt.zhidaohulian.com"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.net.HttpConstant.Companion Companion = null; + + public HttpConstant() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\b\u001a\u00020\u0004R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\t"}, d2 = {"Lcom/mogo/module/carchatting/net/HttpConstant$Companion;", "", "()V", "HOST_DEMO", "", "HOST_DEV", "HOST_PRODUCT", "HOST_TEST", "getNetHost", "mogo-module-carchatting_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNetHost() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpConstant.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpConstant.kapt_metadata new file mode 100644 index 0000000000..9885f72cac Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/HttpConstant.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Repository.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Repository.java new file mode 100644 index 0000000000..156b471aaa --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Repository.java @@ -0,0 +1,23 @@ +package com.mogo.module.carchatting.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0016\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002JE\u0010\u0003\u001a\b\u0012\u0004\u0012\u0002H\u00050\u0004\"\b\b\u0000\u0010\u0005*\u00020\u00012\"\u0010\u0006\u001a\u001e\b\u0001\u0012\u0010\u0012\u000e\u0012\n\u0012\b\u0012\u0004\u0012\u0002H\u00050\u00040\b\u0012\u0006\u0012\u0004\u0018\u00010\u00010\u0007H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\tJ\u0006\u0010\n\u001a\u00020\u000b\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\f"}, d2 = {"Lcom/mogo/module/carchatting/net/Repository;", "", "()V", "apiCall", "Lcom/mogo/eagle/core/data/BaseResponse;", "T", "call", "Lkotlin/Function1;", "Lkotlin/coroutines/Continuation;", "(Lkotlin/jvm/functions/Function1;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getNetWorkApi", "Lcom/mogo/module/carchatting/net/HttpApi;", "mogo-module-carchatting_debug"}) +public class Repository { + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object apiCall(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1>, ? extends java.lang.Object> call, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.net.HttpApi getNetWorkApi() { + return null; + } + + public Repository() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Repository.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Repository.kapt_metadata new file mode 100644 index 0000000000..e0b31424ce Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Repository.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Request.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Request.java new file mode 100644 index 0000000000..a4089afe2d --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Request.java @@ -0,0 +1,44 @@ +package com.mogo.module.carchatting.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\u0018\u0000*\u0004\b\u0000\u0010\u00012\u00020\u0002B\u0005\u00a2\u0006\u0002\u0010\u0003J\u0013\u0010\u0004\u001a\u00020\f2\b\u0010\u0004\u001a\u0004\u0018\u00010\u0005H\u0086\u0004J/\u0010\u0006\u001a\u00020\f2\u001c\u0010\u0006\u001a\u0018\b\u0001\u0012\n\u0012\b\u0012\u0004\u0012\u00028\u00000\b\u0012\u0006\u0012\u0004\u0018\u00010\u00020\u0007H\u0086\u0004\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0011J\u0019\u0010\n\u001a\u00020\f2\u000e\u0010\n\u001a\n\u0012\u0004\u0012\u00020\f\u0018\u00010\u000bH\u0086\u0004J\u001f\u0010\r\u001a\u00020\f2\u0014\u0010\r\u001a\u0010\u0012\u0004\u0012\u00020\u000e\u0012\u0004\u0012\u00020\f\u0018\u00010\u0007H\u0086\u0004J\u001f\u0010\u000f\u001a\u00020\f2\u0014\u0010\u000f\u001a\u0010\u0012\u0004\u0012\u00028\u0000\u0012\u0004\u0012\u00020\f\u0018\u00010\u0007H\u0086\u0004J\u0006\u0010\u0012\u001a\u00020\fJ\u0019\u0010\u0010\u001a\u00020\f2\u000e\u0010\u0010\u001a\n\u0012\u0004\u0012\u00020\f\u0018\u00010\u000bH\u0086\u0004R\u0010\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000R)\u0010\u0006\u001a\u0018\b\u0001\u0012\n\u0012\b\u0012\u0004\u0012\u00028\u00000\b\u0012\u0006\u0012\u0004\u0018\u00010\u00020\u0007X\u0082.\u00f8\u0001\u0000\u00a2\u0006\u0004\n\u0002\u0010\tR\u0016\u0010\n\u001a\n\u0012\u0004\u0012\u00020\f\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\r\u001a\u0010\u0012\u0004\u0012\u00020\u000e\u0012\u0004\u0012\u00020\f\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\u000f\u001a\u0010\u0012\u0004\u0012\u00028\u0000\u0012\u0004\u0012\u00020\f\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0010\u001a\n\u0012\u0004\u0012\u00020\f\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/module/carchatting/net/Request;", "T", "", "()V", "addLifecycle", "Landroidx/lifecycle/LifecycleOwner;", "loader", "Lkotlin/Function1;", "Lkotlin/coroutines/Continuation;", "Lkotlin/jvm/functions/Function1;", "onComplete", "Lkotlin/Function0;", "", "onError", "Ljava/lang/Exception;", "onSuccess", "start", "(Lkotlin/jvm/functions/Function1;)V", "request", "mogo-module-carchatting_debug"}) +public final class Request { + private kotlin.jvm.functions.Function1, ? extends java.lang.Object> loader; + private kotlin.jvm.functions.Function0 start; + private kotlin.jvm.functions.Function1 onSuccess; + private kotlin.jvm.functions.Function1 onError; + private kotlin.jvm.functions.Function0 onComplete; + private androidx.lifecycle.LifecycleOwner addLifecycle; + + public final void loader(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1, ? extends java.lang.Object> loader) { + } + + public final void start(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 start) { + } + + public final void onSuccess(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onSuccess) { + } + + public final void onError(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError) { + } + + public final void onComplete(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 onComplete) { + } + + public final void addLifecycle(@org.jetbrains.annotations.Nullable() + androidx.lifecycle.LifecycleOwner addLifecycle) { + } + + public final void request() { + } + + public Request() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Request.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Request.kapt_metadata new file mode 100644 index 0000000000..913e57a77e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/net/Request.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtil.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtil.java new file mode 100644 index 0000000000..4660808112 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtil.java @@ -0,0 +1,19 @@ +package com.mogo.module.carchatting.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010%\n\u0000\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J&\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0016\b\u0002\u0010\t\u001a\u0010\u0012\u0004\u0012\u00020\b\u0012\u0004\u0012\u00020\u0001\u0018\u00010\nR\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/module/carchatting/util/AnalyticsUtil;", "", "()V", "trackRouter", "Lcom/mogo/service/analytics/IMogoAnalytics;", "track", "", "eventType", "", "data", "", "mogo-module-carchatting_debug"}) +public final class AnalyticsUtil { + private static com.mogo.service.analytics.IMogoAnalytics trackRouter; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.util.AnalyticsUtil INSTANCE = null; + + public final void track(@org.jetbrains.annotations.NotNull() + java.lang.String eventType, @org.jetbrains.annotations.Nullable() + java.util.Map data) { + } + + private AnalyticsUtil() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtil.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtil.kapt_metadata new file mode 100644 index 0000000000..bc87f61138 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtil.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.java new file mode 100644 index 0000000000..06204cb301 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.java @@ -0,0 +1,21 @@ +package com.mogo.module.carchatting.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0012\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0006\n\u0002\u0010\b\n\u0002\b\u0002\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0002\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0003\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0004\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0005\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0006\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0007\u001a\u00020\bX\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\t\u001a\u00020\bX\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\n"}, d2 = {"INVOKE_TRACK_CHATTING", "", "INVOKE_TRACK_MATCH_FAIL_CLOSE_CLICK", "INVOKE_TRACK_MATCH_SHOW", "INVOKE_TRACK_REFUSE", "INVOKE_TRACK_REQUEST_CALL", "INVOKE_TRACK_REQUEST_CALL_SHOW", "MATCH_TYPE_MANUAL", "", "MATCH_TYPE_VOICE", "mogo-module-carchatting_debug"}) +public final class AnalyticsUtilKt { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_REQUEST_CALL_SHOW = "carchat_requestcall_card_show"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_REQUEST_CALL = "carchat_cardetail_click"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_REFUSE = "carchat_refuse_card_show"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_CHATTING = "carchat_phoneing_card_show"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_MATCH_SHOW = "carchat_carphonecall_match_show"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_MATCH_FAIL_CLOSE_CLICK = "carchat_match_fail_close_click"; + public static final int MATCH_TYPE_MANUAL = 1; + public static final int MATCH_TYPE_VOICE = 2; +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.kapt_metadata new file mode 100644 index 0000000000..3bfcbd0bb2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DateUtilKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DateUtilKt.java new file mode 100644 index 0000000000..78dddfd73a --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DateUtilKt.java @@ -0,0 +1,24 @@ +package com.mogo.module.carchatting.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000 \n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010$\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\u001a\u001a\u0010\u0000\u001a\u00020\u00012\u0012\u0010\u0002\u001a\u000e\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\u00040\u0003\u001a\u001a\u0010\u0005\u001a\u00020\u00062\u0012\u0010\u0002\u001a\u000e\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\u00040\u0003\u001a\u000e\u0010\u0007\u001a\u00020\u00042\u0006\u0010\b\u001a\u00020\t\u00a8\u0006\n"}, d2 = {"convertMapToDriverInfo", "Lcom/zhidao/carchattingprovider/MogoDriverInfo;", "map", "", "", "convertMapToUserInfo", "Lcom/mogo/module/carchatting/bean/UserInfo;", "parseTime", "time", "", "mogo-module-carchatting_debug"}) +public final class DateUtilKt { + + @org.jetbrains.annotations.NotNull() + public static final java.lang.String parseTime(long time) { + return null; + } + + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.bean.UserInfo convertMapToUserInfo(@org.jetbrains.annotations.NotNull() + java.util.Map map) { + return null; + } + + @org.jetbrains.annotations.NotNull() + public static final com.zhidao.carchattingprovider.MogoDriverInfo convertMapToDriverInfo(@org.jetbrains.annotations.NotNull() + java.util.Map map) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DateUtilKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DateUtilKt.kapt_metadata new file mode 100644 index 0000000000..b1ee025161 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DateUtilKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.java new file mode 100644 index 0000000000..ec20a0982c --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.java @@ -0,0 +1,28 @@ +package com.mogo.module.carchatting.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0018\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\t\n\u0002\b\n\n\u0002\u0010\u000b\n\u0002\b\u0002\u001a\u000e\u0010\r\u001a\u00020\u000e2\u0006\u0010\u000f\u001a\u00020\u0001\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0004\u0010\u0005\"\u0004\b\u0006\u0010\u0007\"\u001a\u0010\b\u001a\u00020\u0001X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\t\u0010\n\"\u0004\b\u000b\u0010\f\u00a8\u0006\u0010"}, d2 = {"SPACE_TIME", "", "lastViewClickTime", "", "getLastViewClickTime", "()J", "setLastViewClickTime", "(J)V", "viewId", "getViewId", "()I", "setViewId", "(I)V", "isDoubleClick", "", "view", "mogo-module-carchatting_debug"}) +public final class DoubleClickUtilKt { + public static final int SPACE_TIME = 1500; + private static long lastViewClickTime = 0L; + private static int viewId = 0; + + public static final long getLastViewClickTime() { + return 0L; + } + + public static final void setLastViewClickTime(long p0) { + } + + public static final int getViewId() { + return 0; + } + + public static final void setViewId(int p0) { + } + + public static final boolean isDoubleClick(int view) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.kapt_metadata new file mode 100644 index 0000000000..130347c741 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/LogUtil.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/LogUtil.java new file mode 100644 index 0000000000..ff0385047c --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/LogUtil.java @@ -0,0 +1,26 @@ +package com.mogo.module.carchatting.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/module/carchatting/util/LogUtil;", "", "()V", "Companion", "mogo-module-carchatting_debug"}) +public final class LogUtil { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.util.LogUtil.Companion Companion = null; + + public LogUtil() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0016\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\u0006\u00a8\u0006\b"}, d2 = {"Lcom/mogo/module/carchatting/util/LogUtil$Companion;", "", "()V", "i", "", "tag", "", "msg", "mogo-module-carchatting_debug"}) + public static final class Companion { + + public final void i(@org.jetbrains.annotations.NotNull() + java.lang.String tag, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/LogUtil.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/LogUtil.kapt_metadata new file mode 100644 index 0000000000..eb54ef9a60 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/LogUtil.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.java new file mode 100644 index 0000000000..14202d6b62 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.java @@ -0,0 +1,13 @@ +package com.mogo.module.carchatting.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0010\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\u001a\u001a\u0010\u0000\u001a\u00020\u0001\"\u0004\b\u0000\u0010\u00022\f\u0010\u0003\u001a\b\u0012\u0004\u0012\u0002H\u00020\u0004\u00a8\u0006\u0005"}, d2 = {"taskMainLaunch", "Lkotlinx/coroutines/Job;", "T", "job", "Lkotlin/Function0;", "mogo-module-carchatting_debug"}) +public final class TaskCoroutinesKt { + + @org.jetbrains.annotations.NotNull() + public static final kotlinx.coroutines.Job taskMainLaunch(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 job) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.kapt_metadata new file mode 100644 index 0000000000..72f6e6b3a7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/CallingWindowManager.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/CallingWindowManager.java new file mode 100644 index 0000000000..90ccf25272 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/CallingWindowManager.java @@ -0,0 +1,170 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0082\u0001\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\b\u0011\n\u0002\u0018\u0002\n\u0002\b\u000e\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u0000 U2\u00020\u0001:\u0001UB\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\'\u00101\u001a\u00020\u00052\u000e\b\u0004\u00102\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\f\u00103\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004H\u0083\bJ\u0006\u00104\u001a\u00020\u0005J\u0006\u00105\u001a\u00020\u0005J\u0006\u00106\u001a\u00020\u0005J^\u00107\u001a\u00020\u00052\u0006\u00108\u001a\u00020\u001c2\u0006\u0010.\u001a\u00020/2\f\u0010\u001d\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\f\u0010\u0010\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\f\u00100\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\f\u0010-\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\f\u0010,\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004H\u0007J\b\u00109\u001a\u00020\u0005H\u0002J\u0006\u0010:\u001a\u00020\u0016J\u0006\u0010;\u001a\u00020\u0016J\b\u0010<\u001a\u00020\u0005H\u0016J\b\u0010=\u001a\u00020\u0005H\u0016J\b\u0010>\u001a\u00020\u0005H\u0002J\u0012\u0010?\u001a\u00020\u00052\b\u0010@\u001a\u0004\u0018\u00010AH\u0002J\b\u0010B\u001a\u00020\u0005H\u0002J\b\u0010C\u001a\u00020\u0005H\u0002J\b\u0010D\u001a\u00020\u0005H\u0002J\u0006\u0010E\u001a\u00020\u0005J\u0006\u0010F\u001a\u00020\u0005J\u001e\u0010G\u001a\u00020\u00052\b\u0010@\u001a\u0004\u0018\u00010A2\f\u00102\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004J\b\u0010H\u001a\u00020\u0005H\u0002J\"\u0010I\u001a\u00020\u00052\f\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\f\u0010\u0014\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004J\u0006\u0010J\u001a\u00020\u0005J\u0006\u0010K\u001a\u00020\u0005J\u0006\u00100\u001a\u00020\u0005J\b\u0010L\u001a\u00020\u0005H\u0002J\b\u0010M\u001a\u00020\u0005H\u0002J\u000e\u0010N\u001a\u00020\u00052\u0006\u0010O\u001a\u00020PJ\u0016\u0010Q\u001a\u00020\u00052\u000e\u0010R\u001a\n\u0012\u0004\u0012\u00020T\u0018\u00010SR\u0016\u0010\u0003\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0006\u001a\u0004\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\b\u001a\u0004\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\t\u001a\u0004\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\n\u001a\u0004\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000b\u001a\u0004\u0018\u00010\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\r\u001a\u0004\u0018\u00010\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000e\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0010\u001a\u0004\u0018\u00010\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0011\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0012\u001a\u0004\u0018\u00010\u0013X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0014\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0015\u001a\u00020\u0016X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0017\u001a\u00020\u0016X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0018\u001a\u0004\u0018\u00010\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u001a\u001a\u0004\u0018\u00010\u0019X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u001b\u001a\u0004\u0018\u00010\u001cX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u001d\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u001e\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u001f\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010 \u001a\u0004\u0018\u00010!X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\"\u001a\u0004\u0018\u00010!X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010#\u001a\u0004\u0018\u00010!X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010$\u001a\u0004\u0018\u00010!X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010%\u001a\u0004\u0018\u00010!X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010&\u001a\u0004\u0018\u00010\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\'\u001a\u0004\u0018\u00010(X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010)\u001a\u0004\u0018\u00010\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010*\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010+\u001a\u0004\u0018\u00010\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010,\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010-\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010.\u001a\u0004\u0018\u00010/X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u00100\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006V"}, d2 = {"Lcom/mogo/module/carchatting/view/CallingWindowManager;", "Lcom/mogo/chat/voice/IVoiceIntentListener;", "()V", "agreeIncomingBack", "Lkotlin/Function0;", "", "callIncomingAnswer", "Landroid/widget/ImageView;", "callIncomingRefuse", "callingHangup", "callingHead", "callingNickName", "Landroid/widget/TextView;", "callingTimer", "callingView", "Landroidx/constraintlayout/widget/ConstraintLayout;", "cancelMatch", "canceledMatch", "handler", "Landroid/os/Handler;", "hangUpIncomingBack", "isLauncherCallingViewShown", "", "isLauncherIncomingViewShown", "launcherCallingView", "Landroid/view/View;", "launcherIncomingView", "mContext", "Landroid/content/Context;", "match", "matchView", "matchingView", "moduleCarchattingCivHead0", "Lde/hdodenhof/circleimageview/CircleImageView;", "moduleCarchattingCivHead1", "moduleCarchattingCivHead2", "moduleCarchattingCivHead3", "moduleCarchattingCivHead4", "moduleCarchattingTeamIvQuit", "moduleCarchattingTeamLlHead", "Landroid/widget/LinearLayout;", "moduleCarchattingTeamNum", "moduleCarchattingTeamRlView", "moduleCarchattingTeamTvInfo", "moveToCenter", "quitVehicleTeam", "serviceApi", "Lcom/mogo/service/IMogoServiceApis;", "showVehicleTeamView", "addCallWindowView", "hangUpCallBack", "refreshData", "hideCallingView", "hideIncomingView", "hideVehicleTeamView", "init", "context", "initView", "isCallingWindowShow", "isIncomingWindowShow", "onVoiceAnswerCall", "onVoiceRefuseCall", "playAudioCall", "refreshCallWindowData", "currentUserInfo", "Lcom/mogo/module/carchatting/bean/UserInfo;", "registerIntentInComingCall", "releaseAudioAndVoice", "removeView", "resetStatus", "resetVRModeView", "showCallingView", "showCallingWindow", "showIncomingView", "showInitView", "showMatchingView", "stopAudioCall", "unRegisterVoice", "updateTimer", "timeStr", "", "updateVehicleTeamHeadView", "teamMember", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "Companion", "mogo-module-carchatting_debug"}) +public final class CallingWindowManager implements com.mogo.chat.voice.IVoiceIntentListener { + private com.mogo.service.IMogoServiceApis serviceApi; + private volatile boolean isLauncherCallingViewShown = false; + private volatile boolean isLauncherIncomingViewShown = false; + private android.view.View launcherIncomingView; + private android.view.View launcherCallingView; + private androidx.constraintlayout.widget.ConstraintLayout matchView; + private androidx.constraintlayout.widget.ConstraintLayout matchingView; + private androidx.constraintlayout.widget.ConstraintLayout callingView; + private android.widget.ImageView callIncomingAnswer; + private android.widget.ImageView callIncomingRefuse; + private android.widget.TextView cancelMatch; + private android.widget.ImageView callingHead; + private android.widget.TextView callingNickName; + private android.widget.TextView callingTimer; + private android.widget.ImageView callingHangup; + private android.content.Context mContext; + private android.widget.LinearLayout moduleCarchattingTeamLlHead; + private android.widget.TextView moduleCarchattingTeamNum; + private de.hdodenhof.circleimageview.CircleImageView moduleCarchattingCivHead0; + private de.hdodenhof.circleimageview.CircleImageView moduleCarchattingCivHead1; + private de.hdodenhof.circleimageview.CircleImageView moduleCarchattingCivHead2; + private de.hdodenhof.circleimageview.CircleImageView moduleCarchattingCivHead3; + private de.hdodenhof.circleimageview.CircleImageView moduleCarchattingCivHead4; + private androidx.constraintlayout.widget.ConstraintLayout moduleCarchattingTeamRlView; + private android.widget.TextView moduleCarchattingTeamTvInfo; + private android.widget.ImageView moduleCarchattingTeamIvQuit; + private kotlin.jvm.functions.Function0 match; + private kotlin.jvm.functions.Function0 canceledMatch; + private kotlin.jvm.functions.Function0 showVehicleTeamView; + private kotlin.jvm.functions.Function0 quitVehicleTeam; + private kotlin.jvm.functions.Function0 moveToCenter; + private kotlin.jvm.functions.Function0 agreeIncomingBack; + private kotlin.jvm.functions.Function0 hangUpIncomingBack; + private android.os.Handler handler; + public static final int MSG_DIALING_TIME_OUT = 1001; + public static final long DEFAULT_MAX_DIALING_TIME = 30000L; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy callingWindowManager$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.view.CallingWindowManager.Companion Companion = null; + + @android.annotation.SuppressLint(value = {"InflateParams"}) + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.service.IMogoServiceApis serviceApi, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 match, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 cancelMatch, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 showVehicleTeamView, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 quitVehicleTeam, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 moveToCenter) { + } + + private final void initView() { + } + + private final void showCallingWindow() { + } + + public final boolean isIncomingWindowShow() { + return false; + } + + public final boolean isCallingWindowShow() { + return false; + } + + public final void showInitView() { + } + + public final void showMatchingView() { + } + + public final void showIncomingView(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 agreeIncomingBack, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 hangUpIncomingBack) { + } + + public final void showCallingView(@org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo currentUserInfo, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 hangUpCallBack) { + } + + @android.annotation.SuppressLint(value = {"InflateParams"}) + private final void addCallWindowView(kotlin.jvm.functions.Function0 hangUpCallBack, kotlin.jvm.functions.Function0 refreshData) { + } + + private final void refreshCallWindowData(com.mogo.module.carchatting.bean.UserInfo currentUserInfo) { + } + + public final void hideIncomingView() { + } + + public final void hideCallingView() { + } + + private final void removeView() { + } + + public final void updateTimer(@org.jetbrains.annotations.NotNull() + java.lang.String timeStr) { + } + + public final void showVehicleTeamView() { + } + + public final void hideVehicleTeamView() { + } + + public final void updateVehicleTeamHeadView(@org.jetbrains.annotations.Nullable() + java.util.List teamMember) { + } + + public final void resetStatus() { + } + + public final void resetVRModeView() { + } + + private final void releaseAudioAndVoice() { + } + + private final void playAudioCall() { + } + + private final void stopAudioCall() { + } + + private final void registerIntentInComingCall() { + } + + private final void unRegisterVoice() { + } + + @java.lang.Override() + public void onVoiceAnswerCall() { + } + + @java.lang.Override() + public void onVoiceRefuseCall() { + } + + private CallingWindowManager() { + super(); + } + + @java.lang.Override() + public void onIntentReceived(@org.jetbrains.annotations.Nullable() + java.lang.String intentStr, @org.jetbrains.annotations.Nullable() + android.content.Intent intent) { + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0086T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0007\u001a\u00020\b8FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u000b\u0010\f\u001a\u0004\b\t\u0010\n\u00a8\u0006\r"}, d2 = {"Lcom/mogo/module/carchatting/view/CallingWindowManager$Companion;", "", "()V", "DEFAULT_MAX_DIALING_TIME", "", "MSG_DIALING_TIME_OUT", "", "callingWindowManager", "Lcom/mogo/module/carchatting/view/CallingWindowManager;", "getCallingWindowManager", "()Lcom/mogo/module/carchatting/view/CallingWindowManager;", "callingWindowManager$delegate", "Lkotlin/Lazy;", "mogo-module-carchatting_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.view.CallingWindowManager getCallingWindowManager() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/CallingWindowManager.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/CallingWindowManager.kapt_metadata new file mode 100644 index 0000000000..067af288c0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/CallingWindowManager.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/DrawableTextView.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/DrawableTextView.java new file mode 100644 index 0000000000..06cdfbf4a2 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/DrawableTextView.java @@ -0,0 +1,30 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u0018\u00002\u00020\u0001B\u000f\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004B\u0019\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006\u00a2\u0006\u0002\u0010\u0007B!\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006\u0012\u0006\u0010\b\u001a\u00020\t\u00a2\u0006\u0002\u0010\nJ\u0010\u0010\u000b\u001a\u00020\f2\u0006\u0010\r\u001a\u00020\u000eH\u0014\u00a8\u0006\u000f"}, d2 = {"Lcom/mogo/module/carchatting/view/DrawableTextView;", "Landroidx/appcompat/widget/AppCompatTextView;", "context", "Landroid/content/Context;", "(Landroid/content/Context;)V", "attrs", "Landroid/util/AttributeSet;", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "defStyleAttr", "", "(Landroid/content/Context;Landroid/util/AttributeSet;I)V", "onDraw", "", "canvas", "Landroid/graphics/Canvas;", "mogo-module-carchatting_debug"}) +public final class DrawableTextView extends androidx.appcompat.widget.AppCompatTextView { + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected void onDraw(@org.jetbrains.annotations.NotNull() + android.graphics.Canvas canvas) { + } + + public DrawableTextView(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + super(null); + } + + public DrawableTextView(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.util.AttributeSet attrs) { + super(null); + } + + public DrawableTextView(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.util.AttributeSet attrs, int defStyleAttr) { + super(null); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/DrawableTextView.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/DrawableTextView.kapt_metadata new file mode 100644 index 0000000000..cfdfb902c4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/DrawableTextView.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.java new file mode 100644 index 0000000000..b7abdc88f4 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.java @@ -0,0 +1,38 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +/** + * IM通讯能力 Window 正常模式和鹰眼模式 页面切换接口 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J\u0010\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&J\u0010\u0010\u0006\u001a\u00020\u00072\u0006\u0010\u0004\u001a\u00020\u0005H&J\u0010\u0010\b\u001a\u00020\t2\u0006\u0010\u0004\u001a\u00020\u0005H&J\u0010\u0010\n\u001a\u00020\u00072\u0006\u0010\u0004\u001a\u00020\u0005H&\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/module/carchatting/view/IMogoCallChatWindowModeChange;", "", "getCallingWindowLayoutPosition", "Landroid/widget/FrameLayout$LayoutParams;", "context", "Landroid/content/Context;", "getCallingWindowLayoutView", "Landroid/view/View;", "getTeamInvitationWindowLayoutPosition", "Landroid/view/ViewGroup$MarginLayoutParams;", "getTeamInvitationWindowLayoutView", "mogo-module-carchatting_debug"}) +public abstract interface IMogoCallChatWindowModeChange { + + /** + * 获取将要更新的聊天窗口 parentView + */ + @org.jetbrains.annotations.NotNull() + public abstract android.view.View getCallingWindowLayoutView(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + /** + * 获取将要更新聊天窗口View的大小,位置参数 + */ + @org.jetbrains.annotations.NotNull() + public abstract android.widget.FrameLayout.LayoutParams getCallingWindowLayoutPosition(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + /** + * 获取将要更新车队邀请的 parentView + */ + @org.jetbrains.annotations.NotNull() + public abstract android.view.View getTeamInvitationWindowLayoutView(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + /** + * 获取将要更新车队邀请View的大小,位置参数 + */ + @org.jetbrains.annotations.NotNull() + public abstract android.view.ViewGroup.MarginLayoutParams getTeamInvitationWindowLayoutPosition(@org.jetbrains.annotations.NotNull() + android.content.Context context); +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.kapt_metadata new file mode 100644 index 0000000000..b4799c2e91 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/MapViewManager.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/MapViewManager.java new file mode 100644 index 0000000000..ada4269102 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/MapViewManager.java @@ -0,0 +1,57 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000T\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0006\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u0000 2\u00020\u0001:\u0001 B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002Jk\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\b\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\n2\b\u0010\f\u001a\u0004\u0018\u00010\r26\u0010\u000e\u001a2\u0012\u0013\u0012\u00110\r\u00a2\u0006\f\b\u0010\u0012\b\b\u0011\u0012\u0004\b\b(\u0012\u0012\u0013\u0012\u00110\u0013\u00a2\u0006\f\b\u0010\u0012\b\b\u0011\u0012\u0004\b\b(\u0014\u0012\u0004\u0012\u00020\u00060\u000fH\u0002\u00a2\u0006\u0002\u0010\u0015J\u0010\u0010\u0016\u001a\u00020\u00062\b\u0010\u0017\u001a\u0004\u0018\u00010\u0018J=\u0010\u0019\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\b\u0010\u0017\u001a\u0004\u0018\u00010\u00182\b\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\n2\b\u0010\f\u001a\u0004\u0018\u00010\rH\u0002\u00a2\u0006\u0002\u0010\u001aJ;\u0010\u001b\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\b\u0010\u0017\u001a\u0004\u0018\u00010\u00182\b\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\n2\b\u0010\f\u001a\u0004\u0018\u00010\r\u00a2\u0006\u0002\u0010\u001aJ\u001e\u0010\u001c\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u000e\u0010\u001d\u001a\n\u0012\u0004\u0012\u00020\u001f\u0018\u00010\u001eR\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006!"}, d2 = {"Lcom/mogo/module/carchatting/view/MapViewManager;", "", "()V", "hasMarked", "", "getMarkerEntity", "", "context", "Landroid/content/Context;", "lat", "", "lon", "userHead", "", "callBack", "Lkotlin/Function2;", "Lkotlin/ParameterName;", "name", "markerType", "Lcom/mogo/map/marker/MogoMarkerOptions;", "options", "(Landroid/content/Context;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/String;Lkotlin/jvm/functions/Function2;)V", "resetMarkerStatus", "serviceApi", "Lcom/mogo/service/IMogoServiceApis;", "showLocation", "(Landroid/content/Context;Lcom/mogo/service/IMogoServiceApis;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/String;)V", "showLocationOnMap", "updateTeamMarker", "teamMember", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "Companion", "mogo-module-carchatting_debug"}) +public final class MapViewManager { + private boolean hasMarked = false; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String CALLING = "CallingUser"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "MapViewManager"; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy mapViewManager$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.view.MapViewManager.Companion Companion = null; + + public final void updateTeamMarker(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + java.util.List teamMember) { + } + + public final void showLocationOnMap(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.Nullable() + com.mogo.service.IMogoServiceApis serviceApi, @org.jetbrains.annotations.Nullable() + java.lang.Double lat, @org.jetbrains.annotations.Nullable() + java.lang.Double lon, @org.jetbrains.annotations.Nullable() + java.lang.String userHead) { + } + + private final void showLocation(android.content.Context context, com.mogo.service.IMogoServiceApis serviceApi, java.lang.Double lat, java.lang.Double lon, java.lang.String userHead) { + } + + @kotlin.Suppress(names = {"DEPRECATION"}) + private final void getMarkerEntity(android.content.Context context, java.lang.Double lat, java.lang.Double lon, java.lang.String userHead, kotlin.jvm.functions.Function2 callBack) { + } + + public final void resetMarkerStatus(@org.jetbrains.annotations.Nullable() + com.mogo.service.IMogoServiceApis serviceApi) { + } + + private MapViewManager() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0006\u001a\u00020\u00078FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\n\u0010\u000b\u001a\u0004\b\b\u0010\t\u00a8\u0006\f"}, d2 = {"Lcom/mogo/module/carchatting/view/MapViewManager$Companion;", "", "()V", "CALLING", "", "TAG", "mapViewManager", "Lcom/mogo/module/carchatting/view/MapViewManager;", "getMapViewManager", "()Lcom/mogo/module/carchatting/view/MapViewManager;", "mapViewManager$delegate", "Lkotlin/Lazy;", "mogo-module-carchatting_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.view.MapViewManager getMapViewManager() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/MapViewManager.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/MapViewManager.kapt_metadata new file mode 100644 index 0000000000..4e6292a72c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/MapViewManager.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.java new file mode 100644 index 0000000000..d340b22771 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.java @@ -0,0 +1,59 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +/** + * created by wujifei on 2020/11/17 20:18 + * describe:邀请加入车队窗口管理 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000F\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0007\u0018\u0000 \u001b2\u00020\u0001:\u0001\u001bB\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0014\u001a\u00020\u0015J\u0010\u0010\u0016\u001a\u00020\u00152\u0006\u0010\u0017\u001a\u00020\u0006H\u0007J\b\u0010\u0018\u001a\u00020\u0015H\u0002J\u0006\u0010\u0019\u001a\u00020\u0015J\u0010\u0010\u001a\u001a\u00020\u00152\b\u0010\u0012\u001a\u0004\u0018\u00010\u0013R\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\t\u001a\u0004\u0018\u00010\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000b\u001a\u0004\u0018\u00010\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\f\u001a\u0004\u0018\u00010\rX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000e\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0010\u001a\u00020\u0011X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0012\u001a\u0004\u0018\u00010\u0013X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001c"}, d2 = {"Lcom/mogo/module/carchatting/view/TeamInvitationWindowManager;", "", "()V", "mApis", "Lcom/mogo/service/IMogoServiceApis;", "mContext", "Landroid/content/Context;", "mVoiceCommandListener", "Lcom/mogo/module/carchatting/voice/IVoiceCommandListener;", "moduleCarchattingIvJoin", "Landroid/widget/ImageView;", "moduleCarchattingIvRefuse", "moduleCarchattingTvContent", "Landroid/widget/TextView;", "teamInvitationView", "Landroid/view/View;", "topViewStatusListener", "Lcom/mogo/service/windowview/IMogoTopViewStatusListener;", "userInfo", "Lcom/mogo/module/carchatting/bean/UserInfo;", "hideTeamInvitationView", "", "init", "context", "initView", "onDestroy", "showTeamInvitationView", "Companion", "mogo-module-carchatting_debug"}) +public final class TeamInvitationWindowManager { + private com.mogo.service.IMogoServiceApis mApis; + private android.content.Context mContext; + private android.view.View teamInvitationView; + private android.widget.TextView moduleCarchattingTvContent; + private android.widget.ImageView moduleCarchattingIvJoin; + private android.widget.ImageView moduleCarchattingIvRefuse; + private com.mogo.module.carchatting.bean.UserInfo userInfo; + private com.mogo.service.windowview.IMogoTopViewStatusListener topViewStatusListener; + private com.mogo.module.carchatting.voice.IVoiceCommandListener mVoiceCommandListener; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy teamInvitationWindowManager$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.view.TeamInvitationWindowManager.Companion Companion = null; + + @android.annotation.SuppressLint(value = {"InflateParams"}) + public final void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + private final void initView() { + } + + public final void showTeamInvitationView(@org.jetbrains.annotations.Nullable() + com.mogo.module.carchatting.bean.UserInfo userInfo) { + } + + public final void hideTeamInvitationView() { + } + + public final void onDestroy() { + } + + private TeamInvitationWindowManager() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion;", "", "()V", "teamInvitationWindowManager", "Lcom/mogo/module/carchatting/view/TeamInvitationWindowManager;", "getTeamInvitationWindowManager", "()Lcom/mogo/module/carchatting/view/TeamInvitationWindowManager;", "teamInvitationWindowManager$delegate", "Lkotlin/Lazy;", "mogo-module-carchatting_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.view.TeamInvitationWindowManager getTeamInvitationWindowManager() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.kapt_metadata new file mode 100644 index 0000000000..d199aa6de2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TextViewExtendKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TextViewExtendKt.java new file mode 100644 index 0000000000..257e468ea2 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TextViewExtendKt.java @@ -0,0 +1,11 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0012\n\u0000\n\u0002\u0010\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\u001a\u0012\u0010\u0000\u001a\u00020\u0001*\u00020\u00022\u0006\u0010\u0003\u001a\u00020\u0004\u00a8\u0006\u0005"}, d2 = {"setLeftDrawable", "", "Landroid/widget/TextView;", "resId", "", "mogo-module-carchatting_debug"}) +public final class TextViewExtendKt { + + public static final void setLeftDrawable(@org.jetbrains.annotations.NotNull() + android.widget.TextView $this$setLeftDrawable, int resId) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TextViewExtendKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TextViewExtendKt.kapt_metadata new file mode 100644 index 0000000000..7409dedaf0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/TextViewExtendKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialog.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialog.java new file mode 100644 index 0000000000..4c70215aa4 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialog.java @@ -0,0 +1,44 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000J\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u00002\u00020\u0001B\u0017\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\b\u0010\u0015\u001a\u00020\u0016H\u0016J\b\u0010\u0017\u001a\u00020\u0016H\u0002J\b\u0010\u0018\u001a\u00020\u0016H\u0002J\b\u0010\u0019\u001a\u00020\u0016H\u0016J\u000e\u0010\u001a\u001a\u00020\u00162\u0006\u0010\u001b\u001a\u00020\u001cJ\u0010\u0010\u001d\u001a\u00020\u00162\b\u0010\u0002\u001a\u0004\u0018\u00010\u0003R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\u0003X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\n\u001a\u0004\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\f\u001a\u0004\u0018\u00010\rX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000e\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0010\u001a\u0004\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0011\u001a\u0004\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0012\u001a\u0004\u0018\u00010\u0013X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0014\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001e"}, d2 = {"Lcom/mogo/module/carchatting/view/UserDialog;", "Lcom/mogo/module/common/dialog/BaseFloatDialog;", "mogoDriverInfo", "Lcom/zhidao/carchattingprovider/MogoDriverInfo;", "context", "Landroid/content/Context;", "(Lcom/zhidao/carchattingprovider/MogoDriverInfo;Landroid/content/Context;)V", "driverInfo", "mVoiceCommandListener", "Lcom/mogo/module/carchatting/voice/IVoiceCommandListener;", "moduleCallChatBg", "Landroid/widget/ImageView;", "moduleCallChatRatingBar", "Lcom/mogo/module/common/view/CustomRatingBar;", "moduleCallChatUserCaller", "Landroid/widget/TextView;", "moduleCallChatUserClose", "moduleCallChatUserHead", "moduleCallChatUserJoinTeam", "Lcom/mogo/module/carchatting/view/DrawableTextView;", "moduleCallChatUserNickName", "dismiss", "", "initView", "refreshUserWindowData", "show", "updateUserEnthusiasmIndex", "enthusiasmIndex", "Lcom/mogo/module/carchatting/bean/EnthusiasmIndex;", "updateUserInfo", "mogo-module-carchatting_debug"}) +public final class UserDialog extends com.mogo.module.common.dialog.BaseFloatDialog { + private android.widget.ImageView moduleCallChatBg; + private android.widget.ImageView moduleCallChatUserClose; + private android.widget.ImageView moduleCallChatUserHead; + private android.widget.TextView moduleCallChatUserNickName; + private com.mogo.module.common.view.CustomRatingBar moduleCallChatRatingBar; + private android.widget.TextView moduleCallChatUserCaller; + private com.mogo.module.carchatting.view.DrawableTextView moduleCallChatUserJoinTeam; + private com.zhidao.carchattingprovider.MogoDriverInfo driverInfo; + private com.mogo.module.carchatting.voice.IVoiceCommandListener mVoiceCommandListener; + + private final void initView() { + } + + private final void refreshUserWindowData() { + } + + public final void updateUserEnthusiasmIndex(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.EnthusiasmIndex enthusiasmIndex) { + } + + public final void updateUserInfo(@org.jetbrains.annotations.Nullable() + com.zhidao.carchattingprovider.MogoDriverInfo mogoDriverInfo) { + } + + @java.lang.Override() + public void show() { + } + + @java.lang.Override() + public void dismiss() { + } + + public UserDialog(@org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.MogoDriverInfo mogoDriverInfo, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + super(null); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialog.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialog.kapt_metadata new file mode 100644 index 0000000000..9a717885b4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialog.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialogKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialogKt.java new file mode 100644 index 0000000000..6441470d24 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialogKt.java @@ -0,0 +1,13 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u000e\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u001a\u000e\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003\u00a8\u0006\u0004"}, d2 = {"toUserInfo", "Lcom/mogo/module/carchatting/bean/UserInfo;", "driverInfo", "Lcom/zhidao/carchattingprovider/MogoDriverInfo;", "mogo-module-carchatting_debug"}) +public final class UserDialogKt { + + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.bean.UserInfo toUserInfo(@org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.MogoDriverInfo driverInfo) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialogKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialogKt.kapt_metadata new file mode 100644 index 0000000000..11ae1e1a81 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserDialogKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserWindowManager.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserWindowManager.java new file mode 100644 index 0000000000..a50520650a --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserWindowManager.java @@ -0,0 +1,50 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00002\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000b\n\u0002\u0010\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u0000 \u00122\u00020\u0001:\u0001\u0012B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\t\u001a\u00020\bJ\u0006\u0010\n\u001a\u00020\u0007J\"\u0010\u000b\u001a\u00020\b2\u0006\u0010\f\u001a\u00020\r2\u0012\u0010\u0005\u001a\u000e\u0012\u0004\u0012\u00020\u0007\u0012\u0004\u0012\u00020\b0\u0006J\u000e\u0010\u000e\u001a\u00020\b2\u0006\u0010\u000f\u001a\u00020\u0010J\u000e\u0010\u0011\u001a\u00020\b2\u0006\u0010\f\u001a\u00020\rR\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\u0005\u001a\u0010\u0012\u0004\u0012\u00020\u0007\u0012\u0004\u0012\u00020\b\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/module/carchatting/view/UserWindowManager;", "", "()V", "userDialog", "Lcom/mogo/module/carchatting/view/UserDialog;", "userWindowListener", "Lkotlin/Function1;", "", "", "hideUserView", "isCallingWindowShow", "showUserView", "mogoDriverInfo", "Lcom/zhidao/carchattingprovider/MogoDriverInfo;", "updateUserEnthusiasmIndex", "enthusiasmIndex", "Lcom/mogo/module/carchatting/bean/EnthusiasmIndex;", "updateUserInfo", "Companion", "mogo-module-carchatting_debug"}) +public final class UserWindowManager { + private com.mogo.module.carchatting.view.UserDialog userDialog; + private kotlin.jvm.functions.Function1 userWindowListener; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy userWindowManager$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.view.UserWindowManager.Companion Companion = null; + + public final boolean isCallingWindowShow() { + return false; + } + + public final void showUserView(@org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.MogoDriverInfo mogoDriverInfo, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 userWindowListener) { + } + + public final void updateUserEnthusiasmIndex(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.bean.EnthusiasmIndex enthusiasmIndex) { + } + + public final void updateUserInfo(@org.jetbrains.annotations.NotNull() + com.zhidao.carchattingprovider.MogoDriverInfo mogoDriverInfo) { + } + + public final void hideUserView() { + } + + private UserWindowManager() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/module/carchatting/view/UserWindowManager$Companion;", "", "()V", "userWindowManager", "Lcom/mogo/module/carchatting/view/UserWindowManager;", "getUserWindowManager", "()Lcom/mogo/module/carchatting/view/UserWindowManager;", "userWindowManager$delegate", "Lkotlin/Lazy;", "mogo-module-carchatting_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.view.UserWindowManager getUserWindowManager() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserWindowManager.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserWindowManager.kapt_metadata new file mode 100644 index 0000000000..abc933f630 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/UserWindowManager.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VehicleTeamModel.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VehicleTeamModel.java new file mode 100644 index 0000000000..42da83fdf4 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VehicleTeamModel.java @@ -0,0 +1,21 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +/** + * created by wujifei on 2020/11/17 11:20 + * describe: + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000:\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J<\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0018\u0010\t\u001a\u0014\u0012\n\u0012\b\u0012\u0004\u0012\u00020\f0\u000b\u0012\u0004\u0012\u00020\u00060\n2\u0012\u0010\r\u001a\u000e\u0012\u0004\u0012\u00020\u000e\u0012\u0004\u0012\u00020\u00060\nJ%\u0010\u000f\u001a\u000e\u0012\n\u0012\b\u0012\u0004\u0012\u00020\f0\u000b0\u00102\u0006\u0010\u0007\u001a\u00020\bH\u0082@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0011R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/module/carchatting/view/VehicleTeamModel;", "", "()V", "repository", "Lcom/mogo/module/carchatting/net/Repository;", "getTeammates", "", "roomId", "", "onSuccess", "Lkotlin/Function1;", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "onError", "", "queryTeamDate", "Lcom/mogo/eagle/core/data/BaseResponse;", "(ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-module-carchatting_debug"}) +public final class VehicleTeamModel { + private final com.mogo.module.carchatting.net.Repository repository = null; + + public final void getTeammates(int roomId, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1, kotlin.Unit> onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + public VehicleTeamModel() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VehicleTeamModel.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VehicleTeamModel.kapt_metadata new file mode 100644 index 0000000000..9958e44015 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VehicleTeamModel.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VrModeHelper.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VrModeHelper.java new file mode 100644 index 0000000000..ae73368111 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VrModeHelper.java @@ -0,0 +1,58 @@ +package com.mogo.module.carchatting.view; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u0000 \f2\u00020\u0001:\u0001\fB\u0005\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\u0010\u0010\u0007\u001a\u00020\b2\u0006\u0010\u0005\u001a\u00020\u0006H\u0017J\u0010\u0010\t\u001a\u00020\n2\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\u0010\u0010\u000b\u001a\u00020\b2\u0006\u0010\u0005\u001a\u00020\u0006H\u0017\u00a8\u0006\r"}, d2 = {"Lcom/mogo/module/carchatting/view/VrModeHelper;", "Lcom/mogo/module/carchatting/view/IMogoCallChatWindowModeChange;", "()V", "getCallingWindowLayoutPosition", "Landroid/widget/FrameLayout$LayoutParams;", "context", "Landroid/content/Context;", "getCallingWindowLayoutView", "Landroid/view/View;", "getTeamInvitationWindowLayoutPosition", "Landroid/view/ViewGroup$MarginLayoutParams;", "getTeamInvitationWindowLayoutView", "Companion", "mogo-module-carchatting_debug"}) +public final class VrModeHelper implements com.mogo.module.carchatting.view.IMogoCallChatWindowModeChange { + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy vrModeHelper$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.view.VrModeHelper.Companion Companion = null; + + @org.jetbrains.annotations.NotNull() + @android.annotation.SuppressLint(value = {"InflateParams"}) + @java.lang.Override() + public android.view.View getCallingWindowLayoutView(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public android.widget.FrameLayout.LayoutParams getCallingWindowLayoutPosition(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @android.annotation.SuppressLint(value = {"InflateParams"}) + @java.lang.Override() + public android.view.View getTeamInvitationWindowLayoutView(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public android.view.ViewGroup.MarginLayoutParams getTeamInvitationWindowLayoutPosition(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + + public VrModeHelper() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/module/carchatting/view/VrModeHelper$Companion;", "", "()V", "vrModeHelper", "Lcom/mogo/module/carchatting/view/VrModeHelper;", "getVrModeHelper", "()Lcom/mogo/module/carchatting/view/VrModeHelper;", "vrModeHelper$delegate", "Lkotlin/Lazy;", "mogo-module-carchatting_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.module.carchatting.view.VrModeHelper getVrModeHelper() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VrModeHelper.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VrModeHelper.kapt_metadata new file mode 100644 index 0000000000..0669ad6f2e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/view/VrModeHelper.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.java new file mode 100644 index 0000000000..ab87a4f333 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.java @@ -0,0 +1,59 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0007\bf\u0018\u00002\u00020\u0001J\b\u0010\u0002\u001a\u00020\u0003H\u0016J\u0010\u0010\u0004\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\u0010\u0010\u0007\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\b\u0010\b\u001a\u00020\u0003H\u0016J\b\u0010\t\u001a\u00020\u0003H\u0016J\b\u0010\n\u001a\u00020\u0003H\u0016J\b\u0010\u000b\u001a\u00020\u0003H\u0016J\b\u0010\f\u001a\u00020\u0003H\u0016\u00a8\u0006\r"}, d2 = {"Lcom/mogo/module/carchatting/voice/IVoiceBusinessListener;", "", "onVoiceCancelCall", "", "onVoiceCancelMatch", "isTTS", "", "onVoiceContinueCall", "onVoiceInviteJoinTeam", "onVoiceJoinTeam", "onVoiceReMatch", "onVoiceRefuseJoinTeam", "onVoiceStartMatch", "mogo-module-carchatting_debug"}) +public abstract interface IVoiceBusinessListener { + + public abstract void onVoiceStartMatch(); + + public abstract void onVoiceCancelCall(); + + public abstract void onVoiceCancelMatch(boolean isTTS); + + public abstract void onVoiceContinueCall(boolean isTTS); + + public abstract void onVoiceReMatch(); + + public abstract void onVoiceInviteJoinTeam(); + + public abstract void onVoiceJoinTeam(); + + public abstract void onVoiceRefuseJoinTeam(); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + public static void onVoiceStartMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this) { + } + + public static void onVoiceCancelCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this) { + } + + public static void onVoiceCancelMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this, boolean isTTS) { + } + + public static void onVoiceContinueCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this, boolean isTTS) { + } + + public static void onVoiceReMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this) { + } + + public static void onVoiceInviteJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this) { + } + + public static void onVoiceJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this) { + } + + public static void onVoiceRefuseJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceBusinessListener $this) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.kapt_metadata new file mode 100644 index 0000000000..218fefa5c3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.java new file mode 100644 index 0000000000..b207be6f47 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.java @@ -0,0 +1,101 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0006\bf\u0018\u00002\u00020\u00012\u00020\u0002J\u0012\u0010\u0003\u001a\u00020\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016J\u0012\u0010\u0007\u001a\u00020\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016J\u0012\u0010\b\u001a\u00020\u00042\b\u0010\t\u001a\u0004\u0018\u00010\u0006H\u0016J\u0012\u0010\n\u001a\u00020\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016J\u0012\u0010\u000b\u001a\u00020\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016\u00a8\u0006\f"}, d2 = {"Lcom/mogo/module/carchatting/voice/IVoiceCommandListener;", "Lcom/mogo/commons/voice/IMogoVoiceCmdCallBack;", "Lcom/mogo/module/carchatting/voice/IVoiceBusinessListener;", "onCmdAction", "", "speakText", "", "onCmdCancel", "onCmdSelected", "cmd", "onSpeakEnd", "onSpeakSelectTimeOut", "mogo-module-carchatting_debug"}) +public abstract interface IVoiceCommandListener extends com.mogo.commons.voice.IMogoVoiceCmdCallBack, com.mogo.module.carchatting.voice.IVoiceBusinessListener { + + @java.lang.Override() + public abstract void onCmdSelected(@org.jetbrains.annotations.Nullable() + java.lang.String cmd); + + @java.lang.Override() + public abstract void onCmdAction(@org.jetbrains.annotations.Nullable() + java.lang.String speakText); + + @java.lang.Override() + public abstract void onCmdCancel(@org.jetbrains.annotations.Nullable() + java.lang.String speakText); + + @java.lang.Override() + public abstract void onSpeakSelectTimeOut(@org.jetbrains.annotations.Nullable() + java.lang.String speakText); + + @java.lang.Override() + public abstract void onSpeakEnd(@org.jetbrains.annotations.Nullable() + java.lang.String speakText); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + @java.lang.Override() + public static void onCmdSelected(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String cmd) { + } + + @java.lang.Override() + public static void onCmdAction(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public static void onCmdCancel(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public static void onSpeakSelectTimeOut(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public static void onSpeakEnd(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public static void onVoiceStartMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this) { + } + + @java.lang.Override() + public static void onVoiceCancelCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this) { + } + + @java.lang.Override() + public static void onVoiceCancelMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this, boolean isTTS) { + } + + @java.lang.Override() + public static void onVoiceContinueCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this, boolean isTTS) { + } + + @java.lang.Override() + public static void onVoiceReMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this) { + } + + @java.lang.Override() + public static void onVoiceInviteJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this) { + } + + @java.lang.Override() + public static void onVoiceJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this) { + } + + @java.lang.Override() + public static void onVoiceRefuseJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener $this) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.kapt_metadata new file mode 100644 index 0000000000..3b78dbd537 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.java new file mode 100644 index 0000000000..8b63377219 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.java @@ -0,0 +1,8 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\b\n\u0000\n\u0002\u0010\u000e\n\u0000\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0002"}, d2 = {"IVoiceCommandTAG", "", "mogo-module-carchatting_debug"}) +public final class IVoiceCommandListenerKt { + private static final java.lang.String IVoiceCommandTAG = "IVoiceCommandTAG"; +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.kapt_metadata new file mode 100644 index 0000000000..5a3a090209 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.java new file mode 100644 index 0000000000..7f7de54f7b --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.java @@ -0,0 +1,69 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\bf\u0018\u00002\u00020\u00012\u00020\u0002J\u001c\u0010\u0003\u001a\u00020\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0016J\b\u0010\t\u001a\u00020\u0004H\u0016\u00a8\u0006\n"}, d2 = {"Lcom/mogo/module/carchatting/voice/IVoiceIntentListener;", "Lcom/mogo/service/intent/IMogoIntentListener;", "Lcom/mogo/module/carchatting/voice/IVoiceBusinessListener;", "onIntentReceived", "", "cmd", "", "intent", "Landroid/content/Intent;", "onSwitchCardToChat", "mogo-module-carchatting_debug"}) +public abstract interface IVoiceIntentListener extends com.mogo.service.intent.IMogoIntentListener, com.mogo.module.carchatting.voice.IVoiceBusinessListener { + + @java.lang.Override() + public abstract void onIntentReceived(@org.jetbrains.annotations.Nullable() + java.lang.String cmd, @org.jetbrains.annotations.Nullable() + android.content.Intent intent); + + public abstract void onSwitchCardToChat(); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + @java.lang.Override() + public static void onIntentReceived(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String cmd, @org.jetbrains.annotations.Nullable() + android.content.Intent intent) { + } + + public static void onSwitchCardToChat(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this) { + } + + @java.lang.Override() + public static void onVoiceStartMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this) { + } + + @java.lang.Override() + public static void onVoiceCancelCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this) { + } + + @java.lang.Override() + public static void onVoiceCancelMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this, boolean isTTS) { + } + + @java.lang.Override() + public static void onVoiceContinueCall(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this, boolean isTTS) { + } + + @java.lang.Override() + public static void onVoiceReMatch(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this) { + } + + @java.lang.Override() + public static void onVoiceInviteJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this) { + } + + @java.lang.Override() + public static void onVoiceJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this) { + } + + @java.lang.Override() + public static void onVoiceRefuseJoinTeam(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener $this) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.kapt_metadata new file mode 100644 index 0000000000..0a5a079727 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.java new file mode 100644 index 0000000000..0b74dcf35c --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.java @@ -0,0 +1,8 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\b\n\u0000\n\u0002\u0010\u000e\n\u0000\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0002"}, d2 = {"IVoiceIntentTAG", "", "mogo-module-carchatting_debug"}) +public final class IVoiceIntentListenerKt { + private static final java.lang.String IVoiceIntentTAG = "IVoiceIntentListener"; +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.kapt_metadata new file mode 100644 index 0000000000..6761d84aff Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.java new file mode 100644 index 0000000000..a7984b1639 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.java @@ -0,0 +1,41 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0004\bf\u0018\u00002\u00020\u0001J\u0012\u0010\u0002\u001a\u00020\u00032\b\u0010\u0004\u001a\u0004\u0018\u00010\u0005H\u0016J\u0012\u0010\u0006\u001a\u00020\u00032\b\u0010\u0007\u001a\u0004\u0018\u00010\u0005H\u0016J\u0012\u0010\b\u001a\u00020\u00032\b\u0010\u0007\u001a\u0004\u0018\u00010\u0005H\u0016\u00a8\u0006\t"}, d2 = {"Lcom/mogo/module/carchatting/voice/IVoiceQCommandListener;", "Lcom/mogo/commons/voice/IMogoVoiceCmdCallBack;", "onCmdSelected", "", "cmd", "", "onSpeakEnd", "speakText", "onSpeakSelectTimeOut", "mogo-module-carchatting_debug"}) +public abstract interface IVoiceQCommandListener extends com.mogo.commons.voice.IMogoVoiceCmdCallBack { + + @java.lang.Override() + public abstract void onCmdSelected(@org.jetbrains.annotations.Nullable() + java.lang.String cmd); + + @java.lang.Override() + public abstract void onSpeakEnd(@org.jetbrains.annotations.Nullable() + java.lang.String speakText); + + @java.lang.Override() + public abstract void onSpeakSelectTimeOut(@org.jetbrains.annotations.Nullable() + java.lang.String speakText); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + @java.lang.Override() + public static void onCmdSelected(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceQCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String cmd) { + } + + @java.lang.Override() + public static void onSpeakEnd(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceQCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + + @java.lang.Override() + public static void onSpeakSelectTimeOut(@org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceQCommandListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String speakText) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.kapt_metadata new file mode 100644 index 0000000000..bd72d5dcc5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceManager.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceManager.java new file mode 100644 index 0000000000..0ca5877a4c --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceManager.java @@ -0,0 +1,25 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0016\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\u00042\u0006\u0010\b\u001a\u00020\tJ\u001e\u0010\n\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\u00042\u0006\u0010\u000b\u001a\u00020\f2\u0006\u0010\b\u001a\u00020\rR\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/module/carchatting/voice/VoiceManager;", "", "()V", "TAG", "", "handleOnCmdSelected", "", "cmd", "listener", "Lcom/mogo/module/carchatting/voice/IVoiceCommandListener;", "handleOnIntentCmd", "intent", "Landroid/content/Intent;", "Lcom/mogo/module/carchatting/voice/IVoiceIntentListener;", "mogo-module-carchatting_debug"}) +public final class VoiceManager { + private static final java.lang.String TAG = "VoiceManager"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.voice.VoiceManager INSTANCE = null; + + public final void handleOnCmdSelected(@org.jetbrains.annotations.NotNull() + java.lang.String cmd, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener listener) { + } + + public final void handleOnIntentCmd(@org.jetbrains.annotations.NotNull() + java.lang.String cmd, @org.jetbrains.annotations.NotNull() + android.content.Intent intent, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener listener) { + } + + private VoiceManager() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceManager.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceManager.kapt_metadata new file mode 100644 index 0000000000..8135b3163a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceManager.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceUtil.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceUtil.java new file mode 100644 index 0000000000..f10da8fbbd --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceUtil.java @@ -0,0 +1,112 @@ +package com.mogo.module.carchatting.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000J\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0010\n\u0002\u0010\u0011\n\u0002\b\b\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0010\n\u0002\u0018\u0002\n\u0000\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u001e\u0010#\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010\'\u001a\u00020(2\u0006\u0010)\u001a\u00020*J \u0010+\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010\'\u001a\u00020(2\u0006\u0010)\u001a\u00020*H\u0002J \u0010,\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010\'\u001a\u00020(2\u0006\u0010)\u001a\u00020*H\u0002J \u0010-\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010\'\u001a\u00020(2\u0006\u0010)\u001a\u00020*H\u0002J\u0010\u0010.\u001a\u00020$2\u0006\u0010/\u001a\u00020*H\u0002J\u0016\u00100\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010\'\u001a\u00020(J\u0016\u00101\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010\'\u001a\u00020(J \u00102\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010\'\u001a\u00020(2\u0006\u0010)\u001a\u00020*H\u0002J\u0010\u00103\u001a\u00020$2\u0006\u0010)\u001a\u00020*H\u0002J\u001e\u00104\u001a\u00020$2\u0006\u00105\u001a\u00020\u00042\u0006\u0010%\u001a\u00020&2\u0006\u0010/\u001a\u00020(J\u0016\u00106\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010/\u001a\u00020*J\u000e\u00107\u001a\u00020$2\u0006\u0010%\u001a\u00020&J\u000e\u00108\u001a\u00020$2\u0006\u0010%\u001a\u00020&J\u0016\u00109\u001a\u00020$2\u0006\u0010%\u001a\u00020&2\u0006\u0010:\u001a\u00020;R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000b\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\f\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\r\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000e\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000f\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0010\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0011\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0012\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0013\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0014\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u0016\u0010\u0017\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u0016\u0010\u0018\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u0016\u0010\u0019\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u0016\u0010\u001a\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u0016\u0010\u001b\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u0016\u0010\u001c\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u000e\u0010\u001d\u001a\u00020\u001eX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u001f\u001a\u0004\u0018\u00010 X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010!\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016R\u0016\u0010\"\u001a\b\u0012\u0004\u0012\u00020\u00040\u0015X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0016\u00a8\u0006<"}, d2 = {"Lcom/mogo/module/carchatting/voice/VoiceUtil;", "", "()V", "REQUEST_MATCH_FAIL", "", "TAG", "VOICE_INTENT_CANCEL_CALL_COMMAND", "VOICE_INTENT_CANCEL_MATCH_COMMAND", "VOICE_INTENT_CHAT_COMMAND", "VOICE_INTENT_CONTINUE_CALL_COMMAND", "VOICE_INTENT_REFUSE_CALL", "VOICE_INTENT_REMATCH_COMMAND", "VOICE_INTENT_START_COMMAND", "VOICE_REGISTER_CANCEL_CALL", "VOICE_REGISTER_CANCEL_MATCH", "VOICE_REGISTER_CONTINUE_CALL", "VOICE_REGISTER_INVITE_JOIN_TEAM", "VOICE_REGISTER_JOIN_TEAM", "VOICE_REGISTER_MATCH", "VOICE_REGISTER_REFUSE_JOIN_TEAM", "customCancelCallArray", "", "[Ljava/lang/String;", "customCancelMatchArray", "customContinueCallArray", "customInviteJoinTeamArray", "customJoinTeamArray", "customMatchArray", "customRefuseJoinTeamArray", "hasRegister", "", "intentRegister", "Lcom/mogo/service/intent/IMogoIntentManager;", "requestMatchFailNArray", "requestMatchFailYArray", "registerAll", "", "context", "Landroid/content/Context;", "voiceCommand", "Lcom/mogo/module/carchatting/voice/IVoiceCommandListener;", "intentCommand", "Lcom/mogo/module/carchatting/voice/IVoiceIntentListener;", "registerCancelCall", "registerCancelMatch", "registerContinueCall", "registerIntentVoiceCommand", "listener", "registerInviteJoinTeam", "registerJoinTeam", "registerMatch", "registerReMatch", "speak", "content", "unregisterAll", "unregisterInviteJoinTeam", "unregisterJoinTeam", "weatherReMatch", "callback", "Lcom/mogo/module/carchatting/voice/IVoiceQCommandListener;", "mogo-module-carchatting_debug"}) +public final class VoiceUtil { + private static final java.lang.String TAG = "VoiceUtil"; + private static com.mogo.service.intent.IMogoIntentManager intentRegister; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_START_COMMAND = "system.application.operation"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_CHAT_COMMAND = "com.zhidao.imdemo.chat"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_CANCEL_MATCH_COMMAND = "com.zhidao.commin.cancel"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_REMATCH_COMMAND = "com.zhidao.imdemo.chat.rematch"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_CANCEL_CALL_COMMAND = "com.zhidao.commin.cancel"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_REFUSE_CALL = "com.ileja.phone.incoming.reject"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_CONTINUE_CALL_COMMAND = "com.zhidao.imdemo.chat.continue.call"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_REGISTER_INVITE_JOIN_TEAM = "CMD_CAR_CHAT_INVITE_JOIN_TEAM"; + private static final java.lang.String[] customInviteJoinTeamArray = {"\u9080\u8bf7\u52a0\u5165\u8f66\u961f"}; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_REGISTER_JOIN_TEAM = "CMD_CAR_CHAT_JOIN_TEAM"; + private static final java.lang.String[] customJoinTeamArray = {"\u52a0\u5165", "\u52a0\u5165\u8f66\u961f"}; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_REGISTER_REFUSE_JOIN_TEAM = "CMD_CAR_CHAT_REFUSE_JOIN_TEAM"; + private static final java.lang.String[] customRefuseJoinTeamArray = {"\u62d2\u7edd", "\u62d2\u7edd\u52a0\u5165\u8f66\u961f"}; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_REGISTER_MATCH = "CMD_CAR_CHAT_MATCH"; + private static final java.lang.String[] customMatchArray = {"\u8bed\u97f3\u5339\u914d", "\u5f00\u59cb\u5339\u914d", "\u5339\u914d\u597d\u53cb", "\u804a\u4e00\u804a", "\u6211\u8981\u804a\u5929"}; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_REGISTER_CANCEL_MATCH = "CMD_CAR_CHAT_CANCEL_MATCH"; + private static final java.lang.String[] customCancelMatchArray = {"\u53d6\u6d88\u5339\u914d"}; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_REGISTER_CANCEL_CALL = "CMD_CAR_CHAT_CANCEL_CALL"; + private static final java.lang.String[] customCancelCallArray = {"\u53d6\u6d88\u901a\u8bdd", "\u53d6\u6d88\u547c\u53eb", "\u6302\u65ad"}; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_REGISTER_CONTINUE_CALL = "CMD_CAR_CHAT_CONTINUE_CALL"; + private static final java.lang.String[] customContinueCallArray = {"\u7ee7\u7eed\u547c\u53eb"}; + private static final java.lang.String REQUEST_MATCH_FAIL = "\u5339\u914d\u5931\u8d25\uff0c\u8bf4\u201c\u91cd\u65b0\u5339\u914d\u201d\u7ee7\u7eed\u5bfb\u627e\u7f18\u5206\u8f66\u53cb\u3002"; + private static final java.lang.String[] requestMatchFailYArray = {"\u91cd\u65b0\u5339\u914d"}; + private static final java.lang.String[] requestMatchFailNArray = {"\u53d6\u6d88", "\u53d6\u6d88\u5339\u914d"}; + private static boolean hasRegister = false; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.carchatting.voice.VoiceUtil INSTANCE = null; + + public final void speak(@org.jetbrains.annotations.NotNull() + java.lang.String content, @org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener listener) { + } + + public final void registerAll(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener voiceCommand, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener intentCommand) { + } + + public final void registerInviteJoinTeam(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener voiceCommand) { + } + + public final void registerJoinTeam(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceCommandListener voiceCommand) { + } + + private final void registerMatch(android.content.Context context, com.mogo.module.carchatting.voice.IVoiceCommandListener voiceCommand, com.mogo.module.carchatting.voice.IVoiceIntentListener intentCommand) { + } + + private final void registerReMatch(com.mogo.module.carchatting.voice.IVoiceIntentListener intentCommand) { + } + + private final void registerCancelMatch(android.content.Context context, com.mogo.module.carchatting.voice.IVoiceCommandListener voiceCommand, com.mogo.module.carchatting.voice.IVoiceIntentListener intentCommand) { + } + + private final void registerCancelCall(android.content.Context context, com.mogo.module.carchatting.voice.IVoiceCommandListener voiceCommand, com.mogo.module.carchatting.voice.IVoiceIntentListener intentCommand) { + } + + private final void registerContinueCall(android.content.Context context, com.mogo.module.carchatting.voice.IVoiceCommandListener voiceCommand, com.mogo.module.carchatting.voice.IVoiceIntentListener intentCommand) { + } + + public final void unregisterAll(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceIntentListener listener) { + } + + public final void unregisterInviteJoinTeam(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + public final void unregisterJoinTeam(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + private final void registerIntentVoiceCommand(com.mogo.module.carchatting.voice.IVoiceIntentListener listener) { + } + + public final void weatherReMatch(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.module.carchatting.voice.IVoiceQCommandListener callback) { + } + + private VoiceUtil() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceUtil.kapt_metadata b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceUtil.kapt_metadata new file mode 100644 index 0000000000..beed2649cf Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/com/mogo/module/carchatting/voice/VoiceUtil.kapt_metadata differ diff --git a/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java new file mode 100644 index 0000000000..73693e1c55 --- /dev/null +++ b/modules/mogo-module-carchatting/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java @@ -0,0 +1,4 @@ +package error; + +public final class NonExistentClass { +} \ No newline at end of file diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/META-INF/mogo-module-carchatting_debug.kotlin_module b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/META-INF/mogo-module-carchatting_debug.kotlin_module new file mode 100644 index 0000000000..005c414b01 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/META-INF/mogo-module-carchatting_debug.kotlin_module differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/Anim$addListener$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/Anim$addListener$1.class new file mode 100644 index 0000000000..647d66f34e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/Anim$addListener$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/Anim.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/Anim.class new file mode 100644 index 0000000000..caf2197b81 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/Anim.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSet$anims$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSet$anims$2.class new file mode 100644 index 0000000000..21a683263b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSet$anims$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.class new file mode 100644 index 0000000000..baf518960a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSet.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.class new file mode 100644 index 0000000000..f03d626caa Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/AnimSetKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim$Companion.class new file mode 100644 index 0000000000..4d2e228076 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.class new file mode 100644 index 0000000000..6513d21ee7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ObjectAnim.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim$action$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim$action$1.class new file mode 100644 index 0000000000..5d5e01bb16 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim$action$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.class new file mode 100644 index 0000000000..32a2d7a0fc Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/anim_dsl/ValueAnim.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.class new file mode 100644 index 0000000000..95e00dca5a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/EnthusiasmIndex.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/ErrorInfo.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/ErrorInfo.class new file mode 100644 index 0000000000..226b32c867 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/ErrorInfo.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/ResponseInfo.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/ResponseInfo.class new file mode 100644 index 0000000000..d49f1e34a5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/ResponseInfo.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/Result.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/Result.class new file mode 100644 index 0000000000..b06c9b4d67 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/Result.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/UserInfo.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/UserInfo.class new file mode 100644 index 0000000000..490bbc94be Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/UserInfo.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/UserInfoKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/UserInfoKt.class new file mode 100644 index 0000000000..1fed188a45 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/UserInfoKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/VoiceWake.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/VoiceWake.class new file mode 100644 index 0000000000..739b91a720 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/VoiceWake.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.class new file mode 100644 index 0000000000..a864e75a58 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/bean/VoiceWakeKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion$callChatCenter$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion$callChatCenter$2.class new file mode 100644 index 0000000000..e7162ad0b4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion$callChatCenter$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion.class new file mode 100644 index 0000000000..5050e694e0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$WhenMappings.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$WhenMappings.class new file mode 100644 index 0000000000..359ee5c4ff Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$WhenMappings.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$answerCall$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$answerCall$1.class new file mode 100644 index 0000000000..5acc439775 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$answerCall$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$answerCallError$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$answerCallError$1.class new file mode 100644 index 0000000000..c8ff403baa Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$answerCallError$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserEnthusiasmIndex$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserEnthusiasmIndex$1.class new file mode 100644 index 0000000000..dba5f4cbab Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserEnthusiasmIndex$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserEnthusiasmIndex$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserEnthusiasmIndex$2.class new file mode 100644 index 0000000000..8e7776b968 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserEnthusiasmIndex$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserInfo$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserInfo$1.class new file mode 100644 index 0000000000..ee2e0221c0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserInfo$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserInfo$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserInfo$2.class new file mode 100644 index 0000000000..f36c765d2f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$getUserInfo$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$1.class new file mode 100644 index 0000000000..f105ba7f16 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$2.class new file mode 100644 index 0000000000..3b25658fb8 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$3.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$3.class new file mode 100644 index 0000000000..2bd3f01024 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$3.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$4.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$4.class new file mode 100644 index 0000000000..2ed74e6ae7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$4.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$5.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$5.class new file mode 100644 index 0000000000..d0ebb4be14 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$init$5.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showIncomingCall$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showIncomingCall$1.class new file mode 100644 index 0000000000..efb2376e37 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showIncomingCall$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showIncomingCall$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showIncomingCall$2.class new file mode 100644 index 0000000000..5b7af2e7a9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showIncomingCall$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showLauncherCallingView$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showLauncherCallingView$1.class new file mode 100644 index 0000000000..808cad3799 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showLauncherCallingView$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showUserWindow$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showUserWindow$1.class new file mode 100644 index 0000000000..200d8b2cd8 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$showUserWindow$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$statusChangedListener$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$statusChangedListener$1.class new file mode 100644 index 0000000000..0225921ea6 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$statusChangedListener$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$syncInitStatus$1$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$syncInitStatus$1$1.class new file mode 100644 index 0000000000..3f7151790b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$syncInitStatus$1$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$syncInitStatus$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$syncInitStatus$1.class new file mode 100644 index 0000000000..eef1fa94a9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter$syncInitStatus$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter.class new file mode 100644 index 0000000000..60c1fdfd6f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatCenter.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$1.class new file mode 100644 index 0000000000..8d60592f69 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$Companion.class new file mode 100644 index 0000000000..d0f7230734 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthIndex$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthIndex$2.class new file mode 100644 index 0000000000..d85ac7ba57 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthIndex$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..6711d579f8 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..8df8faac71 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$3.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..bd8a9e30d3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$getEnthusiasmIndex$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$syncCallTimer$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$syncCallTimer$1.class new file mode 100644 index 0000000000..e9507d97d5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$syncCallTimer$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$syncCallTimer$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$syncCallTimer$2.class new file mode 100644 index 0000000000..297bf12e96 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager$syncCallTimer$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager.class new file mode 100644 index 0000000000..5d7b004e77 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/CallChatManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack.class new file mode 100644 index 0000000000..139e9ba1af Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IBizCallChat$IBizCallBack.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IBizCallChat.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IBizCallChat.class new file mode 100644 index 0000000000..fdcc3dbbfb Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IBizCallChat.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$addFriend$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$addFriend$1.class new file mode 100644 index 0000000000..ecb1673ca2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$addFriend$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$addFriend$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$addFriend$2.class new file mode 100644 index 0000000000..7b8f58b84a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$addFriend$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$answer$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$answer$1.class new file mode 100644 index 0000000000..d1dbdb514b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$answer$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$answer$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$answer$2.class new file mode 100644 index 0000000000..05e7895256 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$answer$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$call$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$call$1.class new file mode 100644 index 0000000000..720d6c71a6 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$call$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$call$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$call$2.class new file mode 100644 index 0000000000..19909fe0db Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$call$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$cancelMatch$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$cancelMatch$1.class new file mode 100644 index 0000000000..803796c19f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$cancelMatch$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfo$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfo$1.class new file mode 100644 index 0000000000..d5586c23fb Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfo$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfo$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfo$2.class new file mode 100644 index 0000000000..e9a8965545 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfo$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfoForCall$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfoForCall$1.class new file mode 100644 index 0000000000..6e3a71946b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfoForCall$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfoForCall$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfoForCall$2.class new file mode 100644 index 0000000000..5c632576ba Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$getUserInfoForCall$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$hangUp$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$hangUp$1.class new file mode 100644 index 0000000000..0570ca984f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$hangUp$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$hangUp$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$hangUp$2.class new file mode 100644 index 0000000000..65517e6d65 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$hangUp$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$invisibleUser$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$invisibleUser$1.class new file mode 100644 index 0000000000..6ff08cc05f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$invisibleUser$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$invisibleUser$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$invisibleUser$2.class new file mode 100644 index 0000000000..76f286410a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$invisibleUser$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$inviteJoinVehicleTeam$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$inviteJoinVehicleTeam$1.class new file mode 100644 index 0000000000..30d3d8d36c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$inviteJoinVehicleTeam$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$inviteJoinVehicleTeam$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$inviteJoinVehicleTeam$2.class new file mode 100644 index 0000000000..f4ef4d170e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$inviteJoinVehicleTeam$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isFriend$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isFriend$1.class new file mode 100644 index 0000000000..28f67d4e27 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isFriend$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isFriend$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isFriend$2.class new file mode 100644 index 0000000000..02357a45a6 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isFriend$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isOnLine$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isOnLine$1.class new file mode 100644 index 0000000000..3117cfa5dd Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isOnLine$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isOnLine$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isOnLine$2.class new file mode 100644 index 0000000000..2a36fc7063 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$isOnLine$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$joinVehicleTeam$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$joinVehicleTeam$1.class new file mode 100644 index 0000000000..3557f117e4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$joinVehicleTeam$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$joinVehicleTeam$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$joinVehicleTeam$2.class new file mode 100644 index 0000000000..72575e00f2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$joinVehicleTeam$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$1.class new file mode 100644 index 0000000000..90a0a16102 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$2.class new file mode 100644 index 0000000000..2a3fc76e33 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$3.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$3.class new file mode 100644 index 0000000000..eabcfc8e64 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$match$3.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$mute$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$mute$1.class new file mode 100644 index 0000000000..2ea6c88274 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$mute$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$refuseCall$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$refuseCall$1.class new file mode 100644 index 0000000000..2c23ff433b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$refuseCall$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$refuseCall$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$refuseCall$2.class new file mode 100644 index 0000000000..9edb627be1 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion$refuseCall$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion.class new file mode 100644 index 0000000000..ea961f7dff Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager.class new file mode 100644 index 0000000000..db37dfae57 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/biz/IMCallManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatConstant$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatConstant$Companion.class new file mode 100644 index 0000000000..1aed4cb614 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatConstant$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatConstant.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatConstant.class new file mode 100644 index 0000000000..20f99ee3ae Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatConstant.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatProvider.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatProvider.class new file mode 100644 index 0000000000..dd092e4082 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/card/CallChatProvider.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.class new file mode 100644 index 0000000000..450b3c8be2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProvider.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$hideUserWindow$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$hideUserWindow$1.class new file mode 100644 index 0000000000..cee3478a62 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$hideUserWindow$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$hideUserWindow$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$hideUserWindow$2.class new file mode 100644 index 0000000000..cac0b49528 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$hideUserWindow$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$registerCallWindowStatusListener$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$registerCallWindowStatusListener$1.class new file mode 100644 index 0000000000..5bb87fc600 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$registerCallWindowStatusListener$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$registerUserWindowStatusListener$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$registerUserWindowStatusListener$1.class new file mode 100644 index 0000000000..a7566ea817 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl$registerUserWindowStatusListener$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.class new file mode 100644 index 0000000000..117fd1f662 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/invoke/CarsChattingProviderImpl.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.class new file mode 100644 index 0000000000..fa122162a2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/CoroutineDSLKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpApi.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpApi.class new file mode 100644 index 0000000000..82c66c266d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpApi.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpConstant$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpConstant$Companion.class new file mode 100644 index 0000000000..7c105f8f1f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpConstant$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpConstant.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpConstant.class new file mode 100644 index 0000000000..04e95a1cc9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/HttpConstant.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Repository.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Repository.class new file mode 100644 index 0000000000..c4bc698f42 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Repository.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request$request$1$deferred$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request$request$1$deferred$1.class new file mode 100644 index 0000000000..290817117a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request$request$1$deferred$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request$request$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request$request$1.class new file mode 100644 index 0000000000..6e2181d788 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request$request$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request.class new file mode 100644 index 0000000000..1c9879605d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/net/Request.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/AnalyticsUtil.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/AnalyticsUtil.class new file mode 100644 index 0000000000..5b98560182 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/AnalyticsUtil.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.class new file mode 100644 index 0000000000..89da751e3c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/AnalyticsUtilKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/DateUtilKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/DateUtilKt.class new file mode 100644 index 0000000000..6d9da7d2de Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/DateUtilKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.class new file mode 100644 index 0000000000..a9ff60ebf7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/DoubleClickUtilKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/LogUtil$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/LogUtil$Companion.class new file mode 100644 index 0000000000..9e01cdc4ca Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/LogUtil$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/LogUtil.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/LogUtil.class new file mode 100644 index 0000000000..26a12ceed9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/LogUtil.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt$taskMainLaunch$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt$taskMainLaunch$1.class new file mode 100644 index 0000000000..0a50610f27 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt$taskMainLaunch$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.class new file mode 100644 index 0000000000..9080634178 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/util/TaskCoroutinesKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion$callingWindowManager$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion$callingWindowManager$2.class new file mode 100644 index 0000000000..4e0b8e57b0 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion$callingWindowManager$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion.class new file mode 100644 index 0000000000..46243862d8 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$addCallWindowView$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$addCallWindowView$1.class new file mode 100644 index 0000000000..c84e14793b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$addCallWindowView$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$init$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$init$1.class new file mode 100644 index 0000000000..849b3b5571 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$init$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$1.class new file mode 100644 index 0000000000..452387074b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$2.class new file mode 100644 index 0000000000..ddb77180ed Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$3.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$3.class new file mode 100644 index 0000000000..eadc8779a3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$3.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$4.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$4.class new file mode 100644 index 0000000000..4b7cf0f699 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$4.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$5.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$5.class new file mode 100644 index 0000000000..3f14410bd5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$$inlined$let$lambda$5.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$1.class new file mode 100644 index 0000000000..adb92a89e3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$initView$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$$inlined$let$lambda$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$$inlined$let$lambda$1.class new file mode 100644 index 0000000000..47323004c7 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$$inlined$let$lambda$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$$inlined$let$lambda$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$$inlined$let$lambda$2.class new file mode 100644 index 0000000000..cb66867bec Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$$inlined$let$lambda$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$1.class new file mode 100644 index 0000000000..4bbf1402fc Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$2.class new file mode 100644 index 0000000000..5989411a6a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$3.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$3.class new file mode 100644 index 0000000000..8176ff909c Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager$showIncomingView$3.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager.class new file mode 100644 index 0000000000..82f48e604a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/CallingWindowManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/DrawableTextView.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/DrawableTextView.class new file mode 100644 index 0000000000..b56f5e898e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/DrawableTextView.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.class new file mode 100644 index 0000000000..f8697af67f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/IMogoCallChatWindowModeChange.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$Companion$mapViewManager$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$Companion$mapViewManager$2.class new file mode 100644 index 0000000000..0cc3616738 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$Companion$mapViewManager$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$Companion.class new file mode 100644 index 0000000000..14c9a71d19 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$showLocation$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$showLocation$2.class new file mode 100644 index 0000000000..b1f380f824 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager$showLocation$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager.class new file mode 100644 index 0000000000..adfd9c5dc3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/MapViewManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion$teamInvitationWindowManager$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion$teamInvitationWindowManager$2.class new file mode 100644 index 0000000000..f1273c837e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion$teamInvitationWindowManager$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion.class new file mode 100644 index 0000000000..52a52be464 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$initView$$inlined$let$lambda$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$initView$$inlined$let$lambda$1.class new file mode 100644 index 0000000000..b7231e448a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$initView$$inlined$let$lambda$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$initView$$inlined$let$lambda$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$initView$$inlined$let$lambda$2.class new file mode 100644 index 0000000000..c29a0cadf2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$initView$$inlined$let$lambda$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$mVoiceCommandListener$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$mVoiceCommandListener$1.class new file mode 100644 index 0000000000..1042d8ccf5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$mVoiceCommandListener$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$topViewStatusListener$1$onViewAdded$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$topViewStatusListener$1$onViewAdded$1.class new file mode 100644 index 0000000000..532240224a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$topViewStatusListener$1$onViewAdded$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$topViewStatusListener$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$topViewStatusListener$1.class new file mode 100644 index 0000000000..9a976a67e9 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager$topViewStatusListener$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.class new file mode 100644 index 0000000000..14ea54a879 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TeamInvitationWindowManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TextViewExtendKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TextViewExtendKt.class new file mode 100644 index 0000000000..9b05e28e63 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/TextViewExtendKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$$inlined$let$lambda$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$$inlined$let$lambda$1.class new file mode 100644 index 0000000000..bca8215e72 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$$inlined$let$lambda$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$1.class new file mode 100644 index 0000000000..4d63844870 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$2.class new file mode 100644 index 0000000000..bb0b1822fe Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$3.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$3.class new file mode 100644 index 0000000000..9f7bb0bb9d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$initView$3.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$mVoiceCommandListener$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$mVoiceCommandListener$1.class new file mode 100644 index 0000000000..f75782a7b5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog$mVoiceCommandListener$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog.class new file mode 100644 index 0000000000..1341f9c0ed Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialog.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialogKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialogKt.class new file mode 100644 index 0000000000..778c6eff9a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserDialogKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion$userWindowManager$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion$userWindowManager$2.class new file mode 100644 index 0000000000..7d44627359 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion$userWindowManager$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion.class new file mode 100644 index 0000000000..9027dc8c85 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$showUserView$$inlined$let$lambda$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$showUserView$$inlined$let$lambda$1.class new file mode 100644 index 0000000000..8b5d71372b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager$showUserView$$inlined$let$lambda$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager.class new file mode 100644 index 0000000000..f2c305fae5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/UserWindowManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$1.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..8cb116c1d3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..854beab2d4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$3.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..29180cc643 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$getTeammates$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$queryTeamDate$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$queryTeamDate$2.class new file mode 100644 index 0000000000..7f3c1fbac3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel$queryTeamDate$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel.class new file mode 100644 index 0000000000..444155818b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VehicleTeamModel.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion$vrModeHelper$2.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion$vrModeHelper$2.class new file mode 100644 index 0000000000..e3e65523ed Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion$vrModeHelper$2.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion.class new file mode 100644 index 0000000000..56387331a4 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper$Companion.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper.class new file mode 100644 index 0000000000..9f6a14e9db Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/view/VrModeHelper.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener$DefaultImpls.class new file mode 100644 index 0000000000..3d08d9432e Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.class new file mode 100644 index 0000000000..61ba7b6c4d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceBusinessListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener$DefaultImpls.class new file mode 100644 index 0000000000..b57f9c89a3 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.class new file mode 100644 index 0000000000..7028b9096b Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.class new file mode 100644 index 0000000000..87644aba63 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceCommandListenerKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener$DefaultImpls.class new file mode 100644 index 0000000000..54fe687af5 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.class new file mode 100644 index 0000000000..728cdc237a Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.class new file mode 100644 index 0000000000..af2198179d Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceIntentListenerKt.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener$DefaultImpls.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener$DefaultImpls.class new file mode 100644 index 0000000000..fa57336676 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener$DefaultImpls.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.class new file mode 100644 index 0000000000..b96eea37d2 Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/IVoiceQCommandListener.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/VoiceManager.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/VoiceManager.class new file mode 100644 index 0000000000..f17f1c727f Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/VoiceManager.class differ diff --git a/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/VoiceUtil.class b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/VoiceUtil.class new file mode 100644 index 0000000000..12d6ffa6cf Binary files /dev/null and b/modules/mogo-module-carchatting/build/tmp/kotlin-classes/debug/com/mogo/module/carchatting/voice/VoiceUtil.class differ diff --git a/modules/mogo-module-carchattingprovider/build/generated/source/buildConfig/debug/com/zhidao/carchattingprovider/BuildConfig.java b/modules/mogo-module-carchattingprovider/build/generated/source/buildConfig/debug/com/zhidao/carchattingprovider/BuildConfig.java new file mode 100644 index 0000000000..768d4b5083 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/generated/source/buildConfig/debug/com/zhidao/carchattingprovider/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.zhidao.carchattingprovider; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.zhidao.carchattingprovider"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.zhidao.carchattingprovider"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "2.1.16.10"; +} diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/modules/mogo-module-carchattingprovider/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..b89a2200b7 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/modules/mogo-module-carchattingprovider/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..b7bfd9a0e2 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.1.16.10","enabled":true,"outputFile":"mogo-module-carchattingprovider-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.zhidao.carchattingprovider","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/modules/mogo-module-carchattingprovider/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/modules/mogo-module-carchattingprovider/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/compile_library_classes/debug/classes.jar b/modules/mogo-module-carchattingprovider/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000000..8ac390fc60 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/modules/mogo-module-carchattingprovider/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..3cea7d6053 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/consumer_proguard_file/debug/proguard.txt b/modules/mogo-module-carchattingprovider/build/intermediates/consumer_proguard_file/debug/proguard.txt new file mode 100644 index 0000000000..6d3930d2e4 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/consumer_proguard_file/debug/proguard.txt @@ -0,0 +1 @@ +-keep class com.zhidao.carchattingprovider.*{*;} \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..427dd39745 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/incremental/mergeDebugShaders/merger.xml b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..9859544009 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugAssets/merger.xml b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..a8ed73563d --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..797c97bebd --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1 @@ +#Tue Mar 01 11:41:01 CST 2022 diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugResources/merger.xml b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..525af3e800 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/BuildConfig.class b/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/BuildConfig.class new file mode 100644 index 0000000000..e316166e19 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/BuildConfig.class differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/ICallChatResponse.class b/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/ICallChatResponse.class new file mode 100644 index 0000000000..19724c4658 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/ICallChatResponse.class differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/MogoDriverInfo.class b/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/MogoDriverInfo.class new file mode 100644 index 0000000000..7231515084 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/javac/debug/classes/com/zhidao/carchattingprovider/MogoDriverInfo.class differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/library_java_res/debug/res.jar b/modules/mogo-module-carchattingprovider/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000000..eb3ef08d82 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/library_java_res/debug/res.jar differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/library_manifest/debug/AndroidManifest.xml b/modules/mogo-module-carchattingprovider/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..b89a2200b7 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/modules/mogo-module-carchattingprovider/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..78ac5b8bef --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,2 @@ +R_DEF: Internal format may change without notice +local diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/modules/mogo-module-carchattingprovider/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..edc68deb7d --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,13 @@ +1 +2 +6 +7 /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml +10 +11 diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/merged_java_res/debug/out.jar b/modules/mogo-module-carchattingprovider/build/intermediates/merged_java_res/debug/out.jar new file mode 100644 index 0000000000..b3ae2d8a6b Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/merged_java_res/debug/out.jar differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/merged_manifests/debug/output.json b/modules/mogo-module-carchattingprovider/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..2e62914d68 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.1.16.10","enabled":true,"outputFile":"mogo-module-carchattingprovider-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.zhidao.carchattingprovider","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/packaged-classes/debug/classes.jar b/modules/mogo-module-carchattingprovider/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000000..b74b5ce47f Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/modules/mogo-module-carchattingprovider/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..e08f1bf4c9 --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1 @@ +com.zhidao.carchattingprovider diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/runtime_library_classes/debug/classes.jar b/modules/mogo-module-carchattingprovider/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..8ac390fc60 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-carchattingprovider/build/intermediates/symbols/debug/R.txt b/modules/mogo-module-carchattingprovider/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/modules/mogo-module-carchattingprovider/build/outputs/aar/mogo-module-carchattingprovider-debug.aar b/modules/mogo-module-carchattingprovider/build/outputs/aar/mogo-module-carchattingprovider-debug.aar new file mode 100644 index 0000000000..26c4f0f234 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/outputs/aar/mogo-module-carchattingprovider-debug.aar differ diff --git a/modules/mogo-module-carchattingprovider/build/outputs/logs/manifest-merger-debug-report.txt b/modules/mogo-module-carchattingprovider/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..2b3b35ccac --- /dev/null +++ b/modules/mogo-module-carchattingprovider/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,37 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 + package + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:2:5-45 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:1-2:48 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml:1:11-69 +uses-sdk +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-carchattingprovider/src/main/AndroidManifest.xml diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/META-INF/mogo-module-carchattingprovider_debug.kotlin_module b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/META-INF/mogo-module-carchattingprovider_debug.kotlin_module new file mode 100644 index 0000000000..c42baff384 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/META-INF/mogo-module-carchattingprovider_debug.kotlin_module differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/CallChattingProviderConstant$Companion.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/CallChattingProviderConstant$Companion.class new file mode 100644 index 0000000000..f18c61942b Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/CallChattingProviderConstant$Companion.class differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/CallChattingProviderConstant.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/CallChattingProviderConstant.class new file mode 100644 index 0000000000..5945de0d53 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/CallChattingProviderConstant.class differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallProviderResponse$DefaultImpls.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallProviderResponse$DefaultImpls.class new file mode 100644 index 0000000000..3554e57be3 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallProviderResponse$DefaultImpls.class differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallProviderResponse.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallProviderResponse.class new file mode 100644 index 0000000000..2652c4ec1d Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallProviderResponse.class differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallResponse$DefaultImpls.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallResponse$DefaultImpls.class new file mode 100644 index 0000000000..00123f642a Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallResponse$DefaultImpls.class differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallResponse.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallResponse.class new file mode 100644 index 0000000000..d255ba5bc6 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICallResponse.class differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICarsChattingProvider$DefaultImpls.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICarsChattingProvider$DefaultImpls.class new file mode 100644 index 0000000000..91d45566fb Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICarsChattingProvider$DefaultImpls.class differ diff --git a/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICarsChattingProvider.class b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICarsChattingProvider.class new file mode 100644 index 0000000000..80bc3de043 Binary files /dev/null and b/modules/mogo-module-carchattingprovider/build/tmp/kotlin-classes/debug/com/zhidao/carchattingprovider/ICarsChattingProvider.class differ diff --git a/modules/mogo-module-chat/build/generated/source/buildConfig/debug/com/mogo/chat/BuildConfig.java b/modules/mogo-module-chat/build/generated/source/buildConfig/debug/com/mogo/chat/BuildConfig.java new file mode 100644 index 0000000000..ef639bf40a --- /dev/null +++ b/modules/mogo-module-chat/build/generated/source/buildConfig/debug/com/mogo/chat/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.mogo.chat; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.mogo.chat"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.mogo.chat"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "2.1.16.10"; +} diff --git a/modules/mogo-module-chat/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/modules/mogo-module-chat/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..e5aa008c71 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/modules/mogo-module-chat/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..fd44222eb3 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.1.16.10","enabled":true,"outputFile":"mogo-module-chat-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.mogo.chat","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/modules/mogo-module-chat/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/modules/mogo-module-chat/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/modules/mogo-module-chat/build/intermediates/compile_library_classes/debug/classes.jar b/modules/mogo-module-chat/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000000..d16b83e9a4 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/modules/mogo-module-chat/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..11beb0daba Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/consumer_proguard_file/debug/proguard.txt b/modules/mogo-module-chat/build/intermediates/consumer_proguard_file/debug/proguard.txt new file mode 100644 index 0000000000..5fd8969570 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/consumer_proguard_file/debug/proguard.txt @@ -0,0 +1,23 @@ +-keep class com.mogo.chat.aspect.*{*;} +-keep class com.mogo.chat.callcenter.*{*;} +-keep class com.mogo.chat.common.gme.*{*;} +-keep class com.mogo.chat.constant.*{*;} +-keep class com.mogo.chat.exception.*{*;} +-keep class com.mogo.chat.model.*{*;} +-keep class com.mogo.chat.net.*{*;} +-keep class com.mogo.chat.service.InvokeDataProxy{*;} +-keep class com.mogo.chat.util.audio.IAudioFocus{*;} +-keep class com.mogo.chat.util.sp.SharedPreferenceUtil{*;} +-keep class com.mogo.chat.util.AnalyticsUtilKt{*;} +-keep class com.mogo.chat.util.LogUtil{*;} +-keep class com.mogo.chat.voice.*{*;} + +#公司SDK +-keep class com.zhidao.auto.micstrategy.*{*;} +-keep class com.zhidao.auto.nav.*{*;} + +#三方SDK +-keep class de.hdodenhof.circleimageview.CircleImageView{*;} +-keep class org.aspectj.*{*;} +-keep class okhttp3.logging.*{*;} + diff --git a/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WsUJ8uXrzKBcsUI_jsXuGkoG2Mk= b/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WsUJ8uXrzKBcsUI_jsXuGkoG2Mk= new file mode 100644 index 0000000000..830ad4449b Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WsUJ8uXrzKBcsUI_jsXuGkoG2Mk= differ diff --git a/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hFKFjkFwNysGUnaAfwpiX0NxV94= b/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hFKFjkFwNysGUnaAfwpiX0NxV94= new file mode 100644 index 0000000000..4658bc6a71 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hFKFjkFwNysGUnaAfwpiX0NxV94= differ diff --git a/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lmAmn8yg7ZPMpxQrikwcjbKYffk= b/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lmAmn8yg7ZPMpxQrikwcjbKYffk= new file mode 100644 index 0000000000..755492dbb9 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lmAmn8yg7ZPMpxQrikwcjbKYffk= differ diff --git a/modules/mogo-module-chat/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/modules/mogo-module-chat/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..36238adf79 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/incremental/mergeDebugShaders/merger.xml b/modules/mogo-module-chat/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..9859544009 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/incremental/packageDebugAssets/merger.xml b/modules/mogo-module-chat/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..a8ed73563d --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/modules/mogo-module-chat/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..7684eaa006 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,5 @@ +#Tue Mar 01 11:41:04 CST 2022 +/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/res/raw/match1.mp3=/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match1.mp3 +/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/res/raw/match3.mp3=/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match3.mp3 +/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/res/raw/call.mp3=/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/call.mp3 +/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/res/raw/match2.mp3=/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match2.mp3 diff --git a/modules/mogo-module-chat/build/intermediates/incremental/packageDebugResources/merger.xml b/modules/mogo-module-chat/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..bc0d7c801c --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libgmecodec.so new file mode 100644 index 0000000000..2a7c3287ff Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libgmesdk.so new file mode 100644 index 0000000000..621fe177c5 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libsilk.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libsilk.so new file mode 100644 index 0000000000..a035119f50 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libtraeimp.so new file mode 100644 index 0000000000..d8d10078ca Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libgmecodec.so new file mode 100644 index 0000000000..5cb7622250 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libgmesdk.so new file mode 100644 index 0000000000..c1594e4eca Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libsilk.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libsilk.so new file mode 100644 index 0000000000..95cc57e160 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libtraeimp.so new file mode 100644 index 0000000000..a371a58a10 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/BuildConfig.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/BuildConfig.class new file mode 100644 index 0000000000..c986ff9396 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/BuildConfig.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/aspect/DebugLog.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/aspect/DebugLog.class new file mode 100644 index 0000000000..819f05a1ba Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/aspect/DebugLog.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$Params2.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$Params2.class new file mode 100644 index 0000000000..ebc0b6caf5 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$Params2.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$ParamsAudioDeviceInfo.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$ParamsAudioDeviceInfo.class new file mode 100644 index 0000000000..076947a7b9 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$ParamsAudioDeviceInfo.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$ParamsUerInfo.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$ParamsUerInfo.class new file mode 100644 index 0000000000..8217b3dfbb Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper$ParamsUerInfo.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper.class new file mode 100644 index 0000000000..e159b2a951 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/common/gme/TMGCallbackHelper.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$1.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$1.class new file mode 100644 index 0000000000..c8ada120bd Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$1.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$Holder.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$Holder.class new file mode 100644 index 0000000000..10be83d459 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$Holder.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$MyAudioFocusChangeListener.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$MyAudioFocusChangeListener.class new file mode 100644 index 0000000000..c1112cc7e0 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil$MyAudioFocusChangeListener.class differ diff --git a/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil.class b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil.class new file mode 100644 index 0000000000..9fd4c8782b Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/javac/debug/classes/com/mogo/chat/util/audio/AudioFocusUtil.class differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libgmecodec.so new file mode 100644 index 0000000000..2a7c3287ff Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libgmesdk.so new file mode 100644 index 0000000000..621fe177c5 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libsilk.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libsilk.so new file mode 100644 index 0000000000..a035119f50 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libtraeimp.so new file mode 100644 index 0000000000..d8d10078ca Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libgmecodec.so new file mode 100644 index 0000000000..5cb7622250 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libgmesdk.so new file mode 100644 index 0000000000..c1594e4eca Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libsilk.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libsilk.so new file mode 100644 index 0000000000..95cc57e160 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libtraeimp.so new file mode 100644 index 0000000000..a371a58a10 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/library_java_res/debug/res.jar b/modules/mogo-module-chat/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000000..c3afa268d0 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/library_java_res/debug/res.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/library_manifest/debug/AndroidManifest.xml b/modules/mogo-module-chat/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..e5aa008c71 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/modules/mogo-module-chat/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..5afb03a031 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,6 @@ +R_DEF: Internal format may change without notice +local +raw call +raw match1 +raw match2 +raw match3 diff --git a/modules/mogo-module-chat/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/modules/mogo-module-chat/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..f0cccf4adb --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,45 @@ +1 +2 +6 +7 /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml +10 +11 +11-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:4:5-79 +11-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:4:22-76 +12 +12-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:5:5-76 +12-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:5:22-73 +13 +13-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:6:5-67 +13-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:6:22-64 +14 +14-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:7:5-80 +14-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:7:22-77 +15 +15-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:8:5-68 +15-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:8:22-65 +16 +16-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:9:5-81 +16-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:9:22-78 +17 +17-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:11:5-71 +17-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:11:22-68 +18 +19 +19-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:13:5-17:19 +20 /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:14:9-16:38 +21 android:name="com.mogo.chat.service.IMService" +21-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:15:13-46 +22 android:enabled="true" /> +22-->/Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:16:13-35 +23 +24 +25 diff --git a/modules/mogo-module-chat/build/intermediates/merged_java_res/debug/out.jar b/modules/mogo-module-chat/build/intermediates/merged_java_res/debug/out.jar new file mode 100644 index 0000000000..2e6a123cca Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_java_res/debug/out.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libgmecodec.so new file mode 100644 index 0000000000..791ccb9925 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libgmesdk.so new file mode 100644 index 0000000000..5a712e9e71 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libsilk.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libsilk.so new file mode 100644 index 0000000000..52ad9cca11 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libtraeimp.so new file mode 100644 index 0000000000..fbb98e9765 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libgmecodec.so new file mode 100644 index 0000000000..ef0012b4fd Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libgmesdk.so new file mode 100644 index 0000000000..a5c81e6957 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libsilk.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libsilk.so new file mode 100644 index 0000000000..44af9f8ea9 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libtraeimp.so new file mode 100644 index 0000000000..d4c222fa1b Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/gmesdk.jar b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/gmesdk.jar new file mode 100644 index 0000000000..830ad4449b Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/gmesdk.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/micropolicy.jar b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/micropolicy.jar new file mode 100644 index 0000000000..755492dbb9 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/micropolicy.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/mobilepb.jar b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/mobilepb.jar new file mode 100644 index 0000000000..4658bc6a71 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_jni_libs/debug/out/mobilepb.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_manifests/debug/output.json b/modules/mogo-module-chat/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..d2de1159d7 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.1.16.10","enabled":true,"outputFile":"mogo-module-chat-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.mogo.chat","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libgmecodec.so new file mode 100644 index 0000000000..791ccb9925 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libgmesdk.so new file mode 100644 index 0000000000..5a712e9e71 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libsilk.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libsilk.so new file mode 100644 index 0000000000..52ad9cca11 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libtraeimp.so new file mode 100644 index 0000000000..fbb98e9765 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libgmecodec.so new file mode 100644 index 0000000000..ef0012b4fd Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libgmesdk.so new file mode 100644 index 0000000000..a5c81e6957 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libsilk.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libsilk.so new file mode 100644 index 0000000000..44af9f8ea9 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libtraeimp.so new file mode 100644 index 0000000000..d4c222fa1b Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/classes.jar b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000000..26b2d685bc Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/gmesdk.jar b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/gmesdk.jar new file mode 100644 index 0000000000..dca6c10de8 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/gmesdk.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/micropolicy.jar b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/micropolicy.jar new file mode 100644 index 0000000000..805f375e88 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/micropolicy.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/mobilepb.jar b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/mobilepb.jar new file mode 100644 index 0000000000..c24ef3b872 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged-classes/debug/libs/mobilepb.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/call.mp3 b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/call.mp3 new file mode 100644 index 0000000000..b98f3bdc4b Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/call.mp3 differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match1.mp3 b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match1.mp3 new file mode 100644 index 0000000000..b5c4201b3c Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match1.mp3 differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match2.mp3 b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match2.mp3 new file mode 100644 index 0000000000..4f1d12ac7f Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match2.mp3 differ diff --git a/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match3.mp3 b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match3.mp3 new file mode 100644 index 0000000000..7584d60f10 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/packaged_res/debug/raw/match3.mp3 differ diff --git a/modules/mogo-module-chat/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/modules/mogo-module-chat/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..f8b95d1762 --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,5208 @@ +com.mogo.chat +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +anim design_bottom_sheet_slide_in +anim design_bottom_sheet_slide_out +anim design_snackbar_in +anim design_snackbar_out +anim fragment_fast_out_extra_slow_in +anim mtrl_bottom_sheet_slide_in +anim mtrl_bottom_sheet_slide_out +anim mtrl_card_lowers_interpolator +animator design_appbar_state_list_animator +animator design_fab_hide_motion_spec +animator design_fab_show_motion_spec +animator fragment_close_enter +animator fragment_close_exit +animator fragment_fade_enter +animator fragment_fade_exit +animator fragment_open_enter +animator fragment_open_exit +animator linear_indeterminate_line1_head_interpolator +animator linear_indeterminate_line1_tail_interpolator +animator linear_indeterminate_line2_head_interpolator +animator linear_indeterminate_line2_tail_interpolator +animator mtrl_btn_state_list_anim +animator mtrl_btn_unelevated_state_list_anim +animator mtrl_card_state_list_anim +animator mtrl_chip_state_list_anim +animator mtrl_extended_fab_change_size_collapse_motion_spec +animator mtrl_extended_fab_change_size_expand_motion_spec +animator mtrl_extended_fab_hide_motion_spec +animator mtrl_extended_fab_show_motion_spec +animator mtrl_extended_fab_state_list_animator +animator mtrl_fab_hide_motion_spec +animator mtrl_fab_show_motion_spec +animator mtrl_fab_transformation_sheet_collapse_spec +animator mtrl_fab_transformation_sheet_expand_spec +attr ConstraintRotate +attr OtherHeartImg +attr SharedValue +attr SharedValueId +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseContentDescription +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeTheme +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionTextColorAlpha +attr actionViewClass +attr activityChooserViewStyle +attr actualImageResource +attr actualImageScaleType +attr actualImageUri +attr ad_marker_color +attr ad_marker_width +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr altSrc +attr animateCircleAngleTo +attr animateRelativeTo +attr animate_relativeTo +attr animationMode +attr appBarLayoutStyle +attr applyMotionScene +attr arcMode +attr arrowHeadLength +attr arrowShaftLength +attr attributeName +attr autoCompleteMode +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr autoTransition +attr background +attr backgroundColor +attr backgroundImage +attr backgroundInsetBottom +attr backgroundInsetEnd +attr backgroundInsetStart +attr backgroundInsetTop +attr backgroundOverlayColorAlpha +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr badgeGravity +attr badgeStyle +attr badgeTextColor +attr barLength +attr bar_height +attr barrierAllowsGoneWidgets +attr barrierDirection +attr barrierMargin +attr behavior_autoHide +attr behavior_autoShrink +attr behavior_draggable +attr behavior_expandedOffset +attr behavior_fitToContents +attr behavior_halfExpandedRatio +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_saveFlags +attr behavior_skipCollapsed +attr blendSrc +attr borderRound +attr borderRoundPercent +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetStyle +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeErrorColor +attr boxStrokeWidth +attr boxStrokeWidthFocused +attr brightness +attr buffered_color +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr cardBackgroundColor +attr cardCornerRadius +attr cardElevation +attr cardForegroundColor +attr cardMaxElevation +attr cardPreventCornerOverlap +attr cardUseCompatPadding +attr cardViewStyle +attr carousel_backwardTransition +attr carousel_emptyViewsBehavior +attr carousel_firstView +attr carousel_forwardTransition +attr carousel_infinite +attr carousel_nextState +attr carousel_previousState +attr carousel_touchUpMode +attr carousel_touchUp_dampeningFactor +attr carousel_touchUp_velocityThreshold +attr chainUseRtl +attr checkboxStyle +attr checkedButton +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconMargin +attr checkedIconSize +attr checkedIconTint +attr checkedIconVisible +attr checkedTextViewStyle +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipMinTouchTargetSize +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr chipSurfaceColor +attr circleRadius +attr circularProgressIndicatorStyle +attr circularflow_angles +attr circularflow_defaultAngle +attr circularflow_defaultRadius +attr circularflow_radiusInDP +attr circularflow_viewCenter +attr civ_border_color +attr civ_border_overlay +attr civ_border_width +attr civ_fill_color +attr clearsTag +attr clickAction +attr clickable +attr clockFaceBackgroundColor +attr clockHandColor +attr clockIcon +attr clockNumberTextColor +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr collapsedSize +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr collapsingToolbarLayoutStyle +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorOnBackground +attr colorOnError +attr colorOnPrimary +attr colorOnPrimarySurface +attr colorOnSecondary +attr colorOnSurface +attr colorPrimary +attr colorPrimaryDark +attr colorPrimarySurface +attr colorPrimaryVariant +attr colorSecondary +attr colorSecondaryVariant +attr colorSurface +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraintSetEnd +attr constraintSetStart +attr constraint_referenced_ids +attr constraint_referenced_tags +attr constraints +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr contentPadding +attr contentPaddingBottom +attr contentPaddingEnd +attr contentPaddingLeft +attr contentPaddingRight +attr contentPaddingStart +attr contentPaddingTop +attr contentScrim +attr contrast +attr controlBackground +attr controller_layout_id +attr coordinatorLayoutStyle +attr cornerFamily +attr cornerFamilyBottomLeft +attr cornerFamilyBottomRight +attr cornerFamilyTopLeft +attr cornerFamilyTopRight +attr cornerRadius +attr cornerSize +attr cornerSizeBottomLeft +attr cornerSizeBottomRight +attr cornerSizeTopLeft +attr cornerSizeTopRight +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterOverflowTextColor +attr counterTextAppearance +attr counterTextColor +attr crossfade +attr currentState +attr curveFit +attr customBoolean +attr customColorDrawableValue +attr customColorValue +attr customDimension +attr customFloatValue +attr customIntegerValue +attr customNavigationLayout +attr customPixelDimension +attr customReference +attr customStringValue +attr dayInvalidStyle +attr daySelectedStyle +attr dayStyle +attr dayTodayStyle +attr defaultDuration +attr defaultQueryHint +attr defaultState +attr default_artwork +attr deltaPolarAngle +attr deltaPolarRadius +attr deriveConstraintsFrom +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr disappearedScale +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr download_bg_line_color +attr download_bg_line_width +attr download_line_color +attr download_line_width +attr download_text_color +attr download_text_size +attr dragDirection +attr dragScale +attr dragThreshold +attr drawPath +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr dsv_orientation +attr duration +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elenmentCount +attr elenmentEmpty +attr elenmentFill +attr elenmentHarf +attr elenmentHeight +attr elenmentPadding +attr elenmentStep +attr elenmentWidth +attr elevation +attr elevationOverlayColor +attr elevationOverlayEnabled +attr enableEdgeToEdge +attr endIconCheckable +attr endIconContentDescription +attr endIconDrawable +attr endIconMode +attr endIconTint +attr endIconTintMode +attr enforceMaterialTheme +attr enforceTextAppearance +attr ensureMinTouchTargetSize +attr errorContentDescription +attr errorEnabled +attr errorIconDrawable +attr errorIconTint +attr errorIconTintMode +attr errorTextAppearance +attr errorTextColor +attr expandActivityOverflowButtonDrawable +attr expanded +attr expandedHintEnabled +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr extendMotionSpec +attr extendedFloatingActionButtonStyle +attr extraMultilineHeightEnabled +attr fabAlignmentMode +attr fabAnimationMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fadeDuration +attr failureImage +attr failureImageScaleType +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr fastforward_increment +attr firstBaselineToTopHeight +attr floatingActionButtonStyle +attr flow_firstHorizontalBias +attr flow_firstHorizontalStyle +attr flow_firstVerticalBias +attr flow_firstVerticalStyle +attr flow_horizontalAlign +attr flow_horizontalBias +attr flow_horizontalGap +attr flow_horizontalStyle +attr flow_lastHorizontalBias +attr flow_lastHorizontalStyle +attr flow_lastVerticalBias +attr flow_lastVerticalStyle +attr flow_maxElementsWrap +attr flow_padding +attr flow_verticalAlign +attr flow_verticalBias +attr flow_verticalGap +attr flow_verticalStyle +attr flow_wrapMode +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr forceApplySystemWindowInsetTop +attr foregroundInsidePadding +attr framePosition +attr gapBetweenBars +attr gestureInsetBottomIgnored +attr goIcon +attr haloColor +attr haloRadius +attr headerLayout +attr height +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr helperTextTextColor +attr hideAnimationBehavior +attr hideMotionSpec +attr hideOnContentScroll +attr hideOnScroll +attr hide_on_touch +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr hintTextColor +attr homeAsUpIndicator +attr homeLayout +attr horizontalOffset +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr ifTagNotSet +attr ifTagSet +attr imageButtonStyle +attr imagePanX +attr imagePanY +attr imageRotate +attr imageZoom +attr indeterminateAnimationType +attr indeterminateProgressStyle +attr indicatorColor +attr indicatorDirectionCircular +attr indicatorDirectionLinear +attr indicatorInset +attr indicatorSize +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr isMaterialTheme +attr itemBackground +attr itemFillColor +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemMaxLines +attr itemPadding +attr itemRippleColor +attr itemShapeAppearance +attr itemShapeAppearanceOverlay +attr itemShapeFillColor +attr itemShapeInsetBottom +attr itemShapeInsetEnd +attr itemShapeInsetStart +attr itemShapeInsetTop +attr itemSpacing +attr itemStrokeColor +attr itemStrokeWidth +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr keyPositionType +attr keyboardIcon +attr keylines +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutDescription +attr layoutDuringTransition +attr layoutManager +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBaseline_toBottomOf +attr layout_constraintBaseline_toTopOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTag +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_goneMarginBaseline +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_marginBaseline +attr layout_optimizationLevel +attr layout_scrollFlags +attr layout_scrollInterpolator +attr layout_wrapBehaviorInParent +attr liftOnScroll +attr liftOnScrollTargetViewId +attr limitBoundsTo +attr lineHeight +attr lineSpacing +attr linearProgressIndicatorStyle +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr materialAlertDialogBodyTextStyle +attr materialAlertDialogTheme +attr materialAlertDialogTitleIconStyle +attr materialAlertDialogTitlePanelStyle +attr materialAlertDialogTitleTextStyle +attr materialButtonOutlinedStyle +attr materialButtonStyle +attr materialButtonToggleGroupStyle +attr materialCalendarDay +attr materialCalendarFullscreenTheme +attr materialCalendarHeaderCancelButton +attr materialCalendarHeaderConfirmButton +attr materialCalendarHeaderDivider +attr materialCalendarHeaderLayout +attr materialCalendarHeaderSelection +attr materialCalendarHeaderTitle +attr materialCalendarHeaderToggleButton +attr materialCalendarMonth +attr materialCalendarMonthNavigationButton +attr materialCalendarStyle +attr materialCalendarTheme +attr materialCalendarYearNavigationButton +attr materialCardViewStyle +attr materialCircleRadius +attr materialClockStyle +attr materialThemeOverlay +attr materialTimePickerStyle +attr materialTimePickerTheme +attr maxAcceleration +attr maxActionInlineWidth +attr maxButtonHeight +attr maxCharacterCount +attr maxHeight +attr maxImageSize +attr maxLines +attr maxVelocity +attr maxWidth +attr measureWithLargestChild +attr menu +attr menuGravity +attr methodName +attr minHeight +attr minHideDelay +attr minSeparation +attr minTouchTargetSize +attr minWidth +attr miv_blurRadius +attr miv_borderColor +attr miv_bottomLeftRadius +attr miv_bottomRightRadius +attr miv_failureHolder +attr miv_isBlur +attr miv_overlayImageId +attr miv_placeHolder +attr miv_radius +attr miv_shape +attr miv_shapeBorderWidth +attr miv_topLeftRadius +attr miv_topRightRadius +attr mock_diagonalsColor +attr mock_label +attr mock_labelBackgroundColor +attr mock_labelColor +attr mock_showDiagonals +attr mock_showLabel +attr motionDebug +attr motionDurationLong1 +attr motionDurationLong2 +attr motionDurationMedium1 +attr motionDurationMedium2 +attr motionDurationShort1 +attr motionDurationShort2 +attr motionEasingAccelerated +attr motionEasingDecelerated +attr motionEasingEmphasized +attr motionEasingLinear +attr motionEasingStandard +attr motionEffect_alpha +attr motionEffect_end +attr motionEffect_move +attr motionEffect_start +attr motionEffect_strict +attr motionEffect_translationX +attr motionEffect_translationY +attr motionEffect_viewTransition +attr motionInterpolator +attr motionPath +attr motionPathRotate +attr motionProgress +attr motionStagger +attr motionTarget +attr motion_postLayoutCollision +attr motion_triggerOnCollision +attr moveWhenScrollAtTop +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationIconTint +attr navigationMode +attr navigationRailStyle +attr navigationViewStyle +attr nestedScrollFlags +attr nestedScrollable +attr number +attr numericModifiers +attr onCross +attr onHide +attr onNegativeCross +attr onPositiveCross +attr onShow +attr onStateTransition +attr onTouchUp +attr overlapAnchor +attr overlay +attr overlayImage +attr paddingBottomNoButtons +attr paddingBottomSystemWindowInsets +attr paddingEnd +attr paddingLeftSystemWindowInsets +attr paddingRightSystemWindowInsets +attr paddingStart +attr paddingTopNoTitle +attr paddingTopSystemWindowInsets +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr pathMotionArc +attr path_percent +attr percentHeight +attr percentWidth +attr percentX +attr percentY +attr perpendicularPath_percent +attr pivotAnchor +attr placeholderImage +attr placeholderImageScaleType +attr placeholderText +attr placeholderTextAppearance +attr placeholderTextColor +attr placeholder_emptyVisibility +attr play_bg_line_color +attr play_bg_line_width +attr play_line_color +attr play_line_width +attr played_color +attr player_layout_id +attr polarRelativeTo +attr popupMenuBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr prefixText +attr prefixTextAppearance +attr prefixTextColor +attr preserveIconSpacing +attr pressedStateOverlayImage +attr pressedTranslationZ +attr progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +attr quantizeMotionInterpolator +attr quantizeMotionPhase +attr quantizeMotionSteps +attr queryBackground +attr queryHint +attr radioButtonStyle +attr rangeFillColor +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr reactiveGuide_animateChange +attr reactiveGuide_applyToAllConstraintSets +attr reactiveGuide_applyToConstraintSet +attr reactiveGuide_valueId +attr recyclerViewStyle +attr region_heightLessThan +attr region_heightMoreThan +attr region_widthLessThan +attr region_widthMoreThan +attr resize_mode +attr retryImage +attr retryImageScaleType +attr reverseLayout +attr rewind_increment +attr rippleColor +attr rotationCenterId +attr round +attr roundAsCircle +attr roundBottomEnd +attr roundBottomLeft +attr roundBottomRight +attr roundBottomStart +attr roundLayoutRadius +attr roundPercent +attr roundTopEnd +attr roundTopLeft +attr roundTopRight +attr roundTopStart +attr roundWithOverlayColor +attr roundedCornerRadius +attr roundingBorderColor +attr roundingBorderPadding +attr roundingBorderWidth +attr saturation +attr scaleFromTextSize +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr scrubber_color +attr scrubber_disabled_size +attr scrubber_dragged_size +attr scrubber_enabled_size +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr selectionRequired +attr selectorSize +attr setsTag +attr shapeAppearance +attr shapeAppearanceLargeComponent +attr shapeAppearanceMediumComponent +attr shapeAppearanceOverlay +attr shapeAppearanceSmallComponent +attr showAnimationBehavior +attr showAsAction +attr showDelay +attr showDividers +attr showMotionSpec +attr showPaths +attr showText +attr showTitle +attr show_timeout +attr shrinkMotionSpec +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr sizePercent +attr sliderStyle +attr snackbarButtonStyle +attr snackbarStyle +attr snackbarTextViewStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr springBoundary +attr springDamping +attr springMass +attr springStiffness +attr springStopThreshold +attr srcCompat +attr stackFromEnd +attr staggered +attr startIconCheckable +attr startIconContentDescription +attr startIconDrawable +attr startIconTint +attr startIconTintMode +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_dragged +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarForeground +attr statusBarScrim +attr stepSize +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleCentered +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suffixText +attr suffixTextAppearance +attr suffixTextColor +attr suggestionRowLayout +attr surface_type +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationDuration +attr tabIndicatorAnimationMode +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr tabUnboundedRipple +attr targetId +attr telltales_tailColor +attr telltales_tailScale +attr telltales_velocityMode +attr textAllCaps +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceLargePopupMenu +attr textAppearanceLineHeightEnabled +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearanceOverline +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textBackground +attr textBackgroundPanX +attr textBackgroundPanY +attr textBackgroundRotate +attr textBackgroundZoom +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textFillColor +attr textInputLayoutFocusedRectEnabled +attr textInputStyle +attr textLocale +attr textOutlineColor +attr textOutlineThickness +attr textPanX +attr textPanY +attr textStartPadding +attr textureBlurFactor +attr textureEffect +attr textureHeight +attr textureWidth +attr theme +attr themeLineHeight +attr thickness +attr thumbColor +attr thumbElevation +attr thumbRadius +attr thumbStrokeColor +attr thumbStrokeWidth +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickColor +attr tickColorActive +attr tickColorInactive +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tickVisible +attr tint +attr tintMode +attr title +attr titleCentered +attr titleCollapseMode +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipStyle +attr tooltipText +attr touchAnchorId +attr touchAnchorSide +attr touchRegionId +attr touch_target_height +attr track +attr trackColor +attr trackColorActive +attr trackColorInactive +attr trackCornerRadius +attr trackHeight +attr trackThickness +attr trackTint +attr trackTintMode +attr transformPivotTarget +attr transitionDisable +attr transitionEasing +attr transitionFlags +attr transitionPathRotate +attr transitionShapeAppearance +attr triggerId +attr triggerReceiver +attr triggerSlack +attr ttcIndex +attr unplayed_color +attr upDuration +attr useCompatPadding +attr useMaterialThemeColors +attr use_artwork +attr use_controller +attr values +attr verticalOffset +attr viewAspectRatio +attr viewInflaterClass +attr viewTransitionMode +attr viewTransitionOnCross +attr viewTransitionOnNegativeCross +attr viewTransitionOnPositiveCross +attr visibilityMode +attr voiceIcon +attr warmth +attr waveDecay +attr waveOffset +attr wavePeriod +attr wavePhase +attr waveShape +attr waveVariesBy +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +attr yearSelectedStyle +attr yearStyle +attr yearTodayStyle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool abc_config_showMenuShortcutsWhenKeyboardPresent +bool mtrl_btn_textappearance_all_caps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_decor_view_status_guard +color abc_decor_view_status_guard_light +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color bottom_container_bg +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color checkbox_themeable_attribute_color +color design_bottom_navigation_shadow_color +color design_box_stroke_color +color design_dark_default_color_background +color design_dark_default_color_error +color design_dark_default_color_on_background +color design_dark_default_color_on_error +color design_dark_default_color_on_primary +color design_dark_default_color_on_secondary +color design_dark_default_color_on_surface +color design_dark_default_color_primary +color design_dark_default_color_primary_dark +color design_dark_default_color_primary_variant +color design_dark_default_color_secondary +color design_dark_default_color_secondary_variant +color design_dark_default_color_surface +color design_default_color_background +color design_default_color_error +color design_default_color_on_background +color design_default_color_on_error +color design_default_color_on_primary +color design_default_color_on_secondary +color design_default_color_on_surface +color design_default_color_primary +color design_default_color_primary_dark +color design_default_color_primary_variant +color design_default_color_secondary +color design_default_color_secondary_variant +color design_default_color_surface +color design_error +color design_fab_shadow_end_color +color design_fab_shadow_mid_color +color design_fab_shadow_start_color +color design_fab_stroke_end_inner_color +color design_fab_stroke_end_outer_color +color design_fab_stroke_top_inner_color +color design_fab_stroke_top_outer_color +color design_icon_tint +color design_snackbar_background_color +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material +color error_color_material_dark +color error_color_material_light +color exo_edit_mode_background_color +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_cursor_color +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color material_on_background_disabled +color material_on_background_emphasis_high_type +color material_on_background_emphasis_medium +color material_on_primary_disabled +color material_on_primary_emphasis_high_type +color material_on_primary_emphasis_medium +color material_on_surface_disabled +color material_on_surface_emphasis_high_type +color material_on_surface_emphasis_medium +color material_on_surface_stroke +color material_slider_active_tick_marks_color +color material_slider_active_track_color +color material_slider_halo_color +color material_slider_inactive_tick_marks_color +color material_slider_inactive_track_color +color material_slider_thumb_color +color material_timepicker_button_background +color material_timepicker_button_stroke +color material_timepicker_clock_text_color +color material_timepicker_clockface +color material_timepicker_modebutton_tint +color module_commons_FFF_333 +color module_commons_dlg_bkg +color module_commons_wm_dialog_text_textColor +color module_ext_color_voice_text +color module_mogo_autopilot_status_disable +color module_mogo_autopilot_status_enable +color module_switch_map_bg +color modules_commons_toast_text_color +color mtrl_btn_bg_color_selector +color mtrl_btn_ripple_color +color mtrl_btn_stroke_color_selector +color mtrl_btn_text_btn_bg_color_selector +color mtrl_btn_text_btn_ripple_color +color mtrl_btn_text_color_disabled +color mtrl_btn_text_color_selector +color mtrl_btn_transparent_bg_color +color mtrl_calendar_item_stroke_color +color mtrl_calendar_selected_range +color mtrl_card_view_foreground +color mtrl_card_view_ripple +color mtrl_chip_background_color +color mtrl_chip_close_icon_tint +color mtrl_chip_surface_color +color mtrl_chip_text_color +color mtrl_choice_chip_background_color +color mtrl_choice_chip_ripple_color +color mtrl_choice_chip_text_color +color mtrl_error +color mtrl_fab_bg_color_selector +color mtrl_fab_icon_text_color_selector +color mtrl_fab_ripple_color +color mtrl_filled_background_color +color mtrl_filled_icon_tint +color mtrl_filled_stroke_color +color mtrl_indicator_text_color +color mtrl_navigation_bar_colored_item_tint +color mtrl_navigation_bar_colored_ripple_color +color mtrl_navigation_bar_item_tint +color mtrl_navigation_bar_ripple_color +color mtrl_navigation_item_background_color +color mtrl_navigation_item_icon_tint +color mtrl_navigation_item_text_color +color mtrl_on_primary_text_btn_text_color_selector +color mtrl_on_surface_ripple_color +color mtrl_outlined_icon_tint +color mtrl_outlined_stroke_color +color mtrl_popupmenu_overlay_color +color mtrl_scrim_color +color mtrl_tabs_colored_ripple_color +color mtrl_tabs_icon_color_selector +color mtrl_tabs_icon_color_selector_colored +color mtrl_tabs_legacy_text_color_selector +color mtrl_tabs_ripple_color +color mtrl_text_btn_text_color_selector +color mtrl_textinput_default_box_stroke_color +color mtrl_textinput_disabled_color +color mtrl_textinput_filled_box_default_background_color +color mtrl_textinput_focused_box_stroke_color +color mtrl_textinput_hovered_box_stroke_color +color notification_action_color_filter +color notification_icon_bg_color +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color radiobutton_themeable_attribute_color +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color style_color +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color test_mtrl_calendar_day +color test_mtrl_calendar_day_selected +color tooltip_background_dark +color tooltip_background_light +color v2x_FFF_666 +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_progress_bar_size +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_star_big +dimen abc_star_medium +dimen abc_star_small +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen action_bar_size +dimen appcompat_dialog_background_inset +dimen brightness_icon +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +dimen clock_face_margin_start +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen default_dimension +dimen design_appbar_elevation +dimen design_bottom_navigation_active_item_max_width +dimen design_bottom_navigation_active_item_min_width +dimen design_bottom_navigation_active_text_size +dimen design_bottom_navigation_elevation +dimen design_bottom_navigation_height +dimen design_bottom_navigation_icon_size +dimen design_bottom_navigation_item_max_width +dimen design_bottom_navigation_item_min_width +dimen design_bottom_navigation_label_padding +dimen design_bottom_navigation_margin +dimen design_bottom_navigation_shadow_height +dimen design_bottom_navigation_text_size +dimen design_bottom_sheet_elevation +dimen design_bottom_sheet_modal_elevation +dimen design_bottom_sheet_peek_height_min +dimen design_fab_border_width +dimen design_fab_elevation +dimen design_fab_image_size +dimen design_fab_size_mini +dimen design_fab_size_normal +dimen design_fab_translation_z_hovered_focused +dimen design_fab_translation_z_pressed +dimen design_navigation_elevation +dimen design_navigation_icon_padding +dimen design_navigation_icon_size +dimen design_navigation_item_horizontal_padding +dimen design_navigation_item_icon_padding +dimen design_navigation_max_width +dimen design_navigation_padding_bottom +dimen design_navigation_separator_vertical_padding +dimen design_snackbar_action_inline_max_width +dimen design_snackbar_action_text_color_alpha +dimen design_snackbar_background_corner_radius +dimen design_snackbar_elevation +dimen design_snackbar_extra_spacing_horizontal +dimen design_snackbar_max_width +dimen design_snackbar_min_width +dimen design_snackbar_padding_horizontal +dimen design_snackbar_padding_vertical +dimen design_snackbar_padding_vertical_2lines +dimen design_snackbar_text_size +dimen design_tab_max_width +dimen design_tab_scrollable_min_width +dimen design_tab_text_size +dimen design_tab_text_size_2line +dimen design_textinput_caption_translate_y +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen dp_0 +dimen dp_0_1 +dimen dp_0_5 +dimen dp_1 +dimen dp_10 +dimen dp_100 +dimen dp_1000 +dimen dp_101 +dimen dp_102 +dimen dp_103 +dimen dp_104 +dimen dp_104_5 +dimen dp_105 +dimen dp_106 +dimen dp_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_111 +dimen dp_112 +dimen dp_113 +dimen dp_114 +dimen dp_115 +dimen dp_116 +dimen dp_117 +dimen dp_118 +dimen dp_119 +dimen dp_12 +dimen dp_120 +dimen dp_121 +dimen dp_122 +dimen dp_123 +dimen dp_124 +dimen dp_125 +dimen dp_126 +dimen dp_127 +dimen dp_128 +dimen dp_129 +dimen dp_13 +dimen dp_130 +dimen dp_1300 +dimen dp_131 +dimen dp_132 +dimen dp_133 +dimen dp_134 +dimen dp_134_5 +dimen dp_135 +dimen dp_136 +dimen dp_137 +dimen dp_138 +dimen dp_139 +dimen dp_14 +dimen dp_140 +dimen dp_141 +dimen dp_142 +dimen dp_143 +dimen dp_144 +dimen dp_145 +dimen dp_146 +dimen dp_147 +dimen dp_148 +dimen dp_149 +dimen dp_15 +dimen dp_150 +dimen dp_151 +dimen dp_152 +dimen dp_153 +dimen dp_154 +dimen dp_155 +dimen dp_156 +dimen dp_157 +dimen dp_158 +dimen dp_159 +dimen dp_16 +dimen dp_160 +dimen dp_161 +dimen dp_162 +dimen dp_163 +dimen dp_164 +dimen dp_165 +dimen dp_166 +dimen dp_167 +dimen dp_168 +dimen dp_169 +dimen dp_17 +dimen dp_170 +dimen dp_171 +dimen dp_172 +dimen dp_173 +dimen dp_174 +dimen dp_175 +dimen dp_176 +dimen dp_177 +dimen dp_178 +dimen dp_179 +dimen dp_18 +dimen dp_180 +dimen dp_181 +dimen dp_182 +dimen dp_183 +dimen dp_184 +dimen dp_185 +dimen dp_186 +dimen dp_187 +dimen dp_188 +dimen dp_189 +dimen dp_19 +dimen dp_190 +dimen dp_191 +dimen dp_191_25 +dimen dp_192 +dimen dp_1920 +dimen dp_193 +dimen dp_194 +dimen dp_195 +dimen dp_196 +dimen dp_197 +dimen dp_198 +dimen dp_199 +dimen dp_1_5 +dimen dp_2 +dimen dp_20 +dimen dp_200 +dimen dp_201 +dimen dp_202 +dimen dp_203 +dimen dp_204 +dimen dp_205 +dimen dp_206 +dimen dp_207 +dimen dp_208 +dimen dp_209 +dimen dp_21 +dimen dp_210 +dimen dp_211 +dimen dp_212 +dimen dp_213 +dimen dp_214 +dimen dp_215 +dimen dp_216 +dimen dp_217 +dimen dp_218 +dimen dp_219 +dimen dp_22 +dimen dp_220 +dimen dp_221 +dimen dp_222 +dimen dp_223 +dimen dp_224 +dimen dp_225 +dimen dp_226 +dimen dp_227 +dimen dp_228 +dimen dp_229 +dimen dp_23 +dimen dp_230 +dimen dp_231 +dimen dp_232 +dimen dp_233 +dimen dp_234 +dimen dp_235 +dimen dp_236 +dimen dp_237 +dimen dp_238 +dimen dp_239 +dimen dp_24 +dimen dp_240 +dimen dp_241 +dimen dp_242 +dimen dp_243 +dimen dp_244 +dimen dp_245 +dimen dp_246 +dimen dp_247 +dimen dp_248 +dimen dp_249 +dimen dp_25 +dimen dp_250 +dimen dp_251 +dimen dp_252 +dimen dp_253 +dimen dp_254 +dimen dp_255 +dimen dp_256 +dimen dp_257 +dimen dp_258 +dimen dp_259 +dimen dp_26 +dimen dp_260 +dimen dp_261 +dimen dp_262 +dimen dp_263 +dimen dp_264 +dimen dp_265 +dimen dp_266 +dimen dp_267 +dimen dp_268 +dimen dp_269 +dimen dp_27 +dimen dp_270 +dimen dp_271 +dimen dp_272 +dimen dp_273 +dimen dp_274 +dimen dp_275 +dimen dp_276 +dimen dp_277 +dimen dp_278 +dimen dp_279 +dimen dp_28 +dimen dp_280 +dimen dp_281 +dimen dp_282 +dimen dp_283 +dimen dp_284 +dimen dp_285 +dimen dp_286 +dimen dp_287 +dimen dp_288 +dimen dp_289 +dimen dp_29 +dimen dp_290 +dimen dp_291 +dimen dp_292 +dimen dp_293 +dimen dp_294 +dimen dp_295 +dimen dp_296 +dimen dp_297 +dimen dp_298 +dimen dp_299 +dimen dp_2_5 +dimen dp_3 +dimen dp_30 +dimen dp_300 +dimen dp_301 +dimen dp_302 +dimen dp_303 +dimen dp_304 +dimen dp_305 +dimen dp_306 +dimen dp_307 +dimen dp_308 +dimen dp_309 +dimen dp_31 +dimen dp_310 +dimen dp_311 +dimen dp_312 +dimen dp_313 +dimen dp_314 +dimen dp_315 +dimen dp_316 +dimen dp_317 +dimen dp_318 +dimen dp_319 +dimen dp_32 +dimen dp_320 +dimen dp_321 +dimen dp_322 +dimen dp_323 +dimen dp_324 +dimen dp_325 +dimen dp_326 +dimen dp_327 +dimen dp_328 +dimen dp_329 +dimen dp_33 +dimen dp_330 +dimen dp_331 +dimen dp_332 +dimen dp_333 +dimen dp_334 +dimen dp_335 +dimen dp_336 +dimen dp_337 +dimen dp_338 +dimen dp_339 +dimen dp_34 +dimen dp_340 +dimen dp_341 +dimen dp_342 +dimen dp_343 +dimen dp_344 +dimen dp_345 +dimen dp_346 +dimen dp_347 +dimen dp_348 +dimen dp_349 +dimen dp_35 +dimen dp_350 +dimen dp_351 +dimen dp_352 +dimen dp_353 +dimen dp_354 +dimen dp_355 +dimen dp_356 +dimen dp_357 +dimen dp_358 +dimen dp_359 +dimen dp_36 +dimen dp_366 +dimen dp_367 +dimen dp_368 +dimen dp_369 +dimen dp_37 +dimen dp_370 +dimen dp_371 +dimen dp_372 +dimen dp_373 +dimen dp_374 +dimen dp_375 +dimen dp_376 +dimen dp_377 +dimen dp_378 +dimen dp_379 +dimen dp_38 +dimen dp_380 +dimen dp_381 +dimen dp_382 +dimen dp_383 +dimen dp_384 +dimen dp_385 +dimen dp_386 +dimen dp_387 +dimen dp_388 +dimen dp_389 +dimen dp_39 +dimen dp_390 +dimen dp_391 +dimen dp_392 +dimen dp_393 +dimen dp_394 +dimen dp_395 +dimen dp_396 +dimen dp_397 +dimen dp_398 +dimen dp_399 +dimen dp_3_5 +dimen dp_4 +dimen dp_40 +dimen dp_400 +dimen dp_401 +dimen dp_402 +dimen dp_403 +dimen dp_404 +dimen dp_405 +dimen dp_406 +dimen dp_407 +dimen dp_408 +dimen dp_409 +dimen dp_41 +dimen dp_410 +dimen dp_411 +dimen dp_412 +dimen dp_413 +dimen dp_414 +dimen dp_415 +dimen dp_416 +dimen dp_417 +dimen dp_418 +dimen dp_419 +dimen dp_42 +dimen dp_420 +dimen dp_421 +dimen dp_422 +dimen dp_423 +dimen dp_424 +dimen dp_425 +dimen dp_426 +dimen dp_427 +dimen dp_428 +dimen dp_429 +dimen dp_43 +dimen dp_430 +dimen dp_431 +dimen dp_432 +dimen dp_433 +dimen dp_434 +dimen dp_435 +dimen dp_436 +dimen dp_437 +dimen dp_438 +dimen dp_439 +dimen dp_44 +dimen dp_440 +dimen dp_441 +dimen dp_442 +dimen dp_443 +dimen dp_444 +dimen dp_445 +dimen dp_446 +dimen dp_447 +dimen dp_448 +dimen dp_449 +dimen dp_45 +dimen dp_450 +dimen dp_451 +dimen dp_452 +dimen dp_453 +dimen dp_454 +dimen dp_455 +dimen dp_456 +dimen dp_457 +dimen dp_458 +dimen dp_459 +dimen dp_46 +dimen dp_460 +dimen dp_461 +dimen dp_462 +dimen dp_463 +dimen dp_464 +dimen dp_465 +dimen dp_466 +dimen dp_467 +dimen dp_468 +dimen dp_469 +dimen dp_47 +dimen dp_470 +dimen dp_471 +dimen dp_472 +dimen dp_473 +dimen dp_474 +dimen dp_475 +dimen dp_476 +dimen dp_477 +dimen dp_478 +dimen dp_479 +dimen dp_48 +dimen dp_480 +dimen dp_481 +dimen dp_482 +dimen dp_483 +dimen dp_484 +dimen dp_485 +dimen dp_486 +dimen dp_487 +dimen dp_488 +dimen dp_489 +dimen dp_49 +dimen dp_490 +dimen dp_491 +dimen dp_492 +dimen dp_493 +dimen dp_494 +dimen dp_495 +dimen dp_496 +dimen dp_497 +dimen dp_498 +dimen dp_499 +dimen dp_4_5 +dimen dp_5 +dimen dp_50 +dimen dp_500 +dimen dp_501 +dimen dp_502 +dimen dp_503 +dimen dp_504 +dimen dp_505 +dimen dp_506 +dimen dp_507 +dimen dp_508 +dimen dp_509 +dimen dp_51 +dimen dp_510 +dimen dp_511 +dimen dp_512 +dimen dp_513 +dimen dp_514 +dimen dp_515 +dimen dp_516 +dimen dp_517 +dimen dp_518 +dimen dp_519 +dimen dp_52 +dimen dp_520 +dimen dp_521 +dimen dp_522 +dimen dp_523 +dimen dp_524 +dimen dp_525 +dimen dp_526 +dimen dp_527 +dimen dp_528 +dimen dp_529 +dimen dp_53 +dimen dp_530 +dimen dp_531 +dimen dp_532 +dimen dp_533 +dimen dp_534 +dimen dp_535 +dimen dp_536 +dimen dp_537 +dimen dp_538 +dimen dp_539 +dimen dp_54 +dimen dp_540 +dimen dp_541 +dimen dp_542 +dimen dp_543 +dimen dp_544 +dimen dp_545 +dimen dp_546 +dimen dp_547 +dimen dp_548 +dimen dp_549 +dimen dp_55 +dimen dp_550 +dimen dp_551 +dimen dp_552 +dimen dp_553 +dimen dp_554 +dimen dp_555 +dimen dp_556 +dimen dp_557 +dimen dp_558 +dimen dp_559 +dimen dp_56 +dimen dp_560 +dimen dp_561 +dimen dp_562 +dimen dp_563 +dimen dp_564 +dimen dp_565 +dimen dp_566 +dimen dp_567 +dimen dp_568 +dimen dp_569 +dimen dp_57 +dimen dp_570 +dimen dp_571 +dimen dp_572 +dimen dp_573 +dimen dp_574 +dimen dp_575 +dimen dp_576 +dimen dp_577 +dimen dp_578 +dimen dp_579 +dimen dp_58 +dimen dp_580 +dimen dp_581 +dimen dp_582 +dimen dp_583 +dimen dp_584 +dimen dp_585 +dimen dp_586 +dimen dp_587 +dimen dp_588 +dimen dp_589 +dimen dp_59 +dimen dp_590 +dimen dp_591 +dimen dp_592 +dimen dp_593 +dimen dp_594 +dimen dp_595 +dimen dp_596 +dimen dp_597 +dimen dp_598 +dimen dp_599 +dimen dp_6 +dimen dp_60 +dimen dp_600 +dimen dp_601 +dimen dp_602 +dimen dp_603 +dimen dp_604 +dimen dp_605 +dimen dp_606 +dimen dp_607 +dimen dp_608 +dimen dp_609 +dimen dp_61 +dimen dp_610 +dimen dp_611 +dimen dp_612 +dimen dp_613 +dimen dp_614 +dimen dp_615 +dimen dp_616 +dimen dp_617 +dimen dp_618 +dimen dp_619 +dimen dp_62 +dimen dp_620 +dimen dp_621 +dimen dp_622 +dimen dp_623 +dimen dp_624 +dimen dp_625 +dimen dp_626 +dimen dp_627 +dimen dp_628 +dimen dp_629 +dimen dp_63 +dimen dp_630 +dimen dp_631 +dimen dp_632 +dimen dp_633 +dimen dp_634 +dimen dp_635 +dimen dp_636 +dimen dp_637 +dimen dp_638 +dimen dp_639 +dimen dp_64 +dimen dp_640 +dimen dp_641 +dimen dp_642 +dimen dp_643 +dimen dp_644 +dimen dp_645 +dimen dp_646 +dimen dp_647 +dimen dp_648 +dimen dp_649 +dimen dp_65 +dimen dp_650 +dimen dp_651 +dimen dp_652 +dimen dp_653 +dimen dp_654 +dimen dp_655 +dimen dp_656 +dimen dp_657 +dimen dp_658 +dimen dp_659 +dimen dp_66 +dimen dp_660 +dimen dp_661 +dimen dp_662 +dimen dp_663 +dimen dp_664 +dimen dp_665 +dimen dp_666 +dimen dp_667 +dimen dp_668 +dimen dp_669 +dimen dp_67 +dimen dp_670 +dimen dp_671 +dimen dp_672 +dimen dp_673 +dimen dp_674 +dimen dp_675 +dimen dp_676 +dimen dp_677 +dimen dp_678 +dimen dp_679 +dimen dp_68 +dimen dp_680 +dimen dp_681 +dimen dp_682 +dimen dp_683 +dimen dp_684 +dimen dp_685 +dimen dp_686 +dimen dp_687 +dimen dp_688 +dimen dp_689 +dimen dp_69 +dimen dp_690 +dimen dp_691 +dimen dp_692 +dimen dp_693 +dimen dp_694 +dimen dp_695 +dimen dp_696 +dimen dp_697 +dimen dp_698 +dimen dp_699 +dimen dp_7 +dimen dp_70 +dimen dp_700 +dimen dp_701 +dimen dp_702 +dimen dp_703 +dimen dp_704 +dimen dp_705 +dimen dp_706 +dimen dp_707 +dimen dp_708 +dimen dp_709 +dimen dp_71 +dimen dp_710 +dimen dp_711 +dimen dp_712 +dimen dp_713 +dimen dp_714 +dimen dp_715 +dimen dp_716 +dimen dp_717 +dimen dp_718 +dimen dp_719 +dimen dp_72 +dimen dp_720 +dimen dp_721 +dimen dp_722 +dimen dp_723 +dimen dp_724 +dimen dp_725 +dimen dp_726 +dimen dp_727 +dimen dp_728 +dimen dp_729 +dimen dp_73 +dimen dp_730 +dimen dp_731 +dimen dp_732 +dimen dp_733 +dimen dp_734 +dimen dp_735 +dimen dp_736 +dimen dp_737 +dimen dp_738 +dimen dp_739 +dimen dp_74 +dimen dp_740 +dimen dp_741 +dimen dp_742 +dimen dp_743 +dimen dp_744 +dimen dp_745 +dimen dp_746 +dimen dp_747 +dimen dp_748 +dimen dp_749 +dimen dp_75 +dimen dp_750 +dimen dp_751 +dimen dp_752 +dimen dp_753 +dimen dp_754 +dimen dp_755 +dimen dp_756 +dimen dp_757 +dimen dp_758 +dimen dp_759 +dimen dp_76 +dimen dp_760 +dimen dp_761 +dimen dp_762 +dimen dp_763 +dimen dp_764 +dimen dp_765 +dimen dp_766 +dimen dp_767 +dimen dp_768 +dimen dp_769 +dimen dp_77 +dimen dp_770 +dimen dp_771 +dimen dp_772 +dimen dp_773 +dimen dp_774 +dimen dp_775 +dimen dp_776 +dimen dp_777 +dimen dp_778 +dimen dp_779 +dimen dp_78 +dimen dp_780 +dimen dp_781 +dimen dp_782 +dimen dp_783 +dimen dp_784 +dimen dp_785 +dimen dp_786 +dimen dp_787 +dimen dp_788 +dimen dp_789 +dimen dp_79 +dimen dp_790 +dimen dp_791 +dimen dp_792 +dimen dp_793 +dimen dp_794 +dimen dp_795 +dimen dp_796 +dimen dp_797 +dimen dp_798 +dimen dp_799 +dimen dp_7_5 +dimen dp_8 +dimen dp_80 +dimen dp_800 +dimen dp_801 +dimen dp_802 +dimen dp_803 +dimen dp_804 +dimen dp_805 +dimen dp_806 +dimen dp_807 +dimen dp_808 +dimen dp_809 +dimen dp_81 +dimen dp_810 +dimen dp_811 +dimen dp_812 +dimen dp_813 +dimen dp_814 +dimen dp_815 +dimen dp_816 +dimen dp_817 +dimen dp_818 +dimen dp_819 +dimen dp_82 +dimen dp_820 +dimen dp_821 +dimen dp_822 +dimen dp_823 +dimen dp_824 +dimen dp_825 +dimen dp_826 +dimen dp_827 +dimen dp_828 +dimen dp_829 +dimen dp_83 +dimen dp_830 +dimen dp_831 +dimen dp_832 +dimen dp_833 +dimen dp_834 +dimen dp_835 +dimen dp_836 +dimen dp_837 +dimen dp_838 +dimen dp_839 +dimen dp_84 +dimen dp_840 +dimen dp_841 +dimen dp_842 +dimen dp_843 +dimen dp_844 +dimen dp_845 +dimen dp_846 +dimen dp_847 +dimen dp_848 +dimen dp_849 +dimen dp_85 +dimen dp_850 +dimen dp_851 +dimen dp_852 +dimen dp_853 +dimen dp_854 +dimen dp_855 +dimen dp_856 +dimen dp_857 +dimen dp_858 +dimen dp_859 +dimen dp_86 +dimen dp_860 +dimen dp_861 +dimen dp_862 +dimen dp_863 +dimen dp_864 +dimen dp_865 +dimen dp_866 +dimen dp_867 +dimen dp_868 +dimen dp_869 +dimen dp_87 +dimen dp_870 +dimen dp_871 +dimen dp_872 +dimen dp_873 +dimen dp_874 +dimen dp_875 +dimen dp_876 +dimen dp_877 +dimen dp_878 +dimen dp_879 +dimen dp_88 +dimen dp_880 +dimen dp_881 +dimen dp_882 +dimen dp_883 +dimen dp_884 +dimen dp_885 +dimen dp_886 +dimen dp_887 +dimen dp_888 +dimen dp_889 +dimen dp_89 +dimen dp_890 +dimen dp_891 +dimen dp_892 +dimen dp_893 +dimen dp_894 +dimen dp_895 +dimen dp_896 +dimen dp_897 +dimen dp_898 +dimen dp_899 +dimen dp_9 +dimen dp_90 +dimen dp_900 +dimen dp_901 +dimen dp_902 +dimen dp_903 +dimen dp_904 +dimen dp_905 +dimen dp_906 +dimen dp_907 +dimen dp_908 +dimen dp_909 +dimen dp_91 +dimen dp_910 +dimen dp_911 +dimen dp_912 +dimen dp_913 +dimen dp_914 +dimen dp_915 +dimen dp_916 +dimen dp_917 +dimen dp_918 +dimen dp_919 +dimen dp_92 +dimen dp_920 +dimen dp_921 +dimen dp_922 +dimen dp_923 +dimen dp_924 +dimen dp_925 +dimen dp_926 +dimen dp_927 +dimen dp_928 +dimen dp_929 +dimen dp_93 +dimen dp_930 +dimen dp_931 +dimen dp_932 +dimen dp_933 +dimen dp_934 +dimen dp_935 +dimen dp_936 +dimen dp_937 +dimen dp_938 +dimen dp_939 +dimen dp_94 +dimen dp_940 +dimen dp_941 +dimen dp_942 +dimen dp_943 +dimen dp_944 +dimen dp_945 +dimen dp_946 +dimen dp_947 +dimen dp_948 +dimen dp_949 +dimen dp_95 +dimen dp_950 +dimen dp_951 +dimen dp_952 +dimen dp_953 +dimen dp_954 +dimen dp_955 +dimen dp_956 +dimen dp_957 +dimen dp_958 +dimen dp_959 +dimen dp_96 +dimen dp_960 +dimen dp_961 +dimen dp_962 +dimen dp_963 +dimen dp_964 +dimen dp_965 +dimen dp_966 +dimen dp_967 +dimen dp_968 +dimen dp_969 +dimen dp_97 +dimen dp_970 +dimen dp_971 +dimen dp_972 +dimen dp_973 +dimen dp_974 +dimen dp_975 +dimen dp_976 +dimen dp_977 +dimen dp_978 +dimen dp_979 +dimen dp_98 +dimen dp_980 +dimen dp_981 +dimen dp_982 +dimen dp_983 +dimen dp_984 +dimen dp_985 +dimen dp_986 +dimen dp_987 +dimen dp_988 +dimen dp_989 +dimen dp_99 +dimen dp_990 +dimen dp_991 +dimen dp_992 +dimen dp_993 +dimen dp_994 +dimen dp_995 +dimen dp_996 +dimen dp_997 +dimen dp_998 +dimen dp_999 +dimen dp_m_1 +dimen dp_m_10 +dimen dp_m_12 +dimen dp_m_2 +dimen dp_m_20 +dimen dp_m_30 +dimen dp_m_5 +dimen dp_m_60 +dimen dp_m_8 +dimen exo_media_button_height +dimen exo_media_button_width +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen heart_ratingbar_height +dimen heart_ratingbar_width +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen layout_margin_bottom +dimen material_bottom_sheet_max_width +dimen material_clock_display_padding +dimen material_clock_face_margin_top +dimen material_clock_hand_center_dot_radius +dimen material_clock_hand_padding +dimen material_clock_hand_stroke_width +dimen material_clock_number_text_size +dimen material_clock_period_toggle_height +dimen material_clock_period_toggle_margin_left +dimen material_clock_period_toggle_width +dimen material_clock_size +dimen material_cursor_inset_bottom +dimen material_cursor_inset_top +dimen material_cursor_width +dimen material_emphasis_disabled +dimen material_emphasis_high_type +dimen material_emphasis_medium +dimen material_filled_edittext_font_1_3_padding_bottom +dimen material_filled_edittext_font_1_3_padding_top +dimen material_filled_edittext_font_2_0_padding_bottom +dimen material_filled_edittext_font_2_0_padding_top +dimen material_font_1_3_box_collapsed_padding_top +dimen material_font_2_0_box_collapsed_padding_top +dimen material_helper_text_default_padding_top +dimen material_helper_text_font_1_3_padding_horizontal +dimen material_helper_text_font_1_3_padding_top +dimen material_input_text_to_prefix_suffix_padding +dimen material_text_view_test_line_height +dimen material_text_view_test_line_height_override +dimen material_textinput_default_width +dimen material_textinput_max_width +dimen material_textinput_min_width +dimen material_time_picker_minimum_screen_height +dimen material_time_picker_minimum_screen_width +dimen material_timepicker_dialog_buttons_margin_top +dimen module_common_shadow_width +dimen module_common_shadow_width_pos +dimen module_commons_toast_icon_width +dimen module_commons_toast_marginBottom +dimen module_commons_toast_marginLeft +dimen module_commons_toast_marginRight +dimen module_commons_toast_marginTop +dimen module_commons_toast_maxWidth +dimen module_commons_toast_minWidth +dimen module_commons_toast_space_between_icon_and_msg +dimen module_commons_toast_textSize +dimen module_commons_toast_with_left_drawable_marginBottom +dimen module_commons_toast_with_left_drawable_marginLeft +dimen module_commons_toast_with_left_drawable_marginTop +dimen module_commons_toast_y_offset +dimen module_ext_arcView_center_text_size +dimen module_ext_arcView_des_text_size +dimen module_ext_arcView_height +dimen module_ext_arcView_stroke_with +dimen module_ext_arcView_top +dimen module_ext_arcView_width +dimen module_ext_speed_height +dimen module_ext_speed_padding +dimen module_ext_speed_width +dimen module_ext_speed_width_big_radius +dimen module_ext_speed_width_sm_radius +dimen module_hmi_autopilot_status_bg_big_radius +dimen module_hmi_autopilot_status_bg_sm_radius +dimen module_hmi_btn_size +dimen module_hmi_btn_text_size +dimen module_hmi_check_left +dimen module_hmi_check_size +dimen module_map_amap_my_location_bg_size +dimen module_map_amap_my_location_icon_height +dimen module_map_amap_my_location_icon_width +dimen module_mogo_autopilot_status_bg_height +dimen module_mogo_autopilot_status_bg_width +dimen module_mogo_autopilot_status_icon_margin +dimen module_mogo_autopilot_status_icon_width +dimen module_mogo_autopilot_status_margin_left +dimen module_mogo_autopilot_status_margin_top +dimen module_mogo_autopilot_status_padding +dimen module_mogo_autopilot_status_text_margin_start +dimen module_mogo_autopilot_status_text_size +dimen module_service_content_minWidth +dimen module_service_content_textSize +dimen module_service_id_marker_content_paddingRight +dimen module_service_id_marker_content_paddingRight_widthoutCall +dimen module_service_marker_anchor_size +dimen module_service_marker_bounds_bottomMargin +dimen module_service_marker_bounds_leftMargin +dimen module_service_marker_bounds_rightMargin +dimen module_service_marker_bounds_topMargin +dimen module_service_marker_bubble_height +dimen module_service_marker_bubble_icon_height +dimen module_service_marker_bubble_icon_marginBottom +dimen module_service_marker_bubble_icon_vr_height +dimen module_service_marker_bubble_icon_vr_width +dimen module_service_marker_bubble_icon_width +dimen module_service_marker_bubble_vr_height +dimen module_service_marker_bubble_vr_width +dimen module_service_marker_bubble_width +dimen module_service_marker_dot_marginTop +dimen module_service_tag_textSize +dimen module_service_user_header_height +dimen module_service_user_header_width +dimen module_services_empty_tip_marginTop +dimen module_services_empty_tip_textSize +dimen module_services_id_panel_item_avatar_border_width +dimen module_services_id_panel_item_distance_marginLeft +dimen module_services_info_window_height +dimen module_services_info_window_paddingEnd +dimen module_services_info_window_paddingStart +dimen module_services_load_strategy_marginRight +dimen module_services_load_strategy_paddingLeft +dimen module_services_load_strategy_paddingTop +dimen module_services_load_strategy_textSize +dimen module_services_online_car_panel_close_margin_top +dimen module_services_online_car_panel_marginBottom +dimen module_services_online_car_panel_marginRight +dimen module_services_online_car_panel_marginTop +dimen module_services_online_car_panel_paddingBottom +dimen module_services_online_car_panel_paddingLeft +dimen module_services_online_car_panel_recycler_view_margin_top +dimen module_services_online_car_panel_title_margin_top +dimen module_services_online_car_panel_title_text_size +dimen module_services_panel_item_avatar_size +dimen module_services_panel_item_corner +dimen module_services_panel_item_detail_bkg_corner +dimen module_services_panel_item_detail_padding +dimen module_services_panel_item_detail_textSize +dimen module_services_panel_item_distance_textSize +dimen module_services_panel_item_marginBottom +dimen module_services_panel_item_nickname_marginLeft +dimen module_services_panel_item_nickname_textSize +dimen module_services_panel_item_padding +dimen module_services_panel_strategy_button_bkg_corner +dimen module_services_panel_strategy_button_marginTop +dimen module_switch_image +dimen module_switch_image_circle +dimen module_switch_map +dimen module_switch_map_height +dimen module_switch_margin_left +dimen module_switch_text_size +dimen module_v2n_image_margin_left +dimen module_v2n_tip_height +dimen module_v2n_tip_text_margin_right +dimen module_v2n_tip_text_width +dimen module_v2n_tip_width +dimen module_v2x_brake_image_margin_left +dimen module_v2x_brake_image_margin_right +dimen module_v2x_brake_image_width +dimen module_v2x_brake_tip_height +dimen module_v2x_brake_tip_width +dimen module_vip_height +dimen module_vip_margin_left +dimen module_vip_margin_top +dimen module_vip_width +dimen mtrl_alert_dialog_background_inset_bottom +dimen mtrl_alert_dialog_background_inset_end +dimen mtrl_alert_dialog_background_inset_start +dimen mtrl_alert_dialog_background_inset_top +dimen mtrl_alert_dialog_picker_background_inset +dimen mtrl_badge_horizontal_edge_offset +dimen mtrl_badge_long_text_horizontal_padding +dimen mtrl_badge_radius +dimen mtrl_badge_text_horizontal_edge_offset +dimen mtrl_badge_text_size +dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset +dimen mtrl_badge_toolbar_action_menu_item_vertical_offset +dimen mtrl_badge_with_text_radius +dimen mtrl_bottomappbar_fabOffsetEndMode +dimen mtrl_bottomappbar_fab_bottom_margin +dimen mtrl_bottomappbar_fab_cradle_margin +dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius +dimen mtrl_bottomappbar_fab_cradle_vertical_offset +dimen mtrl_bottomappbar_height +dimen mtrl_btn_corner_radius +dimen mtrl_btn_dialog_btn_min_width +dimen mtrl_btn_disabled_elevation +dimen mtrl_btn_disabled_z +dimen mtrl_btn_elevation +dimen mtrl_btn_focused_z +dimen mtrl_btn_hovered_z +dimen mtrl_btn_icon_btn_padding_left +dimen mtrl_btn_icon_padding +dimen mtrl_btn_inset +dimen mtrl_btn_letter_spacing +dimen mtrl_btn_max_width +dimen mtrl_btn_padding_bottom +dimen mtrl_btn_padding_left +dimen mtrl_btn_padding_right +dimen mtrl_btn_padding_top +dimen mtrl_btn_pressed_z +dimen mtrl_btn_snackbar_margin_horizontal +dimen mtrl_btn_stroke_size +dimen mtrl_btn_text_btn_icon_padding +dimen mtrl_btn_text_btn_padding_left +dimen mtrl_btn_text_btn_padding_right +dimen mtrl_btn_text_size +dimen mtrl_btn_z +dimen mtrl_calendar_action_confirm_button_min_width +dimen mtrl_calendar_action_height +dimen mtrl_calendar_action_padding +dimen mtrl_calendar_bottom_padding +dimen mtrl_calendar_content_padding +dimen mtrl_calendar_day_corner +dimen mtrl_calendar_day_height +dimen mtrl_calendar_day_horizontal_padding +dimen mtrl_calendar_day_today_stroke +dimen mtrl_calendar_day_vertical_padding +dimen mtrl_calendar_day_width +dimen mtrl_calendar_days_of_week_height +dimen mtrl_calendar_dialog_background_inset +dimen mtrl_calendar_header_content_padding +dimen mtrl_calendar_header_content_padding_fullscreen +dimen mtrl_calendar_header_divider_thickness +dimen mtrl_calendar_header_height +dimen mtrl_calendar_header_height_fullscreen +dimen mtrl_calendar_header_selection_line_height +dimen mtrl_calendar_header_text_padding +dimen mtrl_calendar_header_toggle_margin_bottom +dimen mtrl_calendar_header_toggle_margin_top +dimen mtrl_calendar_landscape_header_width +dimen mtrl_calendar_maximum_default_fullscreen_minor_axis +dimen mtrl_calendar_month_horizontal_padding +dimen mtrl_calendar_month_vertical_padding +dimen mtrl_calendar_navigation_bottom_padding +dimen mtrl_calendar_navigation_height +dimen mtrl_calendar_navigation_top_padding +dimen mtrl_calendar_pre_l_text_clip_padding +dimen mtrl_calendar_selection_baseline_to_top_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_bottom +dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_top +dimen mtrl_calendar_text_input_padding_top +dimen mtrl_calendar_title_baseline_to_top +dimen mtrl_calendar_title_baseline_to_top_fullscreen +dimen mtrl_calendar_year_corner +dimen mtrl_calendar_year_height +dimen mtrl_calendar_year_horizontal_padding +dimen mtrl_calendar_year_vertical_padding +dimen mtrl_calendar_year_width +dimen mtrl_card_checked_icon_margin +dimen mtrl_card_checked_icon_size +dimen mtrl_card_corner_radius +dimen mtrl_card_dragged_z +dimen mtrl_card_elevation +dimen mtrl_card_spacing +dimen mtrl_chip_pressed_translation_z +dimen mtrl_chip_text_size +dimen mtrl_edittext_rectangle_top_offset +dimen mtrl_exposed_dropdown_menu_popup_elevation +dimen mtrl_exposed_dropdown_menu_popup_vertical_offset +dimen mtrl_exposed_dropdown_menu_popup_vertical_padding +dimen mtrl_extended_fab_bottom_padding +dimen mtrl_extended_fab_corner_radius +dimen mtrl_extended_fab_disabled_elevation +dimen mtrl_extended_fab_disabled_translation_z +dimen mtrl_extended_fab_elevation +dimen mtrl_extended_fab_end_padding +dimen mtrl_extended_fab_end_padding_icon +dimen mtrl_extended_fab_icon_size +dimen mtrl_extended_fab_icon_text_spacing +dimen mtrl_extended_fab_min_height +dimen mtrl_extended_fab_min_width +dimen mtrl_extended_fab_start_padding +dimen mtrl_extended_fab_start_padding_icon +dimen mtrl_extended_fab_top_padding +dimen mtrl_extended_fab_translation_z_base +dimen mtrl_extended_fab_translation_z_hovered_focused +dimen mtrl_extended_fab_translation_z_pressed +dimen mtrl_fab_elevation +dimen mtrl_fab_min_touch_target +dimen mtrl_fab_translation_z_hovered_focused +dimen mtrl_fab_translation_z_pressed +dimen mtrl_high_ripple_default_alpha +dimen mtrl_high_ripple_focused_alpha +dimen mtrl_high_ripple_hovered_alpha +dimen mtrl_high_ripple_pressed_alpha +dimen mtrl_large_touch_target +dimen mtrl_low_ripple_default_alpha +dimen mtrl_low_ripple_focused_alpha +dimen mtrl_low_ripple_hovered_alpha +dimen mtrl_low_ripple_pressed_alpha +dimen mtrl_min_touch_target_size +dimen mtrl_navigation_bar_item_default_icon_size +dimen mtrl_navigation_bar_item_default_margin +dimen mtrl_navigation_elevation +dimen mtrl_navigation_item_horizontal_padding +dimen mtrl_navigation_item_icon_padding +dimen mtrl_navigation_item_icon_size +dimen mtrl_navigation_item_shape_horizontal_margin +dimen mtrl_navigation_item_shape_vertical_margin +dimen mtrl_navigation_rail_active_text_size +dimen mtrl_navigation_rail_compact_width +dimen mtrl_navigation_rail_default_width +dimen mtrl_navigation_rail_elevation +dimen mtrl_navigation_rail_icon_margin +dimen mtrl_navigation_rail_icon_size +dimen mtrl_navigation_rail_margin +dimen mtrl_navigation_rail_text_bottom_margin +dimen mtrl_navigation_rail_text_size +dimen mtrl_progress_circular_inset +dimen mtrl_progress_circular_inset_extra_small +dimen mtrl_progress_circular_inset_medium +dimen mtrl_progress_circular_inset_small +dimen mtrl_progress_circular_radius +dimen mtrl_progress_circular_size +dimen mtrl_progress_circular_size_extra_small +dimen mtrl_progress_circular_size_medium +dimen mtrl_progress_circular_size_small +dimen mtrl_progress_circular_track_thickness_extra_small +dimen mtrl_progress_circular_track_thickness_medium +dimen mtrl_progress_circular_track_thickness_small +dimen mtrl_progress_indicator_full_rounded_corner_radius +dimen mtrl_progress_track_thickness +dimen mtrl_shape_corner_size_large_component +dimen mtrl_shape_corner_size_medium_component +dimen mtrl_shape_corner_size_small_component +dimen mtrl_slider_halo_radius +dimen mtrl_slider_label_padding +dimen mtrl_slider_label_radius +dimen mtrl_slider_label_square_side +dimen mtrl_slider_thumb_elevation +dimen mtrl_slider_thumb_radius +dimen mtrl_slider_track_height +dimen mtrl_slider_track_side_padding +dimen mtrl_slider_track_top +dimen mtrl_slider_widget_height +dimen mtrl_snackbar_action_text_color_alpha +dimen mtrl_snackbar_background_corner_radius +dimen mtrl_snackbar_background_overlay_color_alpha +dimen mtrl_snackbar_margin +dimen mtrl_snackbar_message_margin_horizontal +dimen mtrl_snackbar_padding_horizontal +dimen mtrl_switch_thumb_elevation +dimen mtrl_textinput_box_corner_radius_medium +dimen mtrl_textinput_box_corner_radius_small +dimen mtrl_textinput_box_label_cutout_padding +dimen mtrl_textinput_box_stroke_width_default +dimen mtrl_textinput_box_stroke_width_focused +dimen mtrl_textinput_counter_margin_start +dimen mtrl_textinput_end_icon_margin_start +dimen mtrl_textinput_outline_box_expanded_padding +dimen mtrl_textinput_start_icon_margin_end +dimen mtrl_toolbar_default_height +dimen mtrl_tooltip_arrowSize +dimen mtrl_tooltip_cornerSize +dimen mtrl_tooltip_minHeight +dimen mtrl_tooltip_minWidth +dimen mtrl_tooltip_padding +dimen mtrl_transition_shared_axis_slide_distance +dimen notice_current_time_margin +dimen notice_fullscreen_bt +dimen notice_loading_bt +dimen notice_play_bottom +dimen notice_play_height +dimen notice_play_marginleft +dimen notice_play_marginleft_small +dimen notice_play_marginright +dimen notice_play_marginright_small +dimen notice_seekbar_bottom +dimen notice_seekbar_width +dimen notice_seekbar_width_small +dimen notice_time_bottom +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen panel_list_item_title_size +dimen ratingbar_padding +dimen seek_bar_image +dimen share_item_address +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_13 +dimen sp_14 +dimen sp_15 +dimen sp_16 +dimen sp_17 +dimen sp_18 +dimen sp_19 +dimen sp_20 +dimen sp_21 +dimen sp_22 +dimen sp_23 +dimen sp_24 +dimen sp_25 +dimen sp_28 +dimen sp_30 +dimen sp_32 +dimen sp_34 +dimen sp_36 +dimen sp_38 +dimen sp_40 +dimen sp_42 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_8 +dimen sp_9 +dimen test_mtrl_calendar_day_cornerSize +dimen test_navigation_bar_active_item_max_width +dimen test_navigation_bar_active_item_min_width +dimen test_navigation_bar_active_text_size +dimen test_navigation_bar_elevation +dimen test_navigation_bar_height +dimen test_navigation_bar_icon_size +dimen test_navigation_bar_item_max_width +dimen test_navigation_bar_item_min_width +dimen test_navigation_bar_label_padding +dimen test_navigation_bar_shadow_height +dimen test_navigation_bar_text_size +dimen time_textsize +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +dimen v2x_panel_loading_top +dimen v2x_share_btn_height +dimen v2x_share_btn_width +dimen video_progress_dialog_margin_top +dimen video_volume_dialog_margin_left +dimen warning_distance_right +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_star_black_48dp +drawable abc_star_half_black_48dp +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable avd_hide_password +drawable avd_show_password +drawable bg_map_marker_yellow_info +drawable bg_shape_reverse_yellow +drawable bg_v2x_cancel_help +drawable bg_v2x_event_type_blue +drawable bg_v2x_event_type_orange +drawable bg_v2x_event_type_orange_vr +drawable bg_v2x_event_type_read +drawable bg_v2x_event_type_red_vr +drawable bg_waring_limiting_velocity +drawable bg_waring_traffic_light_vr +drawable bg_warning_bg +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable check_error_image +drawable common_marker_bottom_floor +drawable dark_color_close +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable empty_drawable +drawable exo_controls_fastforward +drawable exo_controls_next +drawable exo_controls_pause +drawable exo_controls_play +drawable exo_controls_previous +drawable exo_controls_rewind +drawable exo_edit_mode_logo +drawable ic_amap_navi_cursor +drawable ic_clock_black_24dp +drawable ic_keyboard_black_24dp +drawable ic_mtrl_checked_circle +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable ic_navi_start +drawable ic_navi_target +drawable icon_autopilot_status +drawable icon_autopilot_status_disabled +drawable icon_car_red +drawable icon_common_heart_animation_vr00 +drawable icon_common_heart_animation_vr02 +drawable icon_default_user_head +drawable icon_heart_choose +drawable icon_heart_second +drawable icon_heart_second_other +drawable icon_heart_unchoose +drawable icon_heart_unchoose_other +drawable icon_map_marker_book +drawable icon_map_marker_car_gray +drawable icon_map_marker_car_gray_selected +drawable icon_map_marker_car_type2 +drawable icon_map_marker_car_type_110 +drawable icon_map_marker_car_type_119 +drawable icon_map_marker_car_type_120 +drawable icon_map_marker_car_type_bus +drawable icon_map_marker_car_type_taxi +drawable icon_map_marker_living +drawable icon_map_marker_location_yellow +drawable icon_map_marker_location_yellow_vr +drawable icon_map_marker_misic +drawable icon_map_marker_news +drawable icon_map_marker_pondingl2 +drawable icon_map_marker_road_block_off +drawable icon_map_marker_road_block_up +drawable icon_map_marker_road_block_up2 +drawable icon_waring_traffic_light_green_vr +drawable icon_waring_traffic_light_red_vr +drawable icon_waring_traffic_light_yellow_vr +drawable icon_warning_v2x_abnormal_vehicle +drawable icon_warning_v2x_blind_area_collision +drawable icon_warning_v2x_collision_warning +drawable icon_warning_v2x_congestion +drawable icon_warning_v2x_emergency_brake +drawable icon_warning_v2x_give_way +drawable icon_warning_v2x_hump_bridge +drawable icon_warning_v2x_motorcycle_collision +drawable icon_warning_v2x_no_parking +drawable icon_warning_v2x_optimal_route +drawable icon_warning_v2x_over_speed +drawable icon_warning_v2x_pedestrian_crossing +drawable icon_warning_v2x_reverse_overtaking +drawable icon_warning_v2x_road_construction +drawable icon_warning_v2x_road_dangerous +drawable icon_warning_v2x_roundaboutpng +drawable icon_warning_v2x_school +drawable icon_warning_v2x_special_vehicle_access +drawable icon_warning_v2x_test_section +drawable icon_warning_v2x_traffic_light_gray +drawable icon_warning_v2x_traffic_light_green +drawable icon_warning_v2x_traffic_light_red +drawable icon_warning_v2x_traffic_light_yellow +drawable icon_warning_v2x_traffic_lights_green +drawable icon_warning_v2x_traffic_lights_red +drawable icon_warning_v2x_tramcar +drawable icon_warning_v2x_turn_left_sharp +drawable icon_warning_v2x_turn_right_sharp +drawable icon_warning_v2x_vehicle_control +drawable icon_warning_v2x_vip_turn_light +drawable lock +drawable map_api_ic_current_location2 +drawable material_cursor_drawable +drawable material_ic_calendar_black_24dp +drawable material_ic_clear_black_24dp +drawable material_ic_edit_black_24dp +drawable material_ic_keyboard_arrow_left_black_24dp +drawable material_ic_keyboard_arrow_next_black_24dp +drawable material_ic_keyboard_arrow_previous_black_24dp +drawable material_ic_keyboard_arrow_right_black_24dp +drawable material_ic_menu_arrow_down_black_24dp +drawable material_ic_menu_arrow_up_black_24dp +drawable module_camera_real_time_traffic +drawable module_common_close_selector +drawable module_common_close_selector_vr +drawable module_common_default_user_head +drawable module_common_ic_rc_accident3 +drawable module_common_ic_rc_accident3_white +drawable module_common_ic_rc_dark_frog2 +drawable module_common_ic_rc_dark_frog2_white +drawable module_common_ic_rc_freeze2 +drawable module_common_ic_rc_freeze2_white +drawable module_common_ic_rc_illegal_park +drawable module_common_ic_rc_illegal_park_white +drawable module_common_ic_rc_parking2 +drawable module_common_icon_close +drawable module_common_icon_close_press +drawable module_common_icon_close_vr +drawable module_common_icon_like_selected_vr +drawable module_common_icon_like_vr +drawable module_common_icon_map_marker_4s +drawable module_common_icon_map_marker_living +drawable module_common_icon_map_marker_living_white +drawable module_common_icon_map_marker_pondingl2 +drawable module_common_icon_map_marker_pondingl2_white +drawable module_common_icon_map_marker_refuel +drawable module_common_icon_map_marker_road_block_off2 +drawable module_common_icon_map_marker_road_block_off2_white +drawable module_common_icon_map_marker_road_block_up2 +drawable module_common_icon_map_marker_road_block_up2_white +drawable module_common_icon_map_marker_road_check2 +drawable module_common_icon_map_marker_road_check2_white +drawable module_common_icon_map_marker_road_work2 +drawable module_common_icon_map_marker_road_work2_white +drawable module_common_icon_map_marker_shear_news +drawable module_common_icon_map_marker_shop +drawable module_common_icon_map_marker_shop_discount +drawable module_common_icon_seek_help +drawable module_common_icon_unlike_selected_vr +drawable module_common_icon_unlike_vr +drawable module_common_like_vr +drawable module_common_my_location_bg +drawable module_common_selector_call +drawable module_common_unlike_vr +drawable module_commons_dialog_bg +drawable module_commons_dialog_left_bg +drawable module_commons_dialog_right_bg +drawable module_commons_heart_ratingbar_drawable +drawable module_commons_shape_dlg_round_bkg +drawable module_commons_shape_left_btn_bkg +drawable module_commons_shape_right_btn_bkg +drawable module_commons_toast_bkg +drawable module_dw_common_corner_bkg_light +drawable module_ext_check +drawable module_ext_drawable_shadow_bg +drawable module_ext_shadow_bkg +drawable module_ext_shadow_bkg_pressed +drawable module_hmi_autopilot_status_bg +drawable module_hmi_autopilot_status_checked_bg +drawable module_hmi_autopilot_status_disabled_bg +drawable module_hmi_autopilot_status_enable_bg +drawable module_hmi_warning_bkg_bottom +drawable module_hmi_warning_bkg_left +drawable module_hmi_warning_bkg_right +drawable module_hmi_warning_bkg_top +drawable module_map_amap_my_location_icon +drawable module_service_ic_call +drawable module_service_ic_rc_accident +drawable module_service_ic_rc_accident2 +drawable module_service_ic_rc_accident3 +drawable module_service_ic_rc_accident3_white +drawable module_service_ic_rc_dark_frog +drawable module_service_ic_rc_dark_frog2 +drawable module_service_ic_rc_dark_frog2_white +drawable module_service_ic_rc_freeze +drawable module_service_ic_rc_freeze2 +drawable module_service_ic_rc_freeze2_white +drawable module_service_ic_rc_illegal_park +drawable module_service_ic_rc_illegal_park_white +drawable module_service_ic_rc_parking +drawable module_service_ic_rc_parking2 +drawable module_service_ic_rc_road_slippery +drawable module_service_ic_rc_road_slippery_light +drawable module_service_ic_seek_helping +drawable module_services_marker_bkg +drawable module_services_marker_vr_bkg +drawable module_services_marker_vr_bkg_checked +drawable module_switch_map_angle +drawable module_switch_map_bg +drawable mogo_image_accident_small +drawable mogo_image_daolushigong_nor +drawable mogo_image_daolushigong_small +drawable mogo_image_fenglu_nor +drawable mogo_image_fenglu_small +drawable mogo_image_jiaotongjiancha_nor +drawable mogo_image_jiaotongjiancha_small +drawable mogo_image_jiaotongshigu_nor +drawable mogo_image_jiebing_nor +drawable mogo_image_jiebing_small +drawable mogo_image_jishui_nor +drawable mogo_image_jishui_small +drawable mogo_image_nongwu_nor +drawable mogo_image_nongwu_small +drawable mogo_image_shishilukuang_small +drawable mogo_image_shishlukuang_nor +drawable mogo_image_yongdu_nor +drawable mogo_image_yongdu_small +drawable mtrl_dialog_background +drawable mtrl_dropdown_arrow +drawable mtrl_ic_arrow_drop_down +drawable mtrl_ic_arrow_drop_up +drawable mtrl_ic_cancel +drawable mtrl_ic_error +drawable mtrl_navigation_bar_item_background +drawable mtrl_popupmenu_background +drawable mtrl_popupmenu_background_dark +drawable mtrl_tabs_default_indicator +drawable navigation_empty_icon +drawable notice_banner_default +drawable notice_banner_icon_video +drawable notice_player_ic_circle_nor +drawable notice_seekbar_style +drawable notice_video_after_pause +drawable notice_video_pause +drawable notice_video_play +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable placeholder +drawable selector_call_btn_normal +drawable selector_call_btn_pressed +drawable sr +drawable sy +drawable test_custom_background +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable unlock +drawable utils_toast_bg +drawable v2x_icon_ahead_car_brake +drawable v2x_icon_car_collide_warning +drawable v2x_icon_daolushigong_vr +drawable v2x_icon_fenglu_vr +drawable v2x_icon_jiaotongjiancha_vr +drawable v2x_icon_jiaotongshigu_vr +drawable v2x_icon_jiebing_vr +drawable v2x_icon_jishui_vr +drawable v2x_icon_live_logo +drawable v2x_icon_nongwu_vr +drawable v2x_icon_yongdu_vr +drawable v_to_x_event_ugc_fenglu +drawable v_to_x_event_ugc_shigu +drawable v_to_x_event_ugc_yongdu +drawable v_to_x_marker_1 +drawable v_to_x_marker_11 +drawable v_to_x_marker_16 +drawable v_to_x_marker_2 +drawable v_to_x_marker_3 +drawable v_to_x_marker_5 +drawable v_to_x_marker_6 +drawable v_to_x_marker_7 +drawable v_to_x_marker_8 +drawable v_to_x_marker_9 +drawable v_to_x_marker_express +drawable v_to_x_marker_taxi +drawable v_to_x_warning_car_red +drawable video_back +drawable video_backward_icon +drawable video_brightness_6_white_36dp +drawable video_click_error_selector +drawable video_click_pause_selector +drawable video_click_play_selector +drawable video_dialog_progress +drawable video_dialog_progress_bg +drawable video_enlarge +drawable video_error_normal +drawable video_error_pressed +drawable video_forward_icon +drawable video_jump_btn_bg +drawable video_loading +drawable video_loading_bg +drawable video_pause_normal +drawable video_pause_pressed +drawable video_play_normal +drawable video_play_pressed +drawable video_progress +drawable video_seek_progress +drawable video_seek_thumb +drawable video_seek_thumb_normal +drawable video_seek_thumb_pressed +drawable video_shrink +drawable video_small_close +drawable video_title_bg +drawable video_volume_icon +drawable video_volume_progress_bg +drawable yi_biao_pan_bg_nor +drawable yi_biao_pan_bg_speeding +id BOTTOM_END +id BOTTOM_START +id Full +id Half +id NO_DEBUG +id SHOW_ALL +id SHOW_PATH +id SHOW_PROGRESS +id TOP_END +id TOP_START +id accelerate +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id actionDown +id actionDownUp +id actionUp +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id ad_full_id +id ad_small_id +id ad_time +id add +id alertTitle +id aligned +id allStates +id animateToEnd +id animateToStart +id antiClockwise +id anticipate +id app_video_brightness +id app_video_brightness_box +id app_video_brightness_icon +id arc +id asConfigured +id async +id auto +id autoComplete +id autoCompleteToEnd +id autoCompleteToStart +id back +id back_tiny +id barrier +id baseline +id bestChoice +id bezier_view +id blocking +id bottom +id bottom_progressbar +id bounce +id buttonPanel +id cancel_button +id carryVelocity +id center +id centerCrop +id centerInside +id chain +id checkbox +id checked +id chip +id chip1 +id chip2 +id chip3 +id chip_group +id chronometer +id circle +id circle_center +id clMarkerContent +id clMarkerTopView +id clear_text +id clockwise +id closest +id confirm_button +id constraint +id container +id content +id contentPanel +id contiguous +id continuousVelocity +id coordinator +id cos +id counterclockwise +id current +id currentState +id custom +id customPanel +id customRatingBar +id cut +id date_picker_actions +id decelerate +id decelerateAndComplete +id decor_content_parent +id default_activity_button +id deltaRelative +id design_bottom_sheet +id design_menu_item_action_area +id design_menu_item_action_area_stub +id design_menu_item_text +id design_navigation_view +id dialog_button +id disjoint +id dragAnticlockwise +id dragClockwise +id dragDown +id dragEnd +id dragLeft +id dragRight +id dragStart +id dragUp +id dropdown_menu +id duration_image_tip +id duration_progressbar +id easeIn +id easeInOut +id easeOut +id east +id edit_query +id elastic +id end +id endToStart +id exo_artwork +id exo_content_frame +id exo_controller_placeholder +id exo_duration +id exo_ffwd +id exo_next +id exo_overlay +id exo_pause +id exo_play +id exo_position +id exo_prev +id exo_progress +id exo_rew +id exo_shutter +id exo_subtitles +id expand_activities_button +id expanded_menu +id fade +id fill +id filled +id fit +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id fixed +id fixed_height +id fixed_width +id flip +id floating +id focusCrop +id forever +id fragment_container_view_tag +id frost +id full_id +id fullscreen +id ghost_view +id ghost_view_holder +id glide_custom_view_target_tag +id gone +id group_divider +id guideline +id header_title +id home +id honorRequest +id horizontal +id horizontal_only +id icon +id icon_group +id ignore +id ignoreRequest +id image +id immediateStop +id included +id info +id invisible +id inward +id italic +id item_touch_helper_previous_elevation +id item_video_cover +id ivCar +id ivIcon +id ivReverseTriangle +id ivUserHead +id iv_camera_traffic +id jumpToEnd +id jumpToStart +id jump_ad +id labeled +id layout +id layout_bottom +id layout_top +id left +id leftToRight +id line1 +id line3 +id linear +id listMode +id list_item +id loading +id loading_imageview +id loading_liner_layout +id loading_text +id lock_screen +id masked +id match_constraint +id match_parent +id material_clock_display +id material_clock_face +id material_clock_hand +id material_clock_period_am_button +id material_clock_period_pm_button +id material_clock_period_toggle +id material_hour_text_input +id material_hour_tv +id material_label +id material_minute_text_input +id material_minute_tv +id material_textinput_timepicker +id material_timepicker_cancel_button +id material_timepicker_container +id material_timepicker_edit_text +id material_timepicker_mode_button +id material_timepicker_ok_button +id material_timepicker_view +id material_value_index +id message +id middle +id mini +id module_commons_marker_car_model +id module_commons_toast_left_drawable +id module_commons_toast_msg +id module_commons_wm_dialog_button_cancel +id module_commons_wm_dialog_button_ok +id module_commons_wm_dialog_content +id module_map_amap_my_location_bg_iv +id module_map_amap_my_location_iv +id month_grid +id month_navigation_bar +id month_navigation_fragment_toggle +id month_navigation_next +id month_navigation_previous +id month_title +id motion_base +id mtrl_anchor_parent +id mtrl_calendar_day_selector_frame +id mtrl_calendar_days_of_week +id mtrl_calendar_frame +id mtrl_calendar_main_pane +id mtrl_calendar_months +id mtrl_calendar_selection_frame +id mtrl_calendar_text_input_frame +id mtrl_calendar_year_selector_frame +id mtrl_card_checked_layer_id +id mtrl_child_content_container +id mtrl_internal_children_alpha_tag +id mtrl_motion_snapshot_view +id mtrl_picker_fullscreen +id mtrl_picker_header +id mtrl_picker_header_selection_text +id mtrl_picker_header_title_and_selection +id mtrl_picker_header_toggle +id mtrl_picker_text_input_date +id mtrl_picker_text_input_range_end +id mtrl_picker_text_input_range_start +id mtrl_picker_title_text +id mtrl_view_tag_bottom_padding +id multiply +id navigation_bar_item_icon_view +id navigation_bar_item_labels_group +id navigation_bar_item_large_label_view +id navigation_bar_item_small_label_view +id navigation_header_container +id neverCompleteToEnd +id neverCompleteToStart +id noState +id none +id normal +id north +id notification_background +id notification_main_column +id notification_main_column_container +id off +id on +id outline +id outward +id overshoot +id packed +id parallax +id parent +id parentPanel +id parentRelative +id parent_matrix +id password_toggle +id path +id pathRelative +id percent +id pin +id position +id postLayout +id preview_layout +id progress +id progress_circular +id progress_horizontal +id radio +id rectangles +id refresh_button +id reverseSawtooth +id right +id rightToLeft +id right_icon +id right_side +id round +id rounded +id row_index_key +id save_non_transition_alpha +id save_overlay_view +id sawtooth +id scale +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id scrollable +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id selected +id selection_type +id shape_id +id sharedValueSet +id sharedValueUnset +id shortcut +id sin +id skipped +id slide +id small_close +id small_id +id snackbar_action +id snackbar_text +id south +id spacer +id special_effects_controller_view_tag +id spline +id split_action_bar +id spread +id spread_inside +id spring +id square +id src_atop +id src_in +id src_over +id standard +id start +id startHorizontal +id startToEnd +id startVertical +id staticLayout +id staticPostLayout +id stop +id stretch +id submenuarrow +id submit_area +id surface_container +id surface_view +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_click_time +id tag_on_apply_window_listener +id tag_on_receive_content_listener +id tag_on_receive_content_mime_types +id tag_screen_reader_focusable +id tag_state_description +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +id test_checkbox_android_button_tint +id test_checkbox_app_button_tint +id test_radiobutton_android_button_tint +id test_radiobutton_app_button_tint +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id text_input_end_icon +id text_input_error_icon +id text_input_start_icon +id textinput_counter +id textinput_error +id textinput_helper_text +id textinput_placeholder +id textinput_prefix_text +id textinput_suffix_text +id texture_view +id thumb +id thumbImage +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id total +id touch_outside +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id triangle +id tvMarkerContent +id tv_current +id tv_duration +id unchecked +id uniform +id unlabeled +id up +id utvBottomIconView +id utvLeftIconView +id utvRightIconView +id utvTopIconView +id vertical +id vertical_only +id view_lifecycle_owner +id view_offset_helper +id view_transition +id view_tree_lifecycle_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +id visible +id visible_removing_fragment_view_tag +id volume_progressbar +id west +id widget_container +id withinBounds +id wrap +id wrap_content +id wrap_content_constrained +id x_left +id x_right +id zero_corner_chip +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer app_bar_elevation_anim_duration +integer bottom_sheet_slide_duration +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer design_snackbar_text_max_lines +integer design_tab_indicator_anim_duration_ms +integer hide_password_duration +integer material_motion_duration_long_1 +integer material_motion_duration_long_2 +integer material_motion_duration_medium_1 +integer material_motion_duration_medium_2 +integer material_motion_duration_short_1 +integer material_motion_duration_short_2 +integer material_motion_path +integer mtrl_badge_max_character_count +integer mtrl_btn_anim_delay_ms +integer mtrl_btn_anim_duration_ms +integer mtrl_calendar_header_orientation +integer mtrl_calendar_selection_text_lines +integer mtrl_calendar_year_selector_span +integer mtrl_card_anim_delay_ms +integer mtrl_card_anim_duration_ms +integer mtrl_chip_anim_duration +integer mtrl_tab_indicator_anim_duration_ms +integer show_password_duration +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +interpolator mtrl_fast_out_linear_in +interpolator mtrl_fast_out_slow_in +interpolator mtrl_linear +interpolator mtrl_linear_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout custom_dialog +layout design_bottom_navigation_item +layout design_bottom_sheet_dialog +layout design_layout_snackbar +layout design_layout_snackbar_include +layout design_layout_tab_icon +layout design_layout_tab_text +layout design_menu_item_action_area +layout design_navigation_item +layout design_navigation_item_header +layout design_navigation_item_separator +layout design_navigation_item_subheader +layout design_navigation_menu +layout design_navigation_menu_item +layout design_text_input_end_icon +layout design_text_input_start_icon +layout exo_playback_control_view +layout exo_simple_player_view +layout item_notice_video +layout item_notice_video_small +layout item_v2x_crossroad_live_video +layout material_chip_input_combo +layout material_clock_display +layout material_clock_display_divider +layout material_clock_period_toggle +layout material_clock_period_toggle_land +layout material_clockface_textview +layout material_clockface_view +layout material_radial_view_group +layout material_textinput_timepicker +layout material_time_chip +layout material_time_input +layout material_timepicker +layout material_timepicker_dialog +layout material_timepicker_textinput_display +layout modeules_commons_layout_custom_ratingbar +layout modudle_camera_layout_info +layout modudle_services_marker_layout +layout modudle_services_marker_layout_info +layout modudle_services_marker_vr_layout +layout module_common_bezier_layout +layout module_common_my_location +layout module_common_warning_marker_bottom +layout module_common_warning_marker_front +layout module_commons_layout_car +layout module_commons_layout_toast +layout module_commons_layout_toast_with_left_drawable +layout module_commons_layout_wm_dialog +layout mtrl_alert_dialog +layout mtrl_alert_dialog_actions +layout mtrl_alert_dialog_title +layout mtrl_alert_select_dialog_item +layout mtrl_alert_select_dialog_multichoice +layout mtrl_alert_select_dialog_singlechoice +layout mtrl_calendar_day +layout mtrl_calendar_day_of_week +layout mtrl_calendar_days_of_week +layout mtrl_calendar_horizontal +layout mtrl_calendar_month +layout mtrl_calendar_month_labeled +layout mtrl_calendar_month_navigation +layout mtrl_calendar_months +layout mtrl_calendar_vertical +layout mtrl_calendar_year +layout mtrl_layout_snackbar +layout mtrl_layout_snackbar_include +layout mtrl_navigation_rail_item +layout mtrl_picker_actions +layout mtrl_picker_dialog +layout mtrl_picker_fullscreen +layout mtrl_picker_header_dialog +layout mtrl_picker_header_fullscreen +layout mtrl_picker_header_selection_text +layout mtrl_picker_header_title_text +layout mtrl_picker_header_toggle +layout mtrl_picker_text_input_date +layout mtrl_picker_text_input_date_range +layout network_loading_item +layout notice_video_card_layout +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +layout test_action_chip +layout test_chip_zero_corner_radius +layout test_design_checkbox +layout test_design_radiobutton +layout test_navigation_bar_item_layout +layout test_reflow_chipgroup +layout test_toolbar +layout test_toolbar_custom_background +layout test_toolbar_elevation +layout test_toolbar_surface +layout text_view_with_line_height_from_appearance +layout text_view_with_line_height_from_layout +layout text_view_with_line_height_from_style +layout text_view_with_theme_line_height +layout text_view_without_line_height +layout utils_toast_view +layout video_brightness +layout video_layout_ad +layout video_layout_custom +layout video_layout_normal +layout video_layout_sample_ad +layout video_layout_standard +layout video_progress_dialog +layout video_volume_dialog +plurals mtrl_badge_content_description +raw call +raw chuzuche +raw fangkuang +raw jiantou +raw match1 +raw match2 +raw match3 +raw qfpz +raw shexiangtou +raw special_vehicle +raw stopline +raw traffic_daba +raw traffic_kache +raw traffic_motuoche +raw traffic_people +raw traffic_tachexiaoche +raw traffic_unkonwn +raw traffic_zixingche +raw v2x_daolujiebing +raw v2x_daolujishui +raw v2x_daolushigong +raw v2x_guzhangqiuzhu +raw v2x_jiaotongjiancha +raw v2x_nongwu +raw v2x_shigong_warning +raw v2x_shigu +raw v2x_shishilukuang +raw v2x_yongdu +raw xiaobache +raw ziche +string N_A +string TrackType_audio +string TrackType_metadata +string TrackType_subtitle +string TrackType_timedtext +string TrackType_unknown +string TrackType_video +string VideoView_ar_16_9_fit_parent +string VideoView_ar_4_3_fit_parent +string VideoView_ar_aspect_fill_parent +string VideoView_ar_aspect_fit_parent +string VideoView_ar_aspect_wrap_content +string VideoView_ar_match_parent +string VideoView_error_button +string VideoView_error_text_invalid_progressive_playback +string VideoView_error_text_unknown +string VideoView_info_text_video_not_supported +string VideoView_player_AndroidMediaPlayer +string VideoView_player_IjkExoMediaPlayer +string VideoView_player_IjkMediaPlayer +string VideoView_player_none +string VideoView_render_none +string VideoView_render_surface_view +string VideoView_render_texture_view +string a_cache +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string androidx_startup +string app_name +string appbar_scrolling_view_behavior +string bit_rate +string bottom_sheet_behavior +string bottomsheet_action_expand_halfway +string character_counter_content_description +string character_counter_overflowed_content_description +string character_counter_pattern +string chip_text +string clear_text_end_icon_content_description +string close +string error_icon_content_description +string exit +string exo_controls_fastforward_description +string exo_controls_next_description +string exo_controls_pause_description +string exo_controls_play_description +string exo_controls_previous_description +string exo_controls_rewind_description +string exo_controls_stop_description +string exposed_dropdown_menu_content_description +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string file_not_support +string fps +string hide_bottom_view_on_scroll_behavior +string icon_content_description +string ijkplayer_dummy +string item_view_role_description +string jump_ad +string load_cost +string material_clock_display_divider +string material_clock_toggle_content_description +string material_hour_selection +string material_hour_suffix +string material_minute_selection +string material_minute_suffix +string material_motion_easing_accelerated +string material_motion_easing_decelerated +string material_motion_easing_emphasized +string material_motion_easing_linear +string material_motion_easing_standard +string material_slider_range_end +string material_slider_range_start +string material_timepicker_am +string material_timepicker_clock_mode_description +string material_timepicker_hour +string material_timepicker_minute +string material_timepicker_pm +string material_timepicker_select_time +string material_timepicker_text_input_mode_description +string media_information +string mi__selected_audio_track +string mi__selected_subtitle_track +string mi__selected_video_track +string mi_bit_rate +string mi_channels +string mi_codec +string mi_frame_rate +string mi_language +string mi_length +string mi_media +string mi_pixel_format +string mi_player +string mi_profile_level +string mi_resolution +string mi_sample_rate +string mi_stream_fmt1 +string mi_type +string module_commons_button_cancel +string module_commons_button_ok +string module_commons_exit_navi_content +string module_map_model_faster +string module_map_model_normal +string mtrl_badge_numberless_content_description +string mtrl_chip_close_icon_content_description +string mtrl_exceed_max_badge_number_content_description +string mtrl_exceed_max_badge_number_suffix +string mtrl_picker_a11y_next_month +string mtrl_picker_a11y_prev_month +string mtrl_picker_announce_current_selection +string mtrl_picker_cancel +string mtrl_picker_confirm +string mtrl_picker_date_header_selected +string mtrl_picker_date_header_title +string mtrl_picker_date_header_unselected +string mtrl_picker_day_of_week_column_header +string mtrl_picker_invalid_format +string mtrl_picker_invalid_format_example +string mtrl_picker_invalid_format_use +string mtrl_picker_invalid_range +string mtrl_picker_navigate_to_year_description +string mtrl_picker_out_of_range +string mtrl_picker_range_header_only_end_selected +string mtrl_picker_range_header_only_start_selected +string mtrl_picker_range_header_selected +string mtrl_picker_range_header_title +string mtrl_picker_range_header_unselected +string mtrl_picker_save +string mtrl_picker_text_input_date_hint +string mtrl_picker_text_input_date_range_end_hint +string mtrl_picker_text_input_date_range_start_hint +string mtrl_picker_text_input_day_abbr +string mtrl_picker_text_input_month_abbr +string mtrl_picker_text_input_year_abbr +string mtrl_picker_toggle_to_calendar_input_mode +string mtrl_picker_toggle_to_day_selection +string mtrl_picker_toggle_to_text_input_mode +string mtrl_picker_toggle_to_year_selection +string no_net +string no_url +string password_toggle_content_description +string path_password_eye +string path_password_eye_mask_strike_through +string path_password_eye_mask_visible +string path_password_strike_through +string recent +string sample +string search_menu_title +string seek_cost +string seek_load_cost +string settings +string show_info +string status_bar_notification_info_overflow +string tcp_speed +string tips_not_wifi +string tips_not_wifi_cancel +string tips_not_wifi_confirm +string toggle_player +string toggle_ratio +string toggle_render +string tracks +string v_cache +string vdec +style ActivityTranslucent +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style AndroidThemeColorAccentYellow +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style Animation_MaterialComponents_BottomSheetDialog +style BaseFloatDialogStyle +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_CardView +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_MaterialAlertDialog_MaterialComponents_Title_Icon +style Base_MaterialAlertDialog_MaterialComponents_Title_Panel +style Base_MaterialAlertDialog_MaterialComponents_Title_Text +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_MaterialComponents_Badge +style Base_TextAppearance_MaterialComponents_Button +style Base_TextAppearance_MaterialComponents_Headline6 +style Base_TextAppearance_MaterialComponents_Subtitle2 +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_ThemeOverlay_MaterialComponents_Dialog +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_MaterialComponents +style Base_Theme_MaterialComponents_Bridge +style Base_Theme_MaterialComponents_CompactMenu +style Base_Theme_MaterialComponents_Dialog +style Base_Theme_MaterialComponents_DialogWhenLarge +style Base_Theme_MaterialComponents_Dialog_Alert +style Base_Theme_MaterialComponents_Dialog_Bridge +style Base_Theme_MaterialComponents_Dialog_FixedSize +style Base_Theme_MaterialComponents_Dialog_MinWidth +style Base_Theme_MaterialComponents_Light +style Base_Theme_MaterialComponents_Light_Bridge +style Base_Theme_MaterialComponents_Light_DarkActionBar +style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_Theme_MaterialComponents_Light_Dialog +style Base_Theme_MaterialComponents_Light_DialogWhenLarge +style Base_Theme_MaterialComponents_Light_Dialog_Alert +style Base_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_Theme_MaterialComponents_Light_Dialog_FixedSize +style Base_Theme_MaterialComponents_Light_Dialog_MinWidth +style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_V14_Theme_MaterialComponents +style Base_V14_Theme_MaterialComponents_Bridge +style Base_V14_Theme_MaterialComponents_Dialog +style Base_V14_Theme_MaterialComponents_Dialog_Bridge +style Base_V14_Theme_MaterialComponents_Light +style Base_V14_Theme_MaterialComponents_Light_Bridge +style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_V14_Theme_MaterialComponents_Light_Dialog +style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_Theme_MaterialComponents +style Base_V21_Theme_MaterialComponents_Dialog +style Base_V21_Theme_MaterialComponents_Light +style Base_V21_Theme_MaterialComponents_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Base_Widget_Design_TabLayout +style Base_Widget_MaterialComponents_AutoCompleteTextView +style Base_Widget_MaterialComponents_CheckedTextView +style Base_Widget_MaterialComponents_Chip +style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +style Base_Widget_MaterialComponents_PopupMenu +style Base_Widget_MaterialComponents_PopupMenu_ContextMenu +style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Base_Widget_MaterialComponents_PopupMenu_Overflow +style Base_Widget_MaterialComponents_Slider +style Base_Widget_MaterialComponents_Snackbar +style Base_Widget_MaterialComponents_TextInputEditText +style Base_Widget_MaterialComponents_TextInputLayout +style Base_Widget_MaterialComponents_TextView +style CardView +style CardView_Dark +style CardView_Light +style EmptyTheme +style ExoMediaButton +style ExoMediaButton_FastForward +style ExoMediaButton_Next +style ExoMediaButton_Pause +style ExoMediaButton_Play +style ExoMediaButton_Previous +style ExoMediaButton_Rewind +style MaterialAlertDialog_MaterialComponents +style MaterialAlertDialog_MaterialComponents_Body_Text +style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +style MaterialAlertDialog_MaterialComponents_Title_Icon +style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Panel +style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Text +style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_MaterialComponents +style Platform_MaterialComponents_Dialog +style Platform_MaterialComponents_Light +style Platform_MaterialComponents_Light_Dialog +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style ShapeAppearanceOverlay +style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +style ShapeAppearanceOverlay_BottomRightCut +style ShapeAppearanceOverlay_Cut +style ShapeAppearanceOverlay_DifferentCornerSize +style ShapeAppearanceOverlay_MaterialComponents_BottomSheet +style ShapeAppearanceOverlay_MaterialComponents_Chip +style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +style ShapeAppearanceOverlay_TopLeftCut +style ShapeAppearanceOverlay_TopRightDifferentCornerSize +style ShapeAppearance_MaterialComponents +style ShapeAppearance_MaterialComponents_LargeComponent +style ShapeAppearance_MaterialComponents_MediumComponent +style ShapeAppearance_MaterialComponents_SmallComponent +style ShapeAppearance_MaterialComponents_Test +style ShapeAppearance_MaterialComponents_Tooltip +style TestStyleWithLineHeight +style TestStyleWithLineHeightAppearance +style TestStyleWithThemeLineHeightAttribute +style TestStyleWithoutLineHeight +style TestThemeWithLineHeight +style TestThemeWithLineHeightDisabled +style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style Test_Theme_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar_Day +style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +style TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Design_Counter +style TextAppearance_Design_Counter_Overflow +style TextAppearance_Design_Error +style TextAppearance_Design_HelperText +style TextAppearance_Design_Hint +style TextAppearance_Design_Placeholder +style TextAppearance_Design_Prefix +style TextAppearance_Design_Snackbar_Message +style TextAppearance_Design_Suffix +style TextAppearance_Design_Tab +style TextAppearance_MaterialComponents_Badge +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Chip +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_TimePicker_Title +style TextAppearance_MaterialComponents_Tooltip +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlayColorAccentRed +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style ThemeOverlay_Design_TextInputEditText +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_ActionBar_Primary +style ThemeOverlay_MaterialComponents_ActionBar_Surface +style ThemeOverlay_MaterialComponents_AutoCompleteTextView +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_BottomAppBar_Primary +style ThemeOverlay_MaterialComponents_BottomAppBar_Surface +style ThemeOverlay_MaterialComponents_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_MaterialAlertDialog +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +style ThemeOverlay_MaterialComponents_MaterialCalendar +style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +style ThemeOverlay_MaterialComponents_TextInputEditText +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_TimePicker +style ThemeOverlay_MaterialComponents_TimePicker_Display +style ThemeOverlay_MaterialComponents_Toolbar_Primary +style ThemeOverlay_MaterialComponents_Toolbar_Surface +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Empty +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_BottomSheetDialog +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_DayNight +style Theme_MaterialComponents_DayNight_BottomSheetDialog +style Theme_MaterialComponents_DayNight_Bridge +style Theme_MaterialComponents_DayNight_DarkActionBar +style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +style Theme_MaterialComponents_DayNight_Dialog +style Theme_MaterialComponents_DayNight_DialogWhenLarge +style Theme_MaterialComponents_DayNight_Dialog_Alert +style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +style Theme_MaterialComponents_DayNight_Dialog_Bridge +style Theme_MaterialComponents_DayNight_Dialog_FixedSize +style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_DayNight_Dialog_MinWidth +style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_DayNight_NoActionBar +style Theme_MaterialComponents_DayNight_NoActionBar_Bridge +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_Alert_Bridge +style Theme_MaterialComponents_Dialog_Bridge +style Theme_MaterialComponents_Dialog_FixedSize +style Theme_MaterialComponents_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BarSize +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_Alert_Bridge +style Theme_MaterialComponents_Light_Dialog_Bridge +style Theme_MaterialComponents_Light_Dialog_FixedSize +style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light_LargeTouch +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputEditText +style Widget_Design_TextInputLayout +style Widget_MaterialComponents_ActionBar_Primary +style Widget_MaterialComponents_ActionBar_PrimarySurface +style Widget_MaterialComponents_ActionBar_Solid +style Widget_MaterialComponents_ActionBar_Surface +style Widget_MaterialComponents_AppBarLayout_Primary +style Widget_MaterialComponents_AppBarLayout_PrimarySurface +style Widget_MaterialComponents_AppBarLayout_Surface +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style Widget_MaterialComponents_Badge +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomAppBar_PrimarySurface +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomNavigationView_PrimarySurface +style Widget_MaterialComponents_BottomSheet +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_Icon +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_OutlinedButton_Icon +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Flush +style Widget_MaterialComponents_Button_TextButton_Dialog_Icon +style Widget_MaterialComponents_Button_TextButton_Icon +style Widget_MaterialComponents_Button_TextButton_Snackbar +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_Button_UnelevatedButton_Icon +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_CheckedTextView +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_CircularProgressIndicator +style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall +style Widget_MaterialComponents_CircularProgressIndicator_Medium +style Widget_MaterialComponents_CircularProgressIndicator_Small +style Widget_MaterialComponents_CollapsingToolbar +style Widget_MaterialComponents_CompoundButton_CheckBox +style Widget_MaterialComponents_CompoundButton_RadioButton +style Widget_MaterialComponents_CompoundButton_Switch +style Widget_MaterialComponents_ExtendedFloatingActionButton +style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_Light_ActionBar_Solid +style Widget_MaterialComponents_LinearProgressIndicator +style Widget_MaterialComponents_MaterialButtonToggleGroup +style Widget_MaterialComponents_MaterialCalendar +style Widget_MaterialComponents_MaterialCalendar_Day +style Widget_MaterialComponents_MaterialCalendar_DayTextView +style Widget_MaterialComponents_MaterialCalendar_Day_Invalid +style Widget_MaterialComponents_MaterialCalendar_Day_Selected +style Widget_MaterialComponents_MaterialCalendar_Day_Today +style Widget_MaterialComponents_MaterialCalendar_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +style Widget_MaterialComponents_MaterialCalendar_HeaderDivider +style Widget_MaterialComponents_MaterialCalendar_HeaderLayout +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderTitle +style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +style Widget_MaterialComponents_MaterialCalendar_Item +style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +style Widget_MaterialComponents_MaterialCalendar_MonthTextView +style Widget_MaterialComponents_MaterialCalendar_Year +style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +style Widget_MaterialComponents_MaterialCalendar_Year_Selected +style Widget_MaterialComponents_MaterialCalendar_Year_Today +style Widget_MaterialComponents_NavigationRailView +style Widget_MaterialComponents_NavigationRailView_Colored +style Widget_MaterialComponents_NavigationRailView_Colored_Compact +style Widget_MaterialComponents_NavigationRailView_Compact +style Widget_MaterialComponents_NavigationRailView_PrimarySurface +style Widget_MaterialComponents_NavigationView +style Widget_MaterialComponents_PopupMenu +style Widget_MaterialComponents_PopupMenu_ContextMenu +style Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Widget_MaterialComponents_PopupMenu_Overflow +style Widget_MaterialComponents_ProgressIndicator +style Widget_MaterialComponents_ShapeableImageView +style Widget_MaterialComponents_Slider +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_Snackbar_TextView +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TabLayout_PrimarySurface +style Widget_MaterialComponents_TextInputEditText_FilledBox +style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +style Widget_MaterialComponents_TextInputEditText_OutlinedBox +style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextView +style Widget_MaterialComponents_TimePicker +style Widget_MaterialComponents_TimePicker_Button +style Widget_MaterialComponents_TimePicker_Clock +style Widget_MaterialComponents_TimePicker_Display +style Widget_MaterialComponents_TimePicker_Display_TextInputEditText +style Widget_MaterialComponents_TimePicker_ImageButton +style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance +style Widget_MaterialComponents_Toolbar +style Widget_MaterialComponents_Toolbar_Primary +style Widget_MaterialComponents_Toolbar_PrimarySurface +style Widget_MaterialComponents_Toolbar_Surface +style Widget_MaterialComponents_Tooltip +style Widget_Support_CoordinatorLayout +style customHeartHeartRatingBarStyle +style video_popup_toast_anim +style video_style_dialog_progress +style video_vertical_progressBar +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable AspectRatioFrameLayout resize_mode +styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset +styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness +styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets +styleable BottomNavigationView itemHorizontalTranslationEnabled +styleable BottomSheetBehavior_Layout android_elevation android_maxWidth backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay +styleable ButtonBarLayout allowStacking +styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +styleable Carousel carousel_backwardTransition carousel_emptyViewsBehavior carousel_firstView carousel_forwardTransition carousel_infinite carousel_nextState carousel_previousState carousel_touchUpMode carousel_touchUp_dampeningFactor carousel_touchUp_velocityThreshold +styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance android_textColor android_textSize checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding +styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection +styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize +styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor +styleable ClockHandView clockHandColor materialCircleRadius selectorSize +styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable Constraint android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintLayout_Layout android_elevation android_layout_height android_layout_margin android_layout_marginBottom android_layout_marginEnd android_layout_marginHorizontal android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_marginVertical android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_padding android_paddingBottom android_paddingEnd android_paddingLeft android_paddingRight android_paddingStart android_paddingTop android_visibility barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl circularflow_angles circularflow_defaultAngle circularflow_defaultRadius circularflow_radiusInDP circularflow_viewCenter constraintSet constraint_referenced_ids constraint_referenced_tags flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_optimizationLevel layout_wrapBehaviorInParent +styleable ConstraintLayout_ReactiveGuide reactiveGuide_animateChange reactiveGuide_applyToAllConstraintSets reactiveGuide_applyToConstraintSet reactiveGuide_valueId +styleable ConstraintLayout_placeholder content placeholder_emptyVisibility +styleable ConstraintOverride android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBottom_creator layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintRight_creator layout_constraintTag layout_constraintTop_creator layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger motionTarget pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintSet ConstraintRotate android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_pivotX android_pivotY android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionSteps transitionEasing transitionPathRotate +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customReference customStringValue methodName +styleable CustomCircleImageView civ_border_color civ_border_overlay civ_border_width civ_fill_color +styleable CustomRatingBar OtherHeartImg clickable elenmentCount elenmentEmpty elenmentFill elenmentHarf elenmentHeight elenmentPadding elenmentStep elenmentWidth stepSize +styleable DefaultTimeBar ad_marker_color ad_marker_width bar_height buffered_color played_color scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_enabled_size touch_target_height unplayed_color +styleable DiscreteScrollView dsv_orientation +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec +styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink +styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding +styleable FloatingActionButton_Behavior_Layout behavior_autoHide +styleable FlowLayout itemSpacing lineSpacing +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding +styleable Fragment android_id android_name android_tag +styleable FragmentContainerView android_name android_tag +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable ImageFilterView altSrc blendSrc brightness contrast crossfade imagePanX imagePanY imageRotate imageZoom overlay round roundPercent saturation warmth +styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets +styleable KeyAttribute android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transformPivotTarget transitionEasing transitionPathRotate +styleable KeyCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod wavePhase waveShape waveVariesBy +styleable KeyFrame +styleable KeyFramesAcceleration +styleable KeyFramesVelocity +styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing +styleable KeyTimeCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod wavePhase waveShape +styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack viewTransitionOnCross viewTransitionOnNegativeCross viewTransitionOnPositiveCross +styleable Layout android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_orientation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent maxHeight maxWidth minHeight minWidth +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop +styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle +styleable MaterialAutoCompleteTextView android_inputType +styleable MaterialButton android_background android_checkable android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection +styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle +styleable MaterialCalendarItem android_insetBottom android_insetLeft android_insetRight android_insetTop itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor +styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth +styleable MaterialCheckBox buttonTint useMaterialThemeColors +styleable MaterialRadioButton buttonTint useMaterialThemeColors +styleable MaterialShape shapeAppearance shapeAppearanceOverlay +styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight +styleable MaterialTextView android_lineHeight android_textAppearance lineHeight +styleable MaterialTimePicker clockIcon keyboardIcon +styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel +styleable MogoImageView miv_blurRadius miv_borderColor miv_bottomLeftRadius miv_bottomRightRadius miv_failureHolder miv_isBlur miv_overlayImageId miv_placeHolder miv_radius miv_shape miv_shapeBorderWidth miv_topLeftRadius miv_topRightRadius +styleable Motion animateCircleAngleTo animateRelativeTo animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transitionEasing +styleable MotionEffect motionEffect_alpha motionEffect_end motionEffect_move motionEffect_start motionEffect_strict motionEffect_translationX motionEffect_translationY motionEffect_viewTransition +styleable MotionHelper onHide onShow +styleable MotionLabel android_autoSizeTextType android_fontFamily android_gravity android_shadowRadius android_text android_textColor android_textSize android_textStyle android_typeface borderRound borderRoundPercent scaleFromTextSize textBackground textBackgroundPanX textBackgroundPanY textBackgroundRotate textBackgroundZoom textOutlineColor textOutlineThickness textPanX textPanY textureBlurFactor textureEffect textureHeight textureWidth +styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths +styleable MotionScene defaultDuration layoutDuringTransition +styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode +styleable NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable NavigationRailView headerLayout menuGravity +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay +styleable OnClick clickAction targetId +styleable OnSwipe autoCompleteMode dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp rotationCenterId springBoundary springDamping springMass springStiffness springStopThreshold touchAnchorId touchAnchorSide touchRegionId +styleable PlaybackControlView controller_layout_id fastforward_increment rewind_increment show_timeout +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable PropertySet android_alpha android_visibility layout_constraintTag motionProgress visibilityMode +styleable RadialViewGroup materialCircleRadius +styleable RangeSlider minSeparation values +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable RoundLayout roundLayoutRadius +styleable Scale disappearedScale +styleable ScrimInsetsFrameLayout insetForeground +styleable ScrollingViewBehavior_Layout behavior_overlapTop +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight +styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable SimpleExoPlayerView controller_layout_id default_artwork fastforward_increment hide_on_touch player_layout_id resize_mode rewind_increment show_timeout surface_type use_artwork use_controller +styleable Slider android_enabled android_stepSize android_value android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight +styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle +styleable SnackbarLayout actionTextColorAlpha android_maxWidth animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable State android_id constraints +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable StateSet defaultState +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable SwitchMaterial useMaterialThemeColors +styleable TabItem android_icon android_layout android_text +styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable TextEffects android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_text android_textSize android_textStyle android_typeface borderRound borderRoundPercent textFillColor textOutlineColor textOutlineThickness +styleable TextInputEditText textInputLayoutFocusedRectEnabled +styleable TextInputLayout android_enabled android_hint android_maxWidth android_minWidth android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor +styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable Tooltip android_layout_margin android_minHeight android_minWidth android_padding android_text android_textAppearance backgroundTint +styleable Transform android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ transformPivotTarget +styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags +styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewPager2 android_orientation +styleable ViewStubCompat android_id android_inflatedId android_layout +styleable ViewTransition SharedValue SharedValueId android_id clearsTag duration ifTagNotSet ifTagSet motionInterpolator motionTarget onStateTransition pathMotionArc setsTag transitionDisable upDuration viewTransitionMode +styleable download download_bg_line_color download_bg_line_width download_line_color download_line_width download_text_color download_text_size +styleable include constraintSet +styleable play play_bg_line_color play_bg_line_width play_line_color play_line_width +xml standalone_badge +xml standalone_badge_gravity_bottom_end +xml standalone_badge_gravity_bottom_start +xml standalone_badge_gravity_top_start +xml standalone_badge_offset +xml util_code_provider_paths diff --git a/modules/mogo-module-chat/build/intermediates/runtime_library_classes/debug/classes.jar b/modules/mogo-module-chat/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..d16b83e9a4 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libgmecodec.so new file mode 100755 index 0000000000..2a7c3287ff Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libgmesdk.so new file mode 100755 index 0000000000..621fe177c5 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libsilk.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libsilk.so new file mode 100755 index 0000000000..a035119f50 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libtraeimp.so new file mode 100755 index 0000000000..d8d10078ca Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libgmecodec.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libgmecodec.so new file mode 100755 index 0000000000..5cb7622250 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libgmecodec.so differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libgmesdk.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libgmesdk.so new file mode 100755 index 0000000000..c1594e4eca Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libgmesdk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libsilk.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libsilk.so new file mode 100755 index 0000000000..95cc57e160 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libsilk.so differ diff --git a/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libtraeimp.so b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libtraeimp.so new file mode 100755 index 0000000000..a371a58a10 Binary files /dev/null and b/modules/mogo-module-chat/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libtraeimp.so differ diff --git a/modules/mogo-module-chat/build/intermediates/symbols/debug/R.txt b/modules/mogo-module-chat/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..678234f84a --- /dev/null +++ b/modules/mogo-module-chat/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,7082 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int anim design_bottom_sheet_slide_in 0x7f010019 +int anim design_bottom_sheet_slide_out 0x7f01001a +int anim design_snackbar_in 0x7f01001b +int anim design_snackbar_out 0x7f01001c +int anim fragment_fast_out_extra_slow_in 0x7f01001d +int anim mtrl_bottom_sheet_slide_in 0x7f01001e +int anim mtrl_bottom_sheet_slide_out 0x7f01001f +int anim mtrl_card_lowers_interpolator 0x7f010020 +int animator design_appbar_state_list_animator 0x7f020001 +int animator design_fab_hide_motion_spec 0x7f020002 +int animator design_fab_show_motion_spec 0x7f020003 +int animator fragment_close_enter 0x7f020004 +int animator fragment_close_exit 0x7f020005 +int animator fragment_fade_enter 0x7f020006 +int animator fragment_fade_exit 0x7f020007 +int animator fragment_open_enter 0x7f020008 +int animator fragment_open_exit 0x7f020009 +int animator linear_indeterminate_line1_head_interpolator 0x7f02000a +int animator linear_indeterminate_line1_tail_interpolator 0x7f02000b +int animator linear_indeterminate_line2_head_interpolator 0x7f02000c +int animator linear_indeterminate_line2_tail_interpolator 0x7f02000d +int animator mtrl_btn_state_list_anim 0x7f02000e +int animator mtrl_btn_unelevated_state_list_anim 0x7f02000f +int animator mtrl_card_state_list_anim 0x7f020010 +int animator mtrl_chip_state_list_anim 0x7f020011 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020012 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f020013 +int animator mtrl_extended_fab_hide_motion_spec 0x7f020014 +int animator mtrl_extended_fab_show_motion_spec 0x7f020015 +int animator mtrl_extended_fab_state_list_animator 0x7f020016 +int animator mtrl_fab_hide_motion_spec 0x7f020017 +int animator mtrl_fab_show_motion_spec 0x7f020018 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020019 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02001a +int attr ConstraintRotate 0x7f040001 +int attr OtherHeartImg 0x7f040002 +int attr SharedValue 0x7f040003 +int attr SharedValueId 0x7f040004 +int attr actionBarDivider 0x7f040005 +int attr actionBarItemBackground 0x7f040006 +int attr actionBarPopupTheme 0x7f040007 +int attr actionBarSize 0x7f040008 +int attr actionBarSplitStyle 0x7f040009 +int attr actionBarStyle 0x7f04000a +int attr actionBarTabBarStyle 0x7f04000b +int attr actionBarTabStyle 0x7f04000c +int attr actionBarTabTextStyle 0x7f04000d +int attr actionBarTheme 0x7f04000e +int attr actionBarWidgetTheme 0x7f04000f +int attr actionButtonStyle 0x7f040010 +int attr actionDropDownStyle 0x7f040011 +int attr actionLayout 0x7f040012 +int attr actionMenuTextAppearance 0x7f040013 +int attr actionMenuTextColor 0x7f040014 +int attr actionModeBackground 0x7f040015 +int attr actionModeCloseButtonStyle 0x7f040016 +int attr actionModeCloseContentDescription 0x7f040017 +int attr actionModeCloseDrawable 0x7f040018 +int attr actionModeCopyDrawable 0x7f040019 +int attr actionModeCutDrawable 0x7f04001a +int attr actionModeFindDrawable 0x7f04001b +int attr actionModePasteDrawable 0x7f04001c +int attr actionModePopupWindowStyle 0x7f04001d +int attr actionModeSelectAllDrawable 0x7f04001e +int attr actionModeShareDrawable 0x7f04001f +int attr actionModeSplitBackground 0x7f040020 +int attr actionModeStyle 0x7f040021 +int attr actionModeTheme 0x7f040022 +int attr actionModeWebSearchDrawable 0x7f040023 +int attr actionOverflowButtonStyle 0x7f040024 +int attr actionOverflowMenuStyle 0x7f040025 +int attr actionProviderClass 0x7f040026 +int attr actionTextColorAlpha 0x7f040027 +int attr actionViewClass 0x7f040028 +int attr activityChooserViewStyle 0x7f040029 +int attr actualImageResource 0x7f04002a +int attr actualImageScaleType 0x7f04002b +int attr actualImageUri 0x7f04002c +int attr ad_marker_color 0x7f04002d +int attr ad_marker_width 0x7f04002e +int attr alertDialogButtonGroupStyle 0x7f04002f +int attr alertDialogCenterButtons 0x7f040030 +int attr alertDialogStyle 0x7f040031 +int attr alertDialogTheme 0x7f040032 +int attr allowStacking 0x7f040033 +int attr alpha 0x7f040034 +int attr alphabeticModifiers 0x7f040035 +int attr altSrc 0x7f040036 +int attr animateCircleAngleTo 0x7f040037 +int attr animateRelativeTo 0x7f040038 +int attr animate_relativeTo 0x7f040039 +int attr animationMode 0x7f04003a +int attr appBarLayoutStyle 0x7f04003b +int attr applyMotionScene 0x7f04003c +int attr arcMode 0x7f04003d +int attr arrowHeadLength 0x7f04003e +int attr arrowShaftLength 0x7f04003f +int attr attributeName 0x7f040040 +int attr autoCompleteMode 0x7f040041 +int attr autoCompleteTextViewStyle 0x7f040042 +int attr autoSizeMaxTextSize 0x7f040043 +int attr autoSizeMinTextSize 0x7f040044 +int attr autoSizePresetSizes 0x7f040045 +int attr autoSizeStepGranularity 0x7f040046 +int attr autoSizeTextType 0x7f040047 +int attr autoTransition 0x7f040048 +int attr background 0x7f040049 +int attr backgroundColor 0x7f04004a +int attr backgroundImage 0x7f04004b +int attr backgroundInsetBottom 0x7f04004c +int attr backgroundInsetEnd 0x7f04004d +int attr backgroundInsetStart 0x7f04004e +int attr backgroundInsetTop 0x7f04004f +int attr backgroundOverlayColorAlpha 0x7f040050 +int attr backgroundSplit 0x7f040051 +int attr backgroundStacked 0x7f040052 +int attr backgroundTint 0x7f040053 +int attr backgroundTintMode 0x7f040054 +int attr badgeGravity 0x7f040055 +int attr badgeStyle 0x7f040056 +int attr badgeTextColor 0x7f040057 +int attr barLength 0x7f040058 +int attr bar_height 0x7f040059 +int attr barrierAllowsGoneWidgets 0x7f04005a +int attr barrierDirection 0x7f04005b +int attr barrierMargin 0x7f04005c +int attr behavior_autoHide 0x7f04005d +int attr behavior_autoShrink 0x7f04005e +int attr behavior_draggable 0x7f04005f +int attr behavior_expandedOffset 0x7f040060 +int attr behavior_fitToContents 0x7f040061 +int attr behavior_halfExpandedRatio 0x7f040062 +int attr behavior_hideable 0x7f040063 +int attr behavior_overlapTop 0x7f040064 +int attr behavior_peekHeight 0x7f040065 +int attr behavior_saveFlags 0x7f040066 +int attr behavior_skipCollapsed 0x7f040067 +int attr blendSrc 0x7f040068 +int attr borderRound 0x7f040069 +int attr borderRoundPercent 0x7f04006a +int attr borderWidth 0x7f04006b +int attr borderlessButtonStyle 0x7f04006c +int attr bottomAppBarStyle 0x7f04006d +int attr bottomNavigationStyle 0x7f04006e +int attr bottomSheetDialogTheme 0x7f04006f +int attr bottomSheetStyle 0x7f040070 +int attr boxBackgroundColor 0x7f040071 +int attr boxBackgroundMode 0x7f040072 +int attr boxCollapsedPaddingTop 0x7f040073 +int attr boxCornerRadiusBottomEnd 0x7f040074 +int attr boxCornerRadiusBottomStart 0x7f040075 +int attr boxCornerRadiusTopEnd 0x7f040076 +int attr boxCornerRadiusTopStart 0x7f040077 +int attr boxStrokeColor 0x7f040078 +int attr boxStrokeErrorColor 0x7f040079 +int attr boxStrokeWidth 0x7f04007a +int attr boxStrokeWidthFocused 0x7f04007b +int attr brightness 0x7f04007c +int attr buffered_color 0x7f04007d +int attr buttonBarButtonStyle 0x7f04007e +int attr buttonBarNegativeButtonStyle 0x7f04007f +int attr buttonBarNeutralButtonStyle 0x7f040080 +int attr buttonBarPositiveButtonStyle 0x7f040081 +int attr buttonBarStyle 0x7f040082 +int attr buttonCompat 0x7f040083 +int attr buttonGravity 0x7f040084 +int attr buttonIconDimen 0x7f040085 +int attr buttonPanelSideLayout 0x7f040086 +int attr buttonStyle 0x7f040087 +int attr buttonStyleSmall 0x7f040088 +int attr buttonTint 0x7f040089 +int attr buttonTintMode 0x7f04008a +int attr cardBackgroundColor 0x7f04008b +int attr cardCornerRadius 0x7f04008c +int attr cardElevation 0x7f04008d +int attr cardForegroundColor 0x7f04008e +int attr cardMaxElevation 0x7f04008f +int attr cardPreventCornerOverlap 0x7f040090 +int attr cardUseCompatPadding 0x7f040091 +int attr cardViewStyle 0x7f040092 +int attr carousel_backwardTransition 0x7f040093 +int attr carousel_emptyViewsBehavior 0x7f040094 +int attr carousel_firstView 0x7f040095 +int attr carousel_forwardTransition 0x7f040096 +int attr carousel_infinite 0x7f040097 +int attr carousel_nextState 0x7f040098 +int attr carousel_previousState 0x7f040099 +int attr carousel_touchUpMode 0x7f04009a +int attr carousel_touchUp_dampeningFactor 0x7f04009b +int attr carousel_touchUp_velocityThreshold 0x7f04009c +int attr chainUseRtl 0x7f04009d +int attr checkboxStyle 0x7f04009e +int attr checkedButton 0x7f04009f +int attr checkedChip 0x7f0400a0 +int attr checkedIcon 0x7f0400a1 +int attr checkedIconEnabled 0x7f0400a2 +int attr checkedIconMargin 0x7f0400a3 +int attr checkedIconSize 0x7f0400a4 +int attr checkedIconTint 0x7f0400a5 +int attr checkedIconVisible 0x7f0400a6 +int attr checkedTextViewStyle 0x7f0400a7 +int attr chipBackgroundColor 0x7f0400a8 +int attr chipCornerRadius 0x7f0400a9 +int attr chipEndPadding 0x7f0400aa +int attr chipGroupStyle 0x7f0400ab +int attr chipIcon 0x7f0400ac +int attr chipIconEnabled 0x7f0400ad +int attr chipIconSize 0x7f0400ae +int attr chipIconTint 0x7f0400af +int attr chipIconVisible 0x7f0400b0 +int attr chipMinHeight 0x7f0400b1 +int attr chipMinTouchTargetSize 0x7f0400b2 +int attr chipSpacing 0x7f0400b3 +int attr chipSpacingHorizontal 0x7f0400b4 +int attr chipSpacingVertical 0x7f0400b5 +int attr chipStandaloneStyle 0x7f0400b6 +int attr chipStartPadding 0x7f0400b7 +int attr chipStrokeColor 0x7f0400b8 +int attr chipStrokeWidth 0x7f0400b9 +int attr chipStyle 0x7f0400ba +int attr chipSurfaceColor 0x7f0400bb +int attr circleRadius 0x7f0400bc +int attr circularProgressIndicatorStyle 0x7f0400bd +int attr circularflow_angles 0x7f0400be +int attr circularflow_defaultAngle 0x7f0400bf +int attr circularflow_defaultRadius 0x7f0400c0 +int attr circularflow_radiusInDP 0x7f0400c1 +int attr circularflow_viewCenter 0x7f0400c2 +int attr civ_border_color 0x7f0400c3 +int attr civ_border_overlay 0x7f0400c4 +int attr civ_border_width 0x7f0400c5 +int attr civ_fill_color 0x7f0400c6 +int attr clearsTag 0x7f0400c7 +int attr clickAction 0x7f0400c8 +int attr clickable 0x7f0400c9 +int attr clockFaceBackgroundColor 0x7f0400ca +int attr clockHandColor 0x7f0400cb +int attr clockIcon 0x7f0400cc +int attr clockNumberTextColor 0x7f0400cd +int attr closeIcon 0x7f0400ce +int attr closeIconEnabled 0x7f0400cf +int attr closeIconEndPadding 0x7f0400d0 +int attr closeIconSize 0x7f0400d1 +int attr closeIconStartPadding 0x7f0400d2 +int attr closeIconTint 0x7f0400d3 +int attr closeIconVisible 0x7f0400d4 +int attr closeItemLayout 0x7f0400d5 +int attr collapseContentDescription 0x7f0400d6 +int attr collapseIcon 0x7f0400d7 +int attr collapsedSize 0x7f0400d8 +int attr collapsedTitleGravity 0x7f0400d9 +int attr collapsedTitleTextAppearance 0x7f0400da +int attr collapsingToolbarLayoutStyle 0x7f0400db +int attr color 0x7f0400dc +int attr colorAccent 0x7f0400dd +int attr colorBackgroundFloating 0x7f0400de +int attr colorButtonNormal 0x7f0400df +int attr colorControlActivated 0x7f0400e0 +int attr colorControlHighlight 0x7f0400e1 +int attr colorControlNormal 0x7f0400e2 +int attr colorError 0x7f0400e3 +int attr colorOnBackground 0x7f0400e4 +int attr colorOnError 0x7f0400e5 +int attr colorOnPrimary 0x7f0400e6 +int attr colorOnPrimarySurface 0x7f0400e7 +int attr colorOnSecondary 0x7f0400e8 +int attr colorOnSurface 0x7f0400e9 +int attr colorPrimary 0x7f0400ea +int attr colorPrimaryDark 0x7f0400eb +int attr colorPrimarySurface 0x7f0400ec +int attr colorPrimaryVariant 0x7f0400ed +int attr colorSecondary 0x7f0400ee +int attr colorSecondaryVariant 0x7f0400ef +int attr colorSurface 0x7f0400f0 +int attr colorSwitchThumbNormal 0x7f0400f1 +int attr commitIcon 0x7f0400f2 +int attr constraintSet 0x7f0400f3 +int attr constraintSetEnd 0x7f0400f4 +int attr constraintSetStart 0x7f0400f5 +int attr constraint_referenced_ids 0x7f0400f6 +int attr constraint_referenced_tags 0x7f0400f7 +int attr constraints 0x7f0400f8 +int attr content 0x7f0400f9 +int attr contentDescription 0x7f0400fa +int attr contentInsetEnd 0x7f0400fb +int attr contentInsetEndWithActions 0x7f0400fc +int attr contentInsetLeft 0x7f0400fd +int attr contentInsetRight 0x7f0400fe +int attr contentInsetStart 0x7f0400ff +int attr contentInsetStartWithNavigation 0x7f040100 +int attr contentPadding 0x7f040101 +int attr contentPaddingBottom 0x7f040102 +int attr contentPaddingEnd 0x7f040103 +int attr contentPaddingLeft 0x7f040104 +int attr contentPaddingRight 0x7f040105 +int attr contentPaddingStart 0x7f040106 +int attr contentPaddingTop 0x7f040107 +int attr contentScrim 0x7f040108 +int attr contrast 0x7f040109 +int attr controlBackground 0x7f04010a +int attr controller_layout_id 0x7f04010b +int attr coordinatorLayoutStyle 0x7f04010c +int attr cornerFamily 0x7f04010d +int attr cornerFamilyBottomLeft 0x7f04010e +int attr cornerFamilyBottomRight 0x7f04010f +int attr cornerFamilyTopLeft 0x7f040110 +int attr cornerFamilyTopRight 0x7f040111 +int attr cornerRadius 0x7f040112 +int attr cornerSize 0x7f040113 +int attr cornerSizeBottomLeft 0x7f040114 +int attr cornerSizeBottomRight 0x7f040115 +int attr cornerSizeTopLeft 0x7f040116 +int attr cornerSizeTopRight 0x7f040117 +int attr counterEnabled 0x7f040118 +int attr counterMaxLength 0x7f040119 +int attr counterOverflowTextAppearance 0x7f04011a +int attr counterOverflowTextColor 0x7f04011b +int attr counterTextAppearance 0x7f04011c +int attr counterTextColor 0x7f04011d +int attr crossfade 0x7f04011e +int attr currentState 0x7f04011f +int attr curveFit 0x7f040120 +int attr customBoolean 0x7f040121 +int attr customColorDrawableValue 0x7f040122 +int attr customColorValue 0x7f040123 +int attr customDimension 0x7f040124 +int attr customFloatValue 0x7f040125 +int attr customIntegerValue 0x7f040126 +int attr customNavigationLayout 0x7f040127 +int attr customPixelDimension 0x7f040128 +int attr customReference 0x7f040129 +int attr customStringValue 0x7f04012a +int attr dayInvalidStyle 0x7f04012b +int attr daySelectedStyle 0x7f04012c +int attr dayStyle 0x7f04012d +int attr dayTodayStyle 0x7f04012e +int attr defaultDuration 0x7f04012f +int attr defaultQueryHint 0x7f040130 +int attr defaultState 0x7f040131 +int attr default_artwork 0x7f040132 +int attr deltaPolarAngle 0x7f040133 +int attr deltaPolarRadius 0x7f040134 +int attr deriveConstraintsFrom 0x7f040135 +int attr dialogCornerRadius 0x7f040136 +int attr dialogPreferredPadding 0x7f040137 +int attr dialogTheme 0x7f040138 +int attr disappearedScale 0x7f040139 +int attr displayOptions 0x7f04013a +int attr divider 0x7f04013b +int attr dividerHorizontal 0x7f04013c +int attr dividerPadding 0x7f04013d +int attr dividerVertical 0x7f04013e +int attr download_bg_line_color 0x7f04013f +int attr download_bg_line_width 0x7f040140 +int attr download_line_color 0x7f040141 +int attr download_line_width 0x7f040142 +int attr download_text_color 0x7f040143 +int attr download_text_size 0x7f040144 +int attr dragDirection 0x7f040145 +int attr dragScale 0x7f040146 +int attr dragThreshold 0x7f040147 +int attr drawPath 0x7f040148 +int attr drawableBottomCompat 0x7f040149 +int attr drawableEndCompat 0x7f04014a +int attr drawableLeftCompat 0x7f04014b +int attr drawableRightCompat 0x7f04014c +int attr drawableSize 0x7f04014d +int attr drawableStartCompat 0x7f04014e +int attr drawableTint 0x7f04014f +int attr drawableTintMode 0x7f040150 +int attr drawableTopCompat 0x7f040151 +int attr drawerArrowStyle 0x7f040152 +int attr dropDownListViewStyle 0x7f040153 +int attr dropdownListPreferredItemHeight 0x7f040154 +int attr dsv_orientation 0x7f040155 +int attr duration 0x7f040156 +int attr editTextBackground 0x7f040157 +int attr editTextColor 0x7f040158 +int attr editTextStyle 0x7f040159 +int attr elenmentCount 0x7f04015a +int attr elenmentEmpty 0x7f04015b +int attr elenmentFill 0x7f04015c +int attr elenmentHarf 0x7f04015d +int attr elenmentHeight 0x7f04015e +int attr elenmentPadding 0x7f04015f +int attr elenmentStep 0x7f040160 +int attr elenmentWidth 0x7f040161 +int attr elevation 0x7f040162 +int attr elevationOverlayColor 0x7f040163 +int attr elevationOverlayEnabled 0x7f040164 +int attr enableEdgeToEdge 0x7f040165 +int attr endIconCheckable 0x7f040166 +int attr endIconContentDescription 0x7f040167 +int attr endIconDrawable 0x7f040168 +int attr endIconMode 0x7f040169 +int attr endIconTint 0x7f04016a +int attr endIconTintMode 0x7f04016b +int attr enforceMaterialTheme 0x7f04016c +int attr enforceTextAppearance 0x7f04016d +int attr ensureMinTouchTargetSize 0x7f04016e +int attr errorContentDescription 0x7f04016f +int attr errorEnabled 0x7f040170 +int attr errorIconDrawable 0x7f040171 +int attr errorIconTint 0x7f040172 +int attr errorIconTintMode 0x7f040173 +int attr errorTextAppearance 0x7f040174 +int attr errorTextColor 0x7f040175 +int attr expandActivityOverflowButtonDrawable 0x7f040176 +int attr expanded 0x7f040177 +int attr expandedHintEnabled 0x7f040178 +int attr expandedTitleGravity 0x7f040179 +int attr expandedTitleMargin 0x7f04017a +int attr expandedTitleMarginBottom 0x7f04017b +int attr expandedTitleMarginEnd 0x7f04017c +int attr expandedTitleMarginStart 0x7f04017d +int attr expandedTitleMarginTop 0x7f04017e +int attr expandedTitleTextAppearance 0x7f04017f +int attr extendMotionSpec 0x7f040180 +int attr extendedFloatingActionButtonStyle 0x7f040181 +int attr extraMultilineHeightEnabled 0x7f040182 +int attr fabAlignmentMode 0x7f040183 +int attr fabAnimationMode 0x7f040184 +int attr fabCradleMargin 0x7f040185 +int attr fabCradleRoundedCornerRadius 0x7f040186 +int attr fabCradleVerticalOffset 0x7f040187 +int attr fabCustomSize 0x7f040188 +int attr fabSize 0x7f040189 +int attr fadeDuration 0x7f04018a +int attr failureImage 0x7f04018b +int attr failureImageScaleType 0x7f04018c +int attr fastScrollEnabled 0x7f04018d +int attr fastScrollHorizontalThumbDrawable 0x7f04018e +int attr fastScrollHorizontalTrackDrawable 0x7f04018f +int attr fastScrollVerticalThumbDrawable 0x7f040190 +int attr fastScrollVerticalTrackDrawable 0x7f040191 +int attr fastforward_increment 0x7f040192 +int attr firstBaselineToTopHeight 0x7f040193 +int attr floatingActionButtonStyle 0x7f040194 +int attr flow_firstHorizontalBias 0x7f040195 +int attr flow_firstHorizontalStyle 0x7f040196 +int attr flow_firstVerticalBias 0x7f040197 +int attr flow_firstVerticalStyle 0x7f040198 +int attr flow_horizontalAlign 0x7f040199 +int attr flow_horizontalBias 0x7f04019a +int attr flow_horizontalGap 0x7f04019b +int attr flow_horizontalStyle 0x7f04019c +int attr flow_lastHorizontalBias 0x7f04019d +int attr flow_lastHorizontalStyle 0x7f04019e +int attr flow_lastVerticalBias 0x7f04019f +int attr flow_lastVerticalStyle 0x7f0401a0 +int attr flow_maxElementsWrap 0x7f0401a1 +int attr flow_padding 0x7f0401a2 +int attr flow_verticalAlign 0x7f0401a3 +int attr flow_verticalBias 0x7f0401a4 +int attr flow_verticalGap 0x7f0401a5 +int attr flow_verticalStyle 0x7f0401a6 +int attr flow_wrapMode 0x7f0401a7 +int attr font 0x7f0401a8 +int attr fontFamily 0x7f0401a9 +int attr fontProviderAuthority 0x7f0401aa +int attr fontProviderCerts 0x7f0401ab +int attr fontProviderFetchStrategy 0x7f0401ac +int attr fontProviderFetchTimeout 0x7f0401ad +int attr fontProviderPackage 0x7f0401ae +int attr fontProviderQuery 0x7f0401af +int attr fontProviderSystemFontFamily 0x7f0401b0 +int attr fontStyle 0x7f0401b1 +int attr fontVariationSettings 0x7f0401b2 +int attr fontWeight 0x7f0401b3 +int attr forceApplySystemWindowInsetTop 0x7f0401b4 +int attr foregroundInsidePadding 0x7f0401b5 +int attr framePosition 0x7f0401b6 +int attr gapBetweenBars 0x7f0401b7 +int attr gestureInsetBottomIgnored 0x7f0401b8 +int attr goIcon 0x7f0401b9 +int attr haloColor 0x7f0401ba +int attr haloRadius 0x7f0401bb +int attr headerLayout 0x7f0401bc +int attr height 0x7f0401bd +int attr helperText 0x7f0401be +int attr helperTextEnabled 0x7f0401bf +int attr helperTextTextAppearance 0x7f0401c0 +int attr helperTextTextColor 0x7f0401c1 +int attr hideAnimationBehavior 0x7f0401c2 +int attr hideMotionSpec 0x7f0401c3 +int attr hideOnContentScroll 0x7f0401c4 +int attr hideOnScroll 0x7f0401c5 +int attr hide_on_touch 0x7f0401c6 +int attr hintAnimationEnabled 0x7f0401c7 +int attr hintEnabled 0x7f0401c8 +int attr hintTextAppearance 0x7f0401c9 +int attr hintTextColor 0x7f0401ca +int attr homeAsUpIndicator 0x7f0401cb +int attr homeLayout 0x7f0401cc +int attr horizontalOffset 0x7f0401cd +int attr hoveredFocusedTranslationZ 0x7f0401ce +int attr icon 0x7f0401cf +int attr iconEndPadding 0x7f0401d0 +int attr iconGravity 0x7f0401d1 +int attr iconPadding 0x7f0401d2 +int attr iconSize 0x7f0401d3 +int attr iconStartPadding 0x7f0401d4 +int attr iconTint 0x7f0401d5 +int attr iconTintMode 0x7f0401d6 +int attr iconifiedByDefault 0x7f0401d7 +int attr ifTagNotSet 0x7f0401d8 +int attr ifTagSet 0x7f0401d9 +int attr imageButtonStyle 0x7f0401da +int attr imagePanX 0x7f0401db +int attr imagePanY 0x7f0401dc +int attr imageRotate 0x7f0401dd +int attr imageZoom 0x7f0401de +int attr indeterminateAnimationType 0x7f0401df +int attr indeterminateProgressStyle 0x7f0401e0 +int attr indicatorColor 0x7f0401e1 +int attr indicatorDirectionCircular 0x7f0401e2 +int attr indicatorDirectionLinear 0x7f0401e3 +int attr indicatorInset 0x7f0401e4 +int attr indicatorSize 0x7f0401e5 +int attr initialActivityCount 0x7f0401e6 +int attr insetForeground 0x7f0401e7 +int attr isLightTheme 0x7f0401e8 +int attr isMaterialTheme 0x7f0401e9 +int attr itemBackground 0x7f0401ea +int attr itemFillColor 0x7f0401eb +int attr itemHorizontalPadding 0x7f0401ec +int attr itemHorizontalTranslationEnabled 0x7f0401ed +int attr itemIconPadding 0x7f0401ee +int attr itemIconSize 0x7f0401ef +int attr itemIconTint 0x7f0401f0 +int attr itemMaxLines 0x7f0401f1 +int attr itemPadding 0x7f0401f2 +int attr itemRippleColor 0x7f0401f3 +int attr itemShapeAppearance 0x7f0401f4 +int attr itemShapeAppearanceOverlay 0x7f0401f5 +int attr itemShapeFillColor 0x7f0401f6 +int attr itemShapeInsetBottom 0x7f0401f7 +int attr itemShapeInsetEnd 0x7f0401f8 +int attr itemShapeInsetStart 0x7f0401f9 +int attr itemShapeInsetTop 0x7f0401fa +int attr itemSpacing 0x7f0401fb +int attr itemStrokeColor 0x7f0401fc +int attr itemStrokeWidth 0x7f0401fd +int attr itemTextAppearance 0x7f0401fe +int attr itemTextAppearanceActive 0x7f0401ff +int attr itemTextAppearanceInactive 0x7f040200 +int attr itemTextColor 0x7f040201 +int attr keyPositionType 0x7f040202 +int attr keyboardIcon 0x7f040203 +int attr keylines 0x7f040204 +int attr labelBehavior 0x7f040205 +int attr labelStyle 0x7f040206 +int attr labelVisibilityMode 0x7f040207 +int attr lastBaselineToBottomHeight 0x7f040208 +int attr layout 0x7f040209 +int attr layoutDescription 0x7f04020a +int attr layoutDuringTransition 0x7f04020b +int attr layoutManager 0x7f04020c +int attr layout_anchor 0x7f04020d +int attr layout_anchorGravity 0x7f04020e +int attr layout_behavior 0x7f04020f +int attr layout_collapseMode 0x7f040210 +int attr layout_collapseParallaxMultiplier 0x7f040211 +int attr layout_constrainedHeight 0x7f040212 +int attr layout_constrainedWidth 0x7f040213 +int attr layout_constraintBaseline_creator 0x7f040214 +int attr layout_constraintBaseline_toBaselineOf 0x7f040215 +int attr layout_constraintBaseline_toBottomOf 0x7f040216 +int attr layout_constraintBaseline_toTopOf 0x7f040217 +int attr layout_constraintBottom_creator 0x7f040218 +int attr layout_constraintBottom_toBottomOf 0x7f040219 +int attr layout_constraintBottom_toTopOf 0x7f04021a +int attr layout_constraintCircle 0x7f04021b +int attr layout_constraintCircleAngle 0x7f04021c +int attr layout_constraintCircleRadius 0x7f04021d +int attr layout_constraintDimensionRatio 0x7f04021e +int attr layout_constraintEnd_toEndOf 0x7f04021f +int attr layout_constraintEnd_toStartOf 0x7f040220 +int attr layout_constraintGuide_begin 0x7f040221 +int attr layout_constraintGuide_end 0x7f040222 +int attr layout_constraintGuide_percent 0x7f040223 +int attr layout_constraintHeight 0x7f040224 +int attr layout_constraintHeight_default 0x7f040225 +int attr layout_constraintHeight_max 0x7f040226 +int attr layout_constraintHeight_min 0x7f040227 +int attr layout_constraintHeight_percent 0x7f040228 +int attr layout_constraintHorizontal_bias 0x7f040229 +int attr layout_constraintHorizontal_chainStyle 0x7f04022a +int attr layout_constraintHorizontal_weight 0x7f04022b +int attr layout_constraintLeft_creator 0x7f04022c +int attr layout_constraintLeft_toLeftOf 0x7f04022d +int attr layout_constraintLeft_toRightOf 0x7f04022e +int attr layout_constraintRight_creator 0x7f04022f +int attr layout_constraintRight_toLeftOf 0x7f040230 +int attr layout_constraintRight_toRightOf 0x7f040231 +int attr layout_constraintStart_toEndOf 0x7f040232 +int attr layout_constraintStart_toStartOf 0x7f040233 +int attr layout_constraintTag 0x7f040234 +int attr layout_constraintTop_creator 0x7f040235 +int attr layout_constraintTop_toBottomOf 0x7f040236 +int attr layout_constraintTop_toTopOf 0x7f040237 +int attr layout_constraintVertical_bias 0x7f040238 +int attr layout_constraintVertical_chainStyle 0x7f040239 +int attr layout_constraintVertical_weight 0x7f04023a +int attr layout_constraintWidth 0x7f04023b +int attr layout_constraintWidth_default 0x7f04023c +int attr layout_constraintWidth_max 0x7f04023d +int attr layout_constraintWidth_min 0x7f04023e +int attr layout_constraintWidth_percent 0x7f04023f +int attr layout_dodgeInsetEdges 0x7f040240 +int attr layout_editor_absoluteX 0x7f040241 +int attr layout_editor_absoluteY 0x7f040242 +int attr layout_goneMarginBaseline 0x7f040243 +int attr layout_goneMarginBottom 0x7f040244 +int attr layout_goneMarginEnd 0x7f040245 +int attr layout_goneMarginLeft 0x7f040246 +int attr layout_goneMarginRight 0x7f040247 +int attr layout_goneMarginStart 0x7f040248 +int attr layout_goneMarginTop 0x7f040249 +int attr layout_insetEdge 0x7f04024a +int attr layout_keyline 0x7f04024b +int attr layout_marginBaseline 0x7f04024c +int attr layout_optimizationLevel 0x7f04024d +int attr layout_scrollFlags 0x7f04024e +int attr layout_scrollInterpolator 0x7f04024f +int attr layout_wrapBehaviorInParent 0x7f040250 +int attr liftOnScroll 0x7f040251 +int attr liftOnScrollTargetViewId 0x7f040252 +int attr limitBoundsTo 0x7f040253 +int attr lineHeight 0x7f040254 +int attr lineSpacing 0x7f040255 +int attr linearProgressIndicatorStyle 0x7f040256 +int attr listChoiceBackgroundIndicator 0x7f040257 +int attr listChoiceIndicatorMultipleAnimated 0x7f040258 +int attr listChoiceIndicatorSingleAnimated 0x7f040259 +int attr listDividerAlertDialog 0x7f04025a +int attr listItemLayout 0x7f04025b +int attr listLayout 0x7f04025c +int attr listMenuViewStyle 0x7f04025d +int attr listPopupWindowStyle 0x7f04025e +int attr listPreferredItemHeight 0x7f04025f +int attr listPreferredItemHeightLarge 0x7f040260 +int attr listPreferredItemHeightSmall 0x7f040261 +int attr listPreferredItemPaddingEnd 0x7f040262 +int attr listPreferredItemPaddingLeft 0x7f040263 +int attr listPreferredItemPaddingRight 0x7f040264 +int attr listPreferredItemPaddingStart 0x7f040265 +int attr logo 0x7f040266 +int attr logoDescription 0x7f040267 +int attr materialAlertDialogBodyTextStyle 0x7f040268 +int attr materialAlertDialogTheme 0x7f040269 +int attr materialAlertDialogTitleIconStyle 0x7f04026a +int attr materialAlertDialogTitlePanelStyle 0x7f04026b +int attr materialAlertDialogTitleTextStyle 0x7f04026c +int attr materialButtonOutlinedStyle 0x7f04026d +int attr materialButtonStyle 0x7f04026e +int attr materialButtonToggleGroupStyle 0x7f04026f +int attr materialCalendarDay 0x7f040270 +int attr materialCalendarFullscreenTheme 0x7f040271 +int attr materialCalendarHeaderCancelButton 0x7f040272 +int attr materialCalendarHeaderConfirmButton 0x7f040273 +int attr materialCalendarHeaderDivider 0x7f040274 +int attr materialCalendarHeaderLayout 0x7f040275 +int attr materialCalendarHeaderSelection 0x7f040276 +int attr materialCalendarHeaderTitle 0x7f040277 +int attr materialCalendarHeaderToggleButton 0x7f040278 +int attr materialCalendarMonth 0x7f040279 +int attr materialCalendarMonthNavigationButton 0x7f04027a +int attr materialCalendarStyle 0x7f04027b +int attr materialCalendarTheme 0x7f04027c +int attr materialCalendarYearNavigationButton 0x7f04027d +int attr materialCardViewStyle 0x7f04027e +int attr materialCircleRadius 0x7f04027f +int attr materialClockStyle 0x7f040280 +int attr materialThemeOverlay 0x7f040281 +int attr materialTimePickerStyle 0x7f040282 +int attr materialTimePickerTheme 0x7f040283 +int attr maxAcceleration 0x7f040284 +int attr maxActionInlineWidth 0x7f040285 +int attr maxButtonHeight 0x7f040286 +int attr maxCharacterCount 0x7f040287 +int attr maxHeight 0x7f040288 +int attr maxImageSize 0x7f040289 +int attr maxLines 0x7f04028a +int attr maxVelocity 0x7f04028b +int attr maxWidth 0x7f04028c +int attr measureWithLargestChild 0x7f04028d +int attr menu 0x7f04028e +int attr menuGravity 0x7f04028f +int attr methodName 0x7f040290 +int attr minHeight 0x7f040291 +int attr minHideDelay 0x7f040292 +int attr minSeparation 0x7f040293 +int attr minTouchTargetSize 0x7f040294 +int attr minWidth 0x7f040295 +int attr miv_blurRadius 0x7f040296 +int attr miv_borderColor 0x7f040297 +int attr miv_bottomLeftRadius 0x7f040298 +int attr miv_bottomRightRadius 0x7f040299 +int attr miv_failureHolder 0x7f04029a +int attr miv_isBlur 0x7f04029b +int attr miv_overlayImageId 0x7f04029c +int attr miv_placeHolder 0x7f04029d +int attr miv_radius 0x7f04029e +int attr miv_shape 0x7f04029f +int attr miv_shapeBorderWidth 0x7f0402a0 +int attr miv_topLeftRadius 0x7f0402a1 +int attr miv_topRightRadius 0x7f0402a2 +int attr mock_diagonalsColor 0x7f0402a3 +int attr mock_label 0x7f0402a4 +int attr mock_labelBackgroundColor 0x7f0402a5 +int attr mock_labelColor 0x7f0402a6 +int attr mock_showDiagonals 0x7f0402a7 +int attr mock_showLabel 0x7f0402a8 +int attr motionDebug 0x7f0402a9 +int attr motionDurationLong1 0x7f0402aa +int attr motionDurationLong2 0x7f0402ab +int attr motionDurationMedium1 0x7f0402ac +int attr motionDurationMedium2 0x7f0402ad +int attr motionDurationShort1 0x7f0402ae +int attr motionDurationShort2 0x7f0402af +int attr motionEasingAccelerated 0x7f0402b0 +int attr motionEasingDecelerated 0x7f0402b1 +int attr motionEasingEmphasized 0x7f0402b2 +int attr motionEasingLinear 0x7f0402b3 +int attr motionEasingStandard 0x7f0402b4 +int attr motionEffect_alpha 0x7f0402b5 +int attr motionEffect_end 0x7f0402b6 +int attr motionEffect_move 0x7f0402b7 +int attr motionEffect_start 0x7f0402b8 +int attr motionEffect_strict 0x7f0402b9 +int attr motionEffect_translationX 0x7f0402ba +int attr motionEffect_translationY 0x7f0402bb +int attr motionEffect_viewTransition 0x7f0402bc +int attr motionInterpolator 0x7f0402bd +int attr motionPath 0x7f0402be +int attr motionPathRotate 0x7f0402bf +int attr motionProgress 0x7f0402c0 +int attr motionStagger 0x7f0402c1 +int attr motionTarget 0x7f0402c2 +int attr motion_postLayoutCollision 0x7f0402c3 +int attr motion_triggerOnCollision 0x7f0402c4 +int attr moveWhenScrollAtTop 0x7f0402c5 +int attr multiChoiceItemLayout 0x7f0402c6 +int attr navigationContentDescription 0x7f0402c7 +int attr navigationIcon 0x7f0402c8 +int attr navigationIconTint 0x7f0402c9 +int attr navigationMode 0x7f0402ca +int attr navigationRailStyle 0x7f0402cb +int attr navigationViewStyle 0x7f0402cc +int attr nestedScrollFlags 0x7f0402cd +int attr nestedScrollable 0x7f0402ce +int attr number 0x7f0402cf +int attr numericModifiers 0x7f0402d0 +int attr onCross 0x7f0402d1 +int attr onHide 0x7f0402d2 +int attr onNegativeCross 0x7f0402d3 +int attr onPositiveCross 0x7f0402d4 +int attr onShow 0x7f0402d5 +int attr onStateTransition 0x7f0402d6 +int attr onTouchUp 0x7f0402d7 +int attr overlapAnchor 0x7f0402d8 +int attr overlay 0x7f0402d9 +int attr overlayImage 0x7f0402da +int attr paddingBottomNoButtons 0x7f0402db +int attr paddingBottomSystemWindowInsets 0x7f0402dc +int attr paddingEnd 0x7f0402dd +int attr paddingLeftSystemWindowInsets 0x7f0402de +int attr paddingRightSystemWindowInsets 0x7f0402df +int attr paddingStart 0x7f0402e0 +int attr paddingTopNoTitle 0x7f0402e1 +int attr paddingTopSystemWindowInsets 0x7f0402e2 +int attr panelBackground 0x7f0402e3 +int attr panelMenuListTheme 0x7f0402e4 +int attr panelMenuListWidth 0x7f0402e5 +int attr passwordToggleContentDescription 0x7f0402e6 +int attr passwordToggleDrawable 0x7f0402e7 +int attr passwordToggleEnabled 0x7f0402e8 +int attr passwordToggleTint 0x7f0402e9 +int attr passwordToggleTintMode 0x7f0402ea +int attr pathMotionArc 0x7f0402eb +int attr path_percent 0x7f0402ec +int attr percentHeight 0x7f0402ed +int attr percentWidth 0x7f0402ee +int attr percentX 0x7f0402ef +int attr percentY 0x7f0402f0 +int attr perpendicularPath_percent 0x7f0402f1 +int attr pivotAnchor 0x7f0402f2 +int attr placeholderImage 0x7f0402f3 +int attr placeholderImageScaleType 0x7f0402f4 +int attr placeholderText 0x7f0402f5 +int attr placeholderTextAppearance 0x7f0402f6 +int attr placeholderTextColor 0x7f0402f7 +int attr placeholder_emptyVisibility 0x7f0402f8 +int attr play_bg_line_color 0x7f0402f9 +int attr play_bg_line_width 0x7f0402fa +int attr play_line_color 0x7f0402fb +int attr play_line_width 0x7f0402fc +int attr played_color 0x7f0402fd +int attr player_layout_id 0x7f0402fe +int attr polarRelativeTo 0x7f0402ff +int attr popupMenuBackground 0x7f040300 +int attr popupMenuStyle 0x7f040301 +int attr popupTheme 0x7f040302 +int attr popupWindowStyle 0x7f040303 +int attr prefixText 0x7f040304 +int attr prefixTextAppearance 0x7f040305 +int attr prefixTextColor 0x7f040306 +int attr preserveIconSpacing 0x7f040307 +int attr pressedStateOverlayImage 0x7f040308 +int attr pressedTranslationZ 0x7f040309 +int attr progressBarAutoRotateInterval 0x7f04030a +int attr progressBarImage 0x7f04030b +int attr progressBarImageScaleType 0x7f04030c +int attr progressBarPadding 0x7f04030d +int attr progressBarStyle 0x7f04030e +int attr quantizeMotionInterpolator 0x7f04030f +int attr quantizeMotionPhase 0x7f040310 +int attr quantizeMotionSteps 0x7f040311 +int attr queryBackground 0x7f040312 +int attr queryHint 0x7f040313 +int attr radioButtonStyle 0x7f040314 +int attr rangeFillColor 0x7f040315 +int attr ratingBarStyle 0x7f040316 +int attr ratingBarStyleIndicator 0x7f040317 +int attr ratingBarStyleSmall 0x7f040318 +int attr reactiveGuide_animateChange 0x7f040319 +int attr reactiveGuide_applyToAllConstraintSets 0x7f04031a +int attr reactiveGuide_applyToConstraintSet 0x7f04031b +int attr reactiveGuide_valueId 0x7f04031c +int attr recyclerViewStyle 0x7f04031d +int attr region_heightLessThan 0x7f04031e +int attr region_heightMoreThan 0x7f04031f +int attr region_widthLessThan 0x7f040320 +int attr region_widthMoreThan 0x7f040321 +int attr resize_mode 0x7f040322 +int attr retryImage 0x7f040323 +int attr retryImageScaleType 0x7f040324 +int attr reverseLayout 0x7f040325 +int attr rewind_increment 0x7f040326 +int attr rippleColor 0x7f040327 +int attr rotationCenterId 0x7f040328 +int attr round 0x7f040329 +int attr roundAsCircle 0x7f04032a +int attr roundBottomEnd 0x7f04032b +int attr roundBottomLeft 0x7f04032c +int attr roundBottomRight 0x7f04032d +int attr roundBottomStart 0x7f04032e +int attr roundLayoutRadius 0x7f04032f +int attr roundPercent 0x7f040330 +int attr roundTopEnd 0x7f040331 +int attr roundTopLeft 0x7f040332 +int attr roundTopRight 0x7f040333 +int attr roundTopStart 0x7f040334 +int attr roundWithOverlayColor 0x7f040335 +int attr roundedCornerRadius 0x7f040336 +int attr roundingBorderColor 0x7f040337 +int attr roundingBorderPadding 0x7f040338 +int attr roundingBorderWidth 0x7f040339 +int attr saturation 0x7f04033a +int attr scaleFromTextSize 0x7f04033b +int attr scrimAnimationDuration 0x7f04033c +int attr scrimBackground 0x7f04033d +int attr scrimVisibleHeightTrigger 0x7f04033e +int attr scrubber_color 0x7f04033f +int attr scrubber_disabled_size 0x7f040340 +int attr scrubber_dragged_size 0x7f040341 +int attr scrubber_enabled_size 0x7f040342 +int attr searchHintIcon 0x7f040343 +int attr searchIcon 0x7f040344 +int attr searchViewStyle 0x7f040345 +int attr seekBarStyle 0x7f040346 +int attr selectableItemBackground 0x7f040347 +int attr selectableItemBackgroundBorderless 0x7f040348 +int attr selectionRequired 0x7f040349 +int attr selectorSize 0x7f04034a +int attr setsTag 0x7f04034b +int attr shapeAppearance 0x7f04034c +int attr shapeAppearanceLargeComponent 0x7f04034d +int attr shapeAppearanceMediumComponent 0x7f04034e +int attr shapeAppearanceOverlay 0x7f04034f +int attr shapeAppearanceSmallComponent 0x7f040350 +int attr showAnimationBehavior 0x7f040351 +int attr showAsAction 0x7f040352 +int attr showDelay 0x7f040353 +int attr showDividers 0x7f040354 +int attr showMotionSpec 0x7f040355 +int attr showPaths 0x7f040356 +int attr showText 0x7f040357 +int attr showTitle 0x7f040358 +int attr show_timeout 0x7f040359 +int attr shrinkMotionSpec 0x7f04035a +int attr singleChoiceItemLayout 0x7f04035b +int attr singleLine 0x7f04035c +int attr singleSelection 0x7f04035d +int attr sizePercent 0x7f04035e +int attr sliderStyle 0x7f04035f +int attr snackbarButtonStyle 0x7f040360 +int attr snackbarStyle 0x7f040361 +int attr snackbarTextViewStyle 0x7f040362 +int attr spanCount 0x7f040363 +int attr spinBars 0x7f040364 +int attr spinnerDropDownItemStyle 0x7f040365 +int attr spinnerStyle 0x7f040366 +int attr splitTrack 0x7f040367 +int attr springBoundary 0x7f040368 +int attr springDamping 0x7f040369 +int attr springMass 0x7f04036a +int attr springStiffness 0x7f04036b +int attr springStopThreshold 0x7f04036c +int attr srcCompat 0x7f04036d +int attr stackFromEnd 0x7f04036e +int attr staggered 0x7f04036f +int attr startIconCheckable 0x7f040370 +int attr startIconContentDescription 0x7f040371 +int attr startIconDrawable 0x7f040372 +int attr startIconTint 0x7f040373 +int attr startIconTintMode 0x7f040374 +int attr state_above_anchor 0x7f040375 +int attr state_collapsed 0x7f040376 +int attr state_collapsible 0x7f040377 +int attr state_dragged 0x7f040378 +int attr state_liftable 0x7f040379 +int attr state_lifted 0x7f04037a +int attr statusBarBackground 0x7f04037b +int attr statusBarForeground 0x7f04037c +int attr statusBarScrim 0x7f04037d +int attr stepSize 0x7f04037e +int attr strokeColor 0x7f04037f +int attr strokeWidth 0x7f040380 +int attr subMenuArrow 0x7f040381 +int attr submitBackground 0x7f040382 +int attr subtitle 0x7f040383 +int attr subtitleCentered 0x7f040384 +int attr subtitleTextAppearance 0x7f040385 +int attr subtitleTextColor 0x7f040386 +int attr subtitleTextStyle 0x7f040387 +int attr suffixText 0x7f040388 +int attr suffixTextAppearance 0x7f040389 +int attr suffixTextColor 0x7f04038a +int attr suggestionRowLayout 0x7f04038b +int attr surface_type 0x7f04038c +int attr switchMinWidth 0x7f04038d +int attr switchPadding 0x7f04038e +int attr switchStyle 0x7f04038f +int attr switchTextAppearance 0x7f040390 +int attr tabBackground 0x7f040391 +int attr tabContentStart 0x7f040392 +int attr tabGravity 0x7f040393 +int attr tabIconTint 0x7f040394 +int attr tabIconTintMode 0x7f040395 +int attr tabIndicator 0x7f040396 +int attr tabIndicatorAnimationDuration 0x7f040397 +int attr tabIndicatorAnimationMode 0x7f040398 +int attr tabIndicatorColor 0x7f040399 +int attr tabIndicatorFullWidth 0x7f04039a +int attr tabIndicatorGravity 0x7f04039b +int attr tabIndicatorHeight 0x7f04039c +int attr tabInlineLabel 0x7f04039d +int attr tabMaxWidth 0x7f04039e +int attr tabMinWidth 0x7f04039f +int attr tabMode 0x7f0403a0 +int attr tabPadding 0x7f0403a1 +int attr tabPaddingBottom 0x7f0403a2 +int attr tabPaddingEnd 0x7f0403a3 +int attr tabPaddingStart 0x7f0403a4 +int attr tabPaddingTop 0x7f0403a5 +int attr tabRippleColor 0x7f0403a6 +int attr tabSelectedTextColor 0x7f0403a7 +int attr tabStyle 0x7f0403a8 +int attr tabTextAppearance 0x7f0403a9 +int attr tabTextColor 0x7f0403aa +int attr tabUnboundedRipple 0x7f0403ab +int attr targetId 0x7f0403ac +int attr telltales_tailColor 0x7f0403ad +int attr telltales_tailScale 0x7f0403ae +int attr telltales_velocityMode 0x7f0403af +int attr textAllCaps 0x7f0403b0 +int attr textAppearanceBody1 0x7f0403b1 +int attr textAppearanceBody2 0x7f0403b2 +int attr textAppearanceButton 0x7f0403b3 +int attr textAppearanceCaption 0x7f0403b4 +int attr textAppearanceHeadline1 0x7f0403b5 +int attr textAppearanceHeadline2 0x7f0403b6 +int attr textAppearanceHeadline3 0x7f0403b7 +int attr textAppearanceHeadline4 0x7f0403b8 +int attr textAppearanceHeadline5 0x7f0403b9 +int attr textAppearanceHeadline6 0x7f0403ba +int attr textAppearanceLargePopupMenu 0x7f0403bb +int attr textAppearanceLineHeightEnabled 0x7f0403bc +int attr textAppearanceListItem 0x7f0403bd +int attr textAppearanceListItemSecondary 0x7f0403be +int attr textAppearanceListItemSmall 0x7f0403bf +int attr textAppearanceOverline 0x7f0403c0 +int attr textAppearancePopupMenuHeader 0x7f0403c1 +int attr textAppearanceSearchResultSubtitle 0x7f0403c2 +int attr textAppearanceSearchResultTitle 0x7f0403c3 +int attr textAppearanceSmallPopupMenu 0x7f0403c4 +int attr textAppearanceSubtitle1 0x7f0403c5 +int attr textAppearanceSubtitle2 0x7f0403c6 +int attr textBackground 0x7f0403c7 +int attr textBackgroundPanX 0x7f0403c8 +int attr textBackgroundPanY 0x7f0403c9 +int attr textBackgroundRotate 0x7f0403ca +int attr textBackgroundZoom 0x7f0403cb +int attr textColorAlertDialogListItem 0x7f0403cc +int attr textColorSearchUrl 0x7f0403cd +int attr textEndPadding 0x7f0403ce +int attr textFillColor 0x7f0403cf +int attr textInputLayoutFocusedRectEnabled 0x7f0403d0 +int attr textInputStyle 0x7f0403d1 +int attr textLocale 0x7f0403d2 +int attr textOutlineColor 0x7f0403d3 +int attr textOutlineThickness 0x7f0403d4 +int attr textPanX 0x7f0403d5 +int attr textPanY 0x7f0403d6 +int attr textStartPadding 0x7f0403d7 +int attr textureBlurFactor 0x7f0403d8 +int attr textureEffect 0x7f0403d9 +int attr textureHeight 0x7f0403da +int attr textureWidth 0x7f0403db +int attr theme 0x7f0403dc +int attr themeLineHeight 0x7f0403dd +int attr thickness 0x7f0403de +int attr thumbColor 0x7f0403df +int attr thumbElevation 0x7f0403e0 +int attr thumbRadius 0x7f0403e1 +int attr thumbStrokeColor 0x7f0403e2 +int attr thumbStrokeWidth 0x7f0403e3 +int attr thumbTextPadding 0x7f0403e4 +int attr thumbTint 0x7f0403e5 +int attr thumbTintMode 0x7f0403e6 +int attr tickColor 0x7f0403e7 +int attr tickColorActive 0x7f0403e8 +int attr tickColorInactive 0x7f0403e9 +int attr tickMark 0x7f0403ea +int attr tickMarkTint 0x7f0403eb +int attr tickMarkTintMode 0x7f0403ec +int attr tickVisible 0x7f0403ed +int attr tint 0x7f0403ee +int attr tintMode 0x7f0403ef +int attr title 0x7f0403f0 +int attr titleCentered 0x7f0403f1 +int attr titleCollapseMode 0x7f0403f2 +int attr titleEnabled 0x7f0403f3 +int attr titleMargin 0x7f0403f4 +int attr titleMarginBottom 0x7f0403f5 +int attr titleMarginEnd 0x7f0403f6 +int attr titleMarginStart 0x7f0403f7 +int attr titleMarginTop 0x7f0403f8 +int attr titleMargins 0x7f0403f9 +int attr titleTextAppearance 0x7f0403fa +int attr titleTextColor 0x7f0403fb +int attr titleTextStyle 0x7f0403fc +int attr toolbarId 0x7f0403fd +int attr toolbarNavigationButtonStyle 0x7f0403fe +int attr toolbarStyle 0x7f0403ff +int attr tooltipForegroundColor 0x7f040400 +int attr tooltipFrameBackground 0x7f040401 +int attr tooltipStyle 0x7f040402 +int attr tooltipText 0x7f040403 +int attr touchAnchorId 0x7f040404 +int attr touchAnchorSide 0x7f040405 +int attr touchRegionId 0x7f040406 +int attr touch_target_height 0x7f040407 +int attr track 0x7f040408 +int attr trackColor 0x7f040409 +int attr trackColorActive 0x7f04040a +int attr trackColorInactive 0x7f04040b +int attr trackCornerRadius 0x7f04040c +int attr trackHeight 0x7f04040d +int attr trackThickness 0x7f04040e +int attr trackTint 0x7f04040f +int attr trackTintMode 0x7f040410 +int attr transformPivotTarget 0x7f040411 +int attr transitionDisable 0x7f040412 +int attr transitionEasing 0x7f040413 +int attr transitionFlags 0x7f040414 +int attr transitionPathRotate 0x7f040415 +int attr transitionShapeAppearance 0x7f040416 +int attr triggerId 0x7f040417 +int attr triggerReceiver 0x7f040418 +int attr triggerSlack 0x7f040419 +int attr ttcIndex 0x7f04041a +int attr unplayed_color 0x7f04041b +int attr upDuration 0x7f04041c +int attr useCompatPadding 0x7f04041d +int attr useMaterialThemeColors 0x7f04041e +int attr use_artwork 0x7f04041f +int attr use_controller 0x7f040420 +int attr values 0x7f040421 +int attr verticalOffset 0x7f040422 +int attr viewAspectRatio 0x7f040423 +int attr viewInflaterClass 0x7f040424 +int attr viewTransitionMode 0x7f040425 +int attr viewTransitionOnCross 0x7f040426 +int attr viewTransitionOnNegativeCross 0x7f040427 +int attr viewTransitionOnPositiveCross 0x7f040428 +int attr visibilityMode 0x7f040429 +int attr voiceIcon 0x7f04042a +int attr warmth 0x7f04042b +int attr waveDecay 0x7f04042c +int attr waveOffset 0x7f04042d +int attr wavePeriod 0x7f04042e +int attr wavePhase 0x7f04042f +int attr waveShape 0x7f040430 +int attr waveVariesBy 0x7f040431 +int attr windowActionBar 0x7f040432 +int attr windowActionBarOverlay 0x7f040433 +int attr windowActionModeOverlay 0x7f040434 +int attr windowFixedHeightMajor 0x7f040435 +int attr windowFixedHeightMinor 0x7f040436 +int attr windowFixedWidthMajor 0x7f040437 +int attr windowFixedWidthMinor 0x7f040438 +int attr windowMinWidthMajor 0x7f040439 +int attr windowMinWidthMinor 0x7f04043a +int attr windowNoTitle 0x7f04043b +int attr yearSelectedStyle 0x7f04043c +int attr yearStyle 0x7f04043d +int attr yearTodayStyle 0x7f04043e +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004 +int bool mtrl_btn_textappearance_all_caps 0x7f050005 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_decor_view_status_guard 0x7f060006 +int color abc_decor_view_status_guard_light 0x7f060007 +int color abc_hint_foreground_material_dark 0x7f060008 +int color abc_hint_foreground_material_light 0x7f060009 +int color abc_input_method_navigation_guard 0x7f06000a +int color abc_primary_text_disable_only_material_dark 0x7f06000b +int color abc_primary_text_disable_only_material_light 0x7f06000c +int color abc_primary_text_material_dark 0x7f06000d +int color abc_primary_text_material_light 0x7f06000e +int color abc_search_url_text 0x7f06000f +int color abc_search_url_text_normal 0x7f060010 +int color abc_search_url_text_pressed 0x7f060011 +int color abc_search_url_text_selected 0x7f060012 +int color abc_secondary_text_material_dark 0x7f060013 +int color abc_secondary_text_material_light 0x7f060014 +int color abc_tint_btn_checkable 0x7f060015 +int color abc_tint_default 0x7f060016 +int color abc_tint_edittext 0x7f060017 +int color abc_tint_seek_thumb 0x7f060018 +int color abc_tint_spinner 0x7f060019 +int color abc_tint_switch_track 0x7f06001a +int color accent_material_dark 0x7f06001b +int color accent_material_light 0x7f06001c +int color androidx_core_ripple_material_light 0x7f06001d +int color androidx_core_secondary_text_default_material_light 0x7f06001e +int color background_floating_material_dark 0x7f06001f +int color background_floating_material_light 0x7f060020 +int color background_material_dark 0x7f060021 +int color background_material_light 0x7f060022 +int color bottom_container_bg 0x7f060023 +int color bright_foreground_disabled_material_dark 0x7f060024 +int color bright_foreground_disabled_material_light 0x7f060025 +int color bright_foreground_inverse_material_dark 0x7f060026 +int color bright_foreground_inverse_material_light 0x7f060027 +int color bright_foreground_material_dark 0x7f060028 +int color bright_foreground_material_light 0x7f060029 +int color button_material_dark 0x7f06002a +int color button_material_light 0x7f06002b +int color cardview_dark_background 0x7f06002c +int color cardview_light_background 0x7f06002d +int color cardview_shadow_end_color 0x7f06002e +int color cardview_shadow_start_color 0x7f06002f +int color checkbox_themeable_attribute_color 0x7f060030 +int color design_bottom_navigation_shadow_color 0x7f060031 +int color design_box_stroke_color 0x7f060032 +int color design_dark_default_color_background 0x7f060033 +int color design_dark_default_color_error 0x7f060034 +int color design_dark_default_color_on_background 0x7f060035 +int color design_dark_default_color_on_error 0x7f060036 +int color design_dark_default_color_on_primary 0x7f060037 +int color design_dark_default_color_on_secondary 0x7f060038 +int color design_dark_default_color_on_surface 0x7f060039 +int color design_dark_default_color_primary 0x7f06003a +int color design_dark_default_color_primary_dark 0x7f06003b +int color design_dark_default_color_primary_variant 0x7f06003c +int color design_dark_default_color_secondary 0x7f06003d +int color design_dark_default_color_secondary_variant 0x7f06003e +int color design_dark_default_color_surface 0x7f06003f +int color design_default_color_background 0x7f060040 +int color design_default_color_error 0x7f060041 +int color design_default_color_on_background 0x7f060042 +int color design_default_color_on_error 0x7f060043 +int color design_default_color_on_primary 0x7f060044 +int color design_default_color_on_secondary 0x7f060045 +int color design_default_color_on_surface 0x7f060046 +int color design_default_color_primary 0x7f060047 +int color design_default_color_primary_dark 0x7f060048 +int color design_default_color_primary_variant 0x7f060049 +int color design_default_color_secondary 0x7f06004a +int color design_default_color_secondary_variant 0x7f06004b +int color design_default_color_surface 0x7f06004c +int color design_error 0x7f06004d +int color design_fab_shadow_end_color 0x7f06004e +int color design_fab_shadow_mid_color 0x7f06004f +int color design_fab_shadow_start_color 0x7f060050 +int color design_fab_stroke_end_inner_color 0x7f060051 +int color design_fab_stroke_end_outer_color 0x7f060052 +int color design_fab_stroke_top_inner_color 0x7f060053 +int color design_fab_stroke_top_outer_color 0x7f060054 +int color design_icon_tint 0x7f060055 +int color design_snackbar_background_color 0x7f060056 +int color dim_foreground_disabled_material_dark 0x7f060057 +int color dim_foreground_disabled_material_light 0x7f060058 +int color dim_foreground_material_dark 0x7f060059 +int color dim_foreground_material_light 0x7f06005a +int color error_color_material 0x7f06005b +int color error_color_material_dark 0x7f06005c +int color error_color_material_light 0x7f06005d +int color exo_edit_mode_background_color 0x7f06005e +int color foreground_material_dark 0x7f06005f +int color foreground_material_light 0x7f060060 +int color highlighted_text_material_dark 0x7f060061 +int color highlighted_text_material_light 0x7f060062 +int color material_blue_grey_800 0x7f060063 +int color material_blue_grey_900 0x7f060064 +int color material_blue_grey_950 0x7f060065 +int color material_cursor_color 0x7f060066 +int color material_deep_teal_200 0x7f060067 +int color material_deep_teal_500 0x7f060068 +int color material_grey_100 0x7f060069 +int color material_grey_300 0x7f06006a +int color material_grey_50 0x7f06006b +int color material_grey_600 0x7f06006c +int color material_grey_800 0x7f06006d +int color material_grey_850 0x7f06006e +int color material_grey_900 0x7f06006f +int color material_on_background_disabled 0x7f060070 +int color material_on_background_emphasis_high_type 0x7f060071 +int color material_on_background_emphasis_medium 0x7f060072 +int color material_on_primary_disabled 0x7f060073 +int color material_on_primary_emphasis_high_type 0x7f060074 +int color material_on_primary_emphasis_medium 0x7f060075 +int color material_on_surface_disabled 0x7f060076 +int color material_on_surface_emphasis_high_type 0x7f060077 +int color material_on_surface_emphasis_medium 0x7f060078 +int color material_on_surface_stroke 0x7f060079 +int color material_slider_active_tick_marks_color 0x7f06007a +int color material_slider_active_track_color 0x7f06007b +int color material_slider_halo_color 0x7f06007c +int color material_slider_inactive_tick_marks_color 0x7f06007d +int color material_slider_inactive_track_color 0x7f06007e +int color material_slider_thumb_color 0x7f06007f +int color material_timepicker_button_background 0x7f060080 +int color material_timepicker_button_stroke 0x7f060081 +int color material_timepicker_clock_text_color 0x7f060082 +int color material_timepicker_clockface 0x7f060083 +int color material_timepicker_modebutton_tint 0x7f060084 +int color module_commons_FFF_333 0x7f060085 +int color module_commons_dlg_bkg 0x7f060086 +int color module_commons_wm_dialog_text_textColor 0x7f060087 +int color module_ext_color_voice_text 0x7f060088 +int color module_mogo_autopilot_status_disable 0x7f060089 +int color module_mogo_autopilot_status_enable 0x7f06008a +int color module_switch_map_bg 0x7f06008b +int color modules_commons_toast_text_color 0x7f06008c +int color mtrl_btn_bg_color_selector 0x7f06008d +int color mtrl_btn_ripple_color 0x7f06008e +int color mtrl_btn_stroke_color_selector 0x7f06008f +int color mtrl_btn_text_btn_bg_color_selector 0x7f060090 +int color mtrl_btn_text_btn_ripple_color 0x7f060091 +int color mtrl_btn_text_color_disabled 0x7f060092 +int color mtrl_btn_text_color_selector 0x7f060093 +int color mtrl_btn_transparent_bg_color 0x7f060094 +int color mtrl_calendar_item_stroke_color 0x7f060095 +int color mtrl_calendar_selected_range 0x7f060096 +int color mtrl_card_view_foreground 0x7f060097 +int color mtrl_card_view_ripple 0x7f060098 +int color mtrl_chip_background_color 0x7f060099 +int color mtrl_chip_close_icon_tint 0x7f06009a +int color mtrl_chip_surface_color 0x7f06009b +int color mtrl_chip_text_color 0x7f06009c +int color mtrl_choice_chip_background_color 0x7f06009d +int color mtrl_choice_chip_ripple_color 0x7f06009e +int color mtrl_choice_chip_text_color 0x7f06009f +int color mtrl_error 0x7f0600a0 +int color mtrl_fab_bg_color_selector 0x7f0600a1 +int color mtrl_fab_icon_text_color_selector 0x7f0600a2 +int color mtrl_fab_ripple_color 0x7f0600a3 +int color mtrl_filled_background_color 0x7f0600a4 +int color mtrl_filled_icon_tint 0x7f0600a5 +int color mtrl_filled_stroke_color 0x7f0600a6 +int color mtrl_indicator_text_color 0x7f0600a7 +int color mtrl_navigation_bar_colored_item_tint 0x7f0600a8 +int color mtrl_navigation_bar_colored_ripple_color 0x7f0600a9 +int color mtrl_navigation_bar_item_tint 0x7f0600aa +int color mtrl_navigation_bar_ripple_color 0x7f0600ab +int color mtrl_navigation_item_background_color 0x7f0600ac +int color mtrl_navigation_item_icon_tint 0x7f0600ad +int color mtrl_navigation_item_text_color 0x7f0600ae +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0600af +int color mtrl_on_surface_ripple_color 0x7f0600b0 +int color mtrl_outlined_icon_tint 0x7f0600b1 +int color mtrl_outlined_stroke_color 0x7f0600b2 +int color mtrl_popupmenu_overlay_color 0x7f0600b3 +int color mtrl_scrim_color 0x7f0600b4 +int color mtrl_tabs_colored_ripple_color 0x7f0600b5 +int color mtrl_tabs_icon_color_selector 0x7f0600b6 +int color mtrl_tabs_icon_color_selector_colored 0x7f0600b7 +int color mtrl_tabs_legacy_text_color_selector 0x7f0600b8 +int color mtrl_tabs_ripple_color 0x7f0600b9 +int color mtrl_text_btn_text_color_selector 0x7f0600ba +int color mtrl_textinput_default_box_stroke_color 0x7f0600bb +int color mtrl_textinput_disabled_color 0x7f0600bc +int color mtrl_textinput_filled_box_default_background_color 0x7f0600bd +int color mtrl_textinput_focused_box_stroke_color 0x7f0600be +int color mtrl_textinput_hovered_box_stroke_color 0x7f0600bf +int color notification_action_color_filter 0x7f0600c0 +int color notification_icon_bg_color 0x7f0600c1 +int color primary_dark_material_dark 0x7f0600c2 +int color primary_dark_material_light 0x7f0600c3 +int color primary_material_dark 0x7f0600c4 +int color primary_material_light 0x7f0600c5 +int color primary_text_default_material_dark 0x7f0600c6 +int color primary_text_default_material_light 0x7f0600c7 +int color primary_text_disabled_material_dark 0x7f0600c8 +int color primary_text_disabled_material_light 0x7f0600c9 +int color radiobutton_themeable_attribute_color 0x7f0600ca +int color ripple_material_dark 0x7f0600cb +int color ripple_material_light 0x7f0600cc +int color secondary_text_default_material_dark 0x7f0600cd +int color secondary_text_default_material_light 0x7f0600ce +int color secondary_text_disabled_material_dark 0x7f0600cf +int color secondary_text_disabled_material_light 0x7f0600d0 +int color style_color 0x7f0600d1 +int color switch_thumb_disabled_material_dark 0x7f0600d2 +int color switch_thumb_disabled_material_light 0x7f0600d3 +int color switch_thumb_material_dark 0x7f0600d4 +int color switch_thumb_material_light 0x7f0600d5 +int color switch_thumb_normal_material_dark 0x7f0600d6 +int color switch_thumb_normal_material_light 0x7f0600d7 +int color test_mtrl_calendar_day 0x7f0600d8 +int color test_mtrl_calendar_day_selected 0x7f0600d9 +int color tooltip_background_dark 0x7f0600da +int color tooltip_background_light 0x7f0600db +int color v2x_FFF_666 0x7f0600dc +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_progress_bar_size 0x7f07000a +int dimen abc_action_bar_stacked_max_height 0x7f07000b +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e +int dimen abc_action_button_min_height_material 0x7f07000f +int dimen abc_action_button_min_width_material 0x7f070010 +int dimen abc_action_button_min_width_overflow_material 0x7f070011 +int dimen abc_alert_dialog_button_bar_height 0x7f070012 +int dimen abc_alert_dialog_button_dimen 0x7f070013 +int dimen abc_button_inset_horizontal_material 0x7f070014 +int dimen abc_button_inset_vertical_material 0x7f070015 +int dimen abc_button_padding_horizontal_material 0x7f070016 +int dimen abc_button_padding_vertical_material 0x7f070017 +int dimen abc_cascading_menus_min_smallest_width 0x7f070018 +int dimen abc_config_prefDialogWidth 0x7f070019 +int dimen abc_control_corner_material 0x7f07001a +int dimen abc_control_inset_material 0x7f07001b +int dimen abc_control_padding_material 0x7f07001c +int dimen abc_dialog_corner_radius_material 0x7f07001d +int dimen abc_dialog_fixed_height_major 0x7f07001e +int dimen abc_dialog_fixed_height_minor 0x7f07001f +int dimen abc_dialog_fixed_width_major 0x7f070020 +int dimen abc_dialog_fixed_width_minor 0x7f070021 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022 +int dimen abc_dialog_list_padding_top_no_title 0x7f070023 +int dimen abc_dialog_min_width_major 0x7f070024 +int dimen abc_dialog_min_width_minor 0x7f070025 +int dimen abc_dialog_padding_material 0x7f070026 +int dimen abc_dialog_padding_top_material 0x7f070027 +int dimen abc_dialog_title_divider_material 0x7f070028 +int dimen abc_disabled_alpha_material_dark 0x7f070029 +int dimen abc_disabled_alpha_material_light 0x7f07002a +int dimen abc_dropdownitem_icon_width 0x7f07002b +int dimen abc_dropdownitem_text_padding_left 0x7f07002c +int dimen abc_dropdownitem_text_padding_right 0x7f07002d +int dimen abc_edit_text_inset_bottom_material 0x7f07002e +int dimen abc_edit_text_inset_horizontal_material 0x7f07002f +int dimen abc_edit_text_inset_top_material 0x7f070030 +int dimen abc_floating_window_z 0x7f070031 +int dimen abc_list_item_height_large_material 0x7f070032 +int dimen abc_list_item_height_material 0x7f070033 +int dimen abc_list_item_height_small_material 0x7f070034 +int dimen abc_list_item_padding_horizontal_material 0x7f070035 +int dimen abc_panel_menu_list_width 0x7f070036 +int dimen abc_progress_bar_height_material 0x7f070037 +int dimen abc_search_view_preferred_height 0x7f070038 +int dimen abc_search_view_preferred_width 0x7f070039 +int dimen abc_seekbar_track_background_height_material 0x7f07003a +int dimen abc_seekbar_track_progress_height_material 0x7f07003b +int dimen abc_select_dialog_padding_start_material 0x7f07003c +int dimen abc_star_big 0x7f07003d +int dimen abc_star_medium 0x7f07003e +int dimen abc_star_small 0x7f07003f +int dimen abc_switch_padding 0x7f070040 +int dimen abc_text_size_body_1_material 0x7f070041 +int dimen abc_text_size_body_2_material 0x7f070042 +int dimen abc_text_size_button_material 0x7f070043 +int dimen abc_text_size_caption_material 0x7f070044 +int dimen abc_text_size_display_1_material 0x7f070045 +int dimen abc_text_size_display_2_material 0x7f070046 +int dimen abc_text_size_display_3_material 0x7f070047 +int dimen abc_text_size_display_4_material 0x7f070048 +int dimen abc_text_size_headline_material 0x7f070049 +int dimen abc_text_size_large_material 0x7f07004a +int dimen abc_text_size_medium_material 0x7f07004b +int dimen abc_text_size_menu_header_material 0x7f07004c +int dimen abc_text_size_menu_material 0x7f07004d +int dimen abc_text_size_small_material 0x7f07004e +int dimen abc_text_size_subhead_material 0x7f07004f +int dimen abc_text_size_subtitle_material_toolbar 0x7f070050 +int dimen abc_text_size_title_material 0x7f070051 +int dimen abc_text_size_title_material_toolbar 0x7f070052 +int dimen action_bar_size 0x7f070053 +int dimen appcompat_dialog_background_inset 0x7f070054 +int dimen brightness_icon 0x7f070055 +int dimen cardview_compat_inset_shadow 0x7f070056 +int dimen cardview_default_elevation 0x7f070057 +int dimen cardview_default_radius 0x7f070058 +int dimen clock_face_margin_start 0x7f070059 +int dimen compat_button_inset_horizontal_material 0x7f07005a +int dimen compat_button_inset_vertical_material 0x7f07005b +int dimen compat_button_padding_horizontal_material 0x7f07005c +int dimen compat_button_padding_vertical_material 0x7f07005d +int dimen compat_control_corner_material 0x7f07005e +int dimen compat_notification_large_icon_max_height 0x7f07005f +int dimen compat_notification_large_icon_max_width 0x7f070060 +int dimen default_dimension 0x7f070061 +int dimen design_appbar_elevation 0x7f070062 +int dimen design_bottom_navigation_active_item_max_width 0x7f070063 +int dimen design_bottom_navigation_active_item_min_width 0x7f070064 +int dimen design_bottom_navigation_active_text_size 0x7f070065 +int dimen design_bottom_navigation_elevation 0x7f070066 +int dimen design_bottom_navigation_height 0x7f070067 +int dimen design_bottom_navigation_icon_size 0x7f070068 +int dimen design_bottom_navigation_item_max_width 0x7f070069 +int dimen design_bottom_navigation_item_min_width 0x7f07006a +int dimen design_bottom_navigation_label_padding 0x7f07006b +int dimen design_bottom_navigation_margin 0x7f07006c +int dimen design_bottom_navigation_shadow_height 0x7f07006d +int dimen design_bottom_navigation_text_size 0x7f07006e +int dimen design_bottom_sheet_elevation 0x7f07006f +int dimen design_bottom_sheet_modal_elevation 0x7f070070 +int dimen design_bottom_sheet_peek_height_min 0x7f070071 +int dimen design_fab_border_width 0x7f070072 +int dimen design_fab_elevation 0x7f070073 +int dimen design_fab_image_size 0x7f070074 +int dimen design_fab_size_mini 0x7f070075 +int dimen design_fab_size_normal 0x7f070076 +int dimen design_fab_translation_z_hovered_focused 0x7f070077 +int dimen design_fab_translation_z_pressed 0x7f070078 +int dimen design_navigation_elevation 0x7f070079 +int dimen design_navigation_icon_padding 0x7f07007a +int dimen design_navigation_icon_size 0x7f07007b +int dimen design_navigation_item_horizontal_padding 0x7f07007c +int dimen design_navigation_item_icon_padding 0x7f07007d +int dimen design_navigation_max_width 0x7f07007e +int dimen design_navigation_padding_bottom 0x7f07007f +int dimen design_navigation_separator_vertical_padding 0x7f070080 +int dimen design_snackbar_action_inline_max_width 0x7f070081 +int dimen design_snackbar_action_text_color_alpha 0x7f070082 +int dimen design_snackbar_background_corner_radius 0x7f070083 +int dimen design_snackbar_elevation 0x7f070084 +int dimen design_snackbar_extra_spacing_horizontal 0x7f070085 +int dimen design_snackbar_max_width 0x7f070086 +int dimen design_snackbar_min_width 0x7f070087 +int dimen design_snackbar_padding_horizontal 0x7f070088 +int dimen design_snackbar_padding_vertical 0x7f070089 +int dimen design_snackbar_padding_vertical_2lines 0x7f07008a +int dimen design_snackbar_text_size 0x7f07008b +int dimen design_tab_max_width 0x7f07008c +int dimen design_tab_scrollable_min_width 0x7f07008d +int dimen design_tab_text_size 0x7f07008e +int dimen design_tab_text_size_2line 0x7f07008f +int dimen design_textinput_caption_translate_y 0x7f070090 +int dimen disabled_alpha_material_dark 0x7f070091 +int dimen disabled_alpha_material_light 0x7f070092 +int dimen dp_0 0x7f070093 +int dimen dp_0_1 0x7f070094 +int dimen dp_0_5 0x7f070095 +int dimen dp_1 0x7f070096 +int dimen dp_10 0x7f070097 +int dimen dp_100 0x7f070098 +int dimen dp_1000 0x7f070099 +int dimen dp_101 0x7f07009a +int dimen dp_102 0x7f07009b +int dimen dp_103 0x7f07009c +int dimen dp_104 0x7f07009d +int dimen dp_104_5 0x7f07009e +int dimen dp_105 0x7f07009f +int dimen dp_106 0x7f0700a0 +int dimen dp_107 0x7f0700a1 +int dimen dp_108 0x7f0700a2 +int dimen dp_109 0x7f0700a3 +int dimen dp_11 0x7f0700a4 +int dimen dp_110 0x7f0700a5 +int dimen dp_111 0x7f0700a6 +int dimen dp_112 0x7f0700a7 +int dimen dp_113 0x7f0700a8 +int dimen dp_114 0x7f0700a9 +int dimen dp_115 0x7f0700aa +int dimen dp_116 0x7f0700ab +int dimen dp_117 0x7f0700ac +int dimen dp_118 0x7f0700ad +int dimen dp_119 0x7f0700ae +int dimen dp_12 0x7f0700af +int dimen dp_120 0x7f0700b0 +int dimen dp_121 0x7f0700b1 +int dimen dp_122 0x7f0700b2 +int dimen dp_123 0x7f0700b3 +int dimen dp_124 0x7f0700b4 +int dimen dp_125 0x7f0700b5 +int dimen dp_126 0x7f0700b6 +int dimen dp_127 0x7f0700b7 +int dimen dp_128 0x7f0700b8 +int dimen dp_129 0x7f0700b9 +int dimen dp_13 0x7f0700ba +int dimen dp_130 0x7f0700bb +int dimen dp_1300 0x7f0700bc +int dimen dp_131 0x7f0700bd +int dimen dp_132 0x7f0700be +int dimen dp_133 0x7f0700bf +int dimen dp_134 0x7f0700c0 +int dimen dp_134_5 0x7f0700c1 +int dimen dp_135 0x7f0700c2 +int dimen dp_136 0x7f0700c3 +int dimen dp_137 0x7f0700c4 +int dimen dp_138 0x7f0700c5 +int dimen dp_139 0x7f0700c6 +int dimen dp_14 0x7f0700c7 +int dimen dp_140 0x7f0700c8 +int dimen dp_141 0x7f0700c9 +int dimen dp_142 0x7f0700ca +int dimen dp_143 0x7f0700cb +int dimen dp_144 0x7f0700cc +int dimen dp_145 0x7f0700cd +int dimen dp_146 0x7f0700ce +int dimen dp_147 0x7f0700cf +int dimen dp_148 0x7f0700d0 +int dimen dp_149 0x7f0700d1 +int dimen dp_15 0x7f0700d2 +int dimen dp_150 0x7f0700d3 +int dimen dp_151 0x7f0700d4 +int dimen dp_152 0x7f0700d5 +int dimen dp_153 0x7f0700d6 +int dimen dp_154 0x7f0700d7 +int dimen dp_155 0x7f0700d8 +int dimen dp_156 0x7f0700d9 +int dimen dp_157 0x7f0700da +int dimen dp_158 0x7f0700db +int dimen dp_159 0x7f0700dc +int dimen dp_16 0x7f0700dd +int dimen dp_160 0x7f0700de +int dimen dp_161 0x7f0700df +int dimen dp_162 0x7f0700e0 +int dimen dp_163 0x7f0700e1 +int dimen dp_164 0x7f0700e2 +int dimen dp_165 0x7f0700e3 +int dimen dp_166 0x7f0700e4 +int dimen dp_167 0x7f0700e5 +int dimen dp_168 0x7f0700e6 +int dimen dp_169 0x7f0700e7 +int dimen dp_17 0x7f0700e8 +int dimen dp_170 0x7f0700e9 +int dimen dp_171 0x7f0700ea +int dimen dp_172 0x7f0700eb +int dimen dp_173 0x7f0700ec +int dimen dp_174 0x7f0700ed +int dimen dp_175 0x7f0700ee +int dimen dp_176 0x7f0700ef +int dimen dp_177 0x7f0700f0 +int dimen dp_178 0x7f0700f1 +int dimen dp_179 0x7f0700f2 +int dimen dp_18 0x7f0700f3 +int dimen dp_180 0x7f0700f4 +int dimen dp_181 0x7f0700f5 +int dimen dp_182 0x7f0700f6 +int dimen dp_183 0x7f0700f7 +int dimen dp_184 0x7f0700f8 +int dimen dp_185 0x7f0700f9 +int dimen dp_186 0x7f0700fa +int dimen dp_187 0x7f0700fb +int dimen dp_188 0x7f0700fc +int dimen dp_189 0x7f0700fd +int dimen dp_19 0x7f0700fe +int dimen dp_190 0x7f0700ff +int dimen dp_191 0x7f070100 +int dimen dp_191_25 0x7f070101 +int dimen dp_192 0x7f070102 +int dimen dp_1920 0x7f070103 +int dimen dp_193 0x7f070104 +int dimen dp_194 0x7f070105 +int dimen dp_195 0x7f070106 +int dimen dp_196 0x7f070107 +int dimen dp_197 0x7f070108 +int dimen dp_198 0x7f070109 +int dimen dp_199 0x7f07010a +int dimen dp_1_5 0x7f07010b +int dimen dp_2 0x7f07010c +int dimen dp_20 0x7f07010d +int dimen dp_200 0x7f07010e +int dimen dp_201 0x7f07010f +int dimen dp_202 0x7f070110 +int dimen dp_203 0x7f070111 +int dimen dp_204 0x7f070112 +int dimen dp_205 0x7f070113 +int dimen dp_206 0x7f070114 +int dimen dp_207 0x7f070115 +int dimen dp_208 0x7f070116 +int dimen dp_209 0x7f070117 +int dimen dp_21 0x7f070118 +int dimen dp_210 0x7f070119 +int dimen dp_211 0x7f07011a +int dimen dp_212 0x7f07011b +int dimen dp_213 0x7f07011c +int dimen dp_214 0x7f07011d +int dimen dp_215 0x7f07011e +int dimen dp_216 0x7f07011f +int dimen dp_217 0x7f070120 +int dimen dp_218 0x7f070121 +int dimen dp_219 0x7f070122 +int dimen dp_22 0x7f070123 +int dimen dp_220 0x7f070124 +int dimen dp_221 0x7f070125 +int dimen dp_222 0x7f070126 +int dimen dp_223 0x7f070127 +int dimen dp_224 0x7f070128 +int dimen dp_225 0x7f070129 +int dimen dp_226 0x7f07012a +int dimen dp_227 0x7f07012b +int dimen dp_228 0x7f07012c +int dimen dp_229 0x7f07012d +int dimen dp_23 0x7f07012e +int dimen dp_230 0x7f07012f +int dimen dp_231 0x7f070130 +int dimen dp_232 0x7f070131 +int dimen dp_233 0x7f070132 +int dimen dp_234 0x7f070133 +int dimen dp_235 0x7f070134 +int dimen dp_236 0x7f070135 +int dimen dp_237 0x7f070136 +int dimen dp_238 0x7f070137 +int dimen dp_239 0x7f070138 +int dimen dp_24 0x7f070139 +int dimen dp_240 0x7f07013a +int dimen dp_241 0x7f07013b +int dimen dp_242 0x7f07013c +int dimen dp_243 0x7f07013d +int dimen dp_244 0x7f07013e +int dimen dp_245 0x7f07013f +int dimen dp_246 0x7f070140 +int dimen dp_247 0x7f070141 +int dimen dp_248 0x7f070142 +int dimen dp_249 0x7f070143 +int dimen dp_25 0x7f070144 +int dimen dp_250 0x7f070145 +int dimen dp_251 0x7f070146 +int dimen dp_252 0x7f070147 +int dimen dp_253 0x7f070148 +int dimen dp_254 0x7f070149 +int dimen dp_255 0x7f07014a +int dimen dp_256 0x7f07014b +int dimen dp_257 0x7f07014c +int dimen dp_258 0x7f07014d +int dimen dp_259 0x7f07014e +int dimen dp_26 0x7f07014f +int dimen dp_260 0x7f070150 +int dimen dp_261 0x7f070151 +int dimen dp_262 0x7f070152 +int dimen dp_263 0x7f070153 +int dimen dp_264 0x7f070154 +int dimen dp_265 0x7f070155 +int dimen dp_266 0x7f070156 +int dimen dp_267 0x7f070157 +int dimen dp_268 0x7f070158 +int dimen dp_269 0x7f070159 +int dimen dp_27 0x7f07015a +int dimen dp_270 0x7f07015b +int dimen dp_271 0x7f07015c +int dimen dp_272 0x7f07015d +int dimen dp_273 0x7f07015e +int dimen dp_274 0x7f07015f +int dimen dp_275 0x7f070160 +int dimen dp_276 0x7f070161 +int dimen dp_277 0x7f070162 +int dimen dp_278 0x7f070163 +int dimen dp_279 0x7f070164 +int dimen dp_28 0x7f070165 +int dimen dp_280 0x7f070166 +int dimen dp_281 0x7f070167 +int dimen dp_282 0x7f070168 +int dimen dp_283 0x7f070169 +int dimen dp_284 0x7f07016a +int dimen dp_285 0x7f07016b +int dimen dp_286 0x7f07016c +int dimen dp_287 0x7f07016d +int dimen dp_288 0x7f07016e +int dimen dp_289 0x7f07016f +int dimen dp_29 0x7f070170 +int dimen dp_290 0x7f070171 +int dimen dp_291 0x7f070172 +int dimen dp_292 0x7f070173 +int dimen dp_293 0x7f070174 +int dimen dp_294 0x7f070175 +int dimen dp_295 0x7f070176 +int dimen dp_296 0x7f070177 +int dimen dp_297 0x7f070178 +int dimen dp_298 0x7f070179 +int dimen dp_299 0x7f07017a +int dimen dp_2_5 0x7f07017b +int dimen dp_3 0x7f07017c +int dimen dp_30 0x7f07017d +int dimen dp_300 0x7f07017e +int dimen dp_301 0x7f07017f +int dimen dp_302 0x7f070180 +int dimen dp_303 0x7f070181 +int dimen dp_304 0x7f070182 +int dimen dp_305 0x7f070183 +int dimen dp_306 0x7f070184 +int dimen dp_307 0x7f070185 +int dimen dp_308 0x7f070186 +int dimen dp_309 0x7f070187 +int dimen dp_31 0x7f070188 +int dimen dp_310 0x7f070189 +int dimen dp_311 0x7f07018a +int dimen dp_312 0x7f07018b +int dimen dp_313 0x7f07018c +int dimen dp_314 0x7f07018d +int dimen dp_315 0x7f07018e +int dimen dp_316 0x7f07018f +int dimen dp_317 0x7f070190 +int dimen dp_318 0x7f070191 +int dimen dp_319 0x7f070192 +int dimen dp_32 0x7f070193 +int dimen dp_320 0x7f070194 +int dimen dp_321 0x7f070195 +int dimen dp_322 0x7f070196 +int dimen dp_323 0x7f070197 +int dimen dp_324 0x7f070198 +int dimen dp_325 0x7f070199 +int dimen dp_326 0x7f07019a +int dimen dp_327 0x7f07019b +int dimen dp_328 0x7f07019c +int dimen dp_329 0x7f07019d +int dimen dp_33 0x7f07019e +int dimen dp_330 0x7f07019f +int dimen dp_331 0x7f0701a0 +int dimen dp_332 0x7f0701a1 +int dimen dp_333 0x7f0701a2 +int dimen dp_334 0x7f0701a3 +int dimen dp_335 0x7f0701a4 +int dimen dp_336 0x7f0701a5 +int dimen dp_337 0x7f0701a6 +int dimen dp_338 0x7f0701a7 +int dimen dp_339 0x7f0701a8 +int dimen dp_34 0x7f0701a9 +int dimen dp_340 0x7f0701aa +int dimen dp_341 0x7f0701ab +int dimen dp_342 0x7f0701ac +int dimen dp_343 0x7f0701ad +int dimen dp_344 0x7f0701ae +int dimen dp_345 0x7f0701af +int dimen dp_346 0x7f0701b0 +int dimen dp_347 0x7f0701b1 +int dimen dp_348 0x7f0701b2 +int dimen dp_349 0x7f0701b3 +int dimen dp_35 0x7f0701b4 +int dimen dp_350 0x7f0701b5 +int dimen dp_351 0x7f0701b6 +int dimen dp_352 0x7f0701b7 +int dimen dp_353 0x7f0701b8 +int dimen dp_354 0x7f0701b9 +int dimen dp_355 0x7f0701ba +int dimen dp_356 0x7f0701bb +int dimen dp_357 0x7f0701bc +int dimen dp_358 0x7f0701bd +int dimen dp_359 0x7f0701be +int dimen dp_36 0x7f0701bf +int dimen dp_366 0x7f0701c0 +int dimen dp_367 0x7f0701c1 +int dimen dp_368 0x7f0701c2 +int dimen dp_369 0x7f0701c3 +int dimen dp_37 0x7f0701c4 +int dimen dp_370 0x7f0701c5 +int dimen dp_371 0x7f0701c6 +int dimen dp_372 0x7f0701c7 +int dimen dp_373 0x7f0701c8 +int dimen dp_374 0x7f0701c9 +int dimen dp_375 0x7f0701ca +int dimen dp_376 0x7f0701cb +int dimen dp_377 0x7f0701cc +int dimen dp_378 0x7f0701cd +int dimen dp_379 0x7f0701ce +int dimen dp_38 0x7f0701cf +int dimen dp_380 0x7f0701d0 +int dimen dp_381 0x7f0701d1 +int dimen dp_382 0x7f0701d2 +int dimen dp_383 0x7f0701d3 +int dimen dp_384 0x7f0701d4 +int dimen dp_385 0x7f0701d5 +int dimen dp_386 0x7f0701d6 +int dimen dp_387 0x7f0701d7 +int dimen dp_388 0x7f0701d8 +int dimen dp_389 0x7f0701d9 +int dimen dp_39 0x7f0701da +int dimen dp_390 0x7f0701db +int dimen dp_391 0x7f0701dc +int dimen dp_392 0x7f0701dd +int dimen dp_393 0x7f0701de +int dimen dp_394 0x7f0701df +int dimen dp_395 0x7f0701e0 +int dimen dp_396 0x7f0701e1 +int dimen dp_397 0x7f0701e2 +int dimen dp_398 0x7f0701e3 +int dimen dp_399 0x7f0701e4 +int dimen dp_3_5 0x7f0701e5 +int dimen dp_4 0x7f0701e6 +int dimen dp_40 0x7f0701e7 +int dimen dp_400 0x7f0701e8 +int dimen dp_401 0x7f0701e9 +int dimen dp_402 0x7f0701ea +int dimen dp_403 0x7f0701eb +int dimen dp_404 0x7f0701ec +int dimen dp_405 0x7f0701ed +int dimen dp_406 0x7f0701ee +int dimen dp_407 0x7f0701ef +int dimen dp_408 0x7f0701f0 +int dimen dp_409 0x7f0701f1 +int dimen dp_41 0x7f0701f2 +int dimen dp_410 0x7f0701f3 +int dimen dp_411 0x7f0701f4 +int dimen dp_412 0x7f0701f5 +int dimen dp_413 0x7f0701f6 +int dimen dp_414 0x7f0701f7 +int dimen dp_415 0x7f0701f8 +int dimen dp_416 0x7f0701f9 +int dimen dp_417 0x7f0701fa +int dimen dp_418 0x7f0701fb +int dimen dp_419 0x7f0701fc +int dimen dp_42 0x7f0701fd +int dimen dp_420 0x7f0701fe +int dimen dp_421 0x7f0701ff +int dimen dp_422 0x7f070200 +int dimen dp_423 0x7f070201 +int dimen dp_424 0x7f070202 +int dimen dp_425 0x7f070203 +int dimen dp_426 0x7f070204 +int dimen dp_427 0x7f070205 +int dimen dp_428 0x7f070206 +int dimen dp_429 0x7f070207 +int dimen dp_43 0x7f070208 +int dimen dp_430 0x7f070209 +int dimen dp_431 0x7f07020a +int dimen dp_432 0x7f07020b +int dimen dp_433 0x7f07020c +int dimen dp_434 0x7f07020d +int dimen dp_435 0x7f07020e +int dimen dp_436 0x7f07020f +int dimen dp_437 0x7f070210 +int dimen dp_438 0x7f070211 +int dimen dp_439 0x7f070212 +int dimen dp_44 0x7f070213 +int dimen dp_440 0x7f070214 +int dimen dp_441 0x7f070215 +int dimen dp_442 0x7f070216 +int dimen dp_443 0x7f070217 +int dimen dp_444 0x7f070218 +int dimen dp_445 0x7f070219 +int dimen dp_446 0x7f07021a +int dimen dp_447 0x7f07021b +int dimen dp_448 0x7f07021c +int dimen dp_449 0x7f07021d +int dimen dp_45 0x7f07021e +int dimen dp_450 0x7f07021f +int dimen dp_451 0x7f070220 +int dimen dp_452 0x7f070221 +int dimen dp_453 0x7f070222 +int dimen dp_454 0x7f070223 +int dimen dp_455 0x7f070224 +int dimen dp_456 0x7f070225 +int dimen dp_457 0x7f070226 +int dimen dp_458 0x7f070227 +int dimen dp_459 0x7f070228 +int dimen dp_46 0x7f070229 +int dimen dp_460 0x7f07022a +int dimen dp_461 0x7f07022b +int dimen dp_462 0x7f07022c +int dimen dp_463 0x7f07022d +int dimen dp_464 0x7f07022e +int dimen dp_465 0x7f07022f +int dimen dp_466 0x7f070230 +int dimen dp_467 0x7f070231 +int dimen dp_468 0x7f070232 +int dimen dp_469 0x7f070233 +int dimen dp_47 0x7f070234 +int dimen dp_470 0x7f070235 +int dimen dp_471 0x7f070236 +int dimen dp_472 0x7f070237 +int dimen dp_473 0x7f070238 +int dimen dp_474 0x7f070239 +int dimen dp_475 0x7f07023a +int dimen dp_476 0x7f07023b +int dimen dp_477 0x7f07023c +int dimen dp_478 0x7f07023d +int dimen dp_479 0x7f07023e +int dimen dp_48 0x7f07023f +int dimen dp_480 0x7f070240 +int dimen dp_481 0x7f070241 +int dimen dp_482 0x7f070242 +int dimen dp_483 0x7f070243 +int dimen dp_484 0x7f070244 +int dimen dp_485 0x7f070245 +int dimen dp_486 0x7f070246 +int dimen dp_487 0x7f070247 +int dimen dp_488 0x7f070248 +int dimen dp_489 0x7f070249 +int dimen dp_49 0x7f07024a +int dimen dp_490 0x7f07024b +int dimen dp_491 0x7f07024c +int dimen dp_492 0x7f07024d +int dimen dp_493 0x7f07024e +int dimen dp_494 0x7f07024f +int dimen dp_495 0x7f070250 +int dimen dp_496 0x7f070251 +int dimen dp_497 0x7f070252 +int dimen dp_498 0x7f070253 +int dimen dp_499 0x7f070254 +int dimen dp_4_5 0x7f070255 +int dimen dp_5 0x7f070256 +int dimen dp_50 0x7f070257 +int dimen dp_500 0x7f070258 +int dimen dp_501 0x7f070259 +int dimen dp_502 0x7f07025a +int dimen dp_503 0x7f07025b +int dimen dp_504 0x7f07025c +int dimen dp_505 0x7f07025d +int dimen dp_506 0x7f07025e +int dimen dp_507 0x7f07025f +int dimen dp_508 0x7f070260 +int dimen dp_509 0x7f070261 +int dimen dp_51 0x7f070262 +int dimen dp_510 0x7f070263 +int dimen dp_511 0x7f070264 +int dimen dp_512 0x7f070265 +int dimen dp_513 0x7f070266 +int dimen dp_514 0x7f070267 +int dimen dp_515 0x7f070268 +int dimen dp_516 0x7f070269 +int dimen dp_517 0x7f07026a +int dimen dp_518 0x7f07026b +int dimen dp_519 0x7f07026c +int dimen dp_52 0x7f07026d +int dimen dp_520 0x7f07026e +int dimen dp_521 0x7f07026f +int dimen dp_522 0x7f070270 +int dimen dp_523 0x7f070271 +int dimen dp_524 0x7f070272 +int dimen dp_525 0x7f070273 +int dimen dp_526 0x7f070274 +int dimen dp_527 0x7f070275 +int dimen dp_528 0x7f070276 +int dimen dp_529 0x7f070277 +int dimen dp_53 0x7f070278 +int dimen dp_530 0x7f070279 +int dimen dp_531 0x7f07027a +int dimen dp_532 0x7f07027b +int dimen dp_533 0x7f07027c +int dimen dp_534 0x7f07027d +int dimen dp_535 0x7f07027e +int dimen dp_536 0x7f07027f +int dimen dp_537 0x7f070280 +int dimen dp_538 0x7f070281 +int dimen dp_539 0x7f070282 +int dimen dp_54 0x7f070283 +int dimen dp_540 0x7f070284 +int dimen dp_541 0x7f070285 +int dimen dp_542 0x7f070286 +int dimen dp_543 0x7f070287 +int dimen dp_544 0x7f070288 +int dimen dp_545 0x7f070289 +int dimen dp_546 0x7f07028a +int dimen dp_547 0x7f07028b +int dimen dp_548 0x7f07028c +int dimen dp_549 0x7f07028d +int dimen dp_55 0x7f07028e +int dimen dp_550 0x7f07028f +int dimen dp_551 0x7f070290 +int dimen dp_552 0x7f070291 +int dimen dp_553 0x7f070292 +int dimen dp_554 0x7f070293 +int dimen dp_555 0x7f070294 +int dimen dp_556 0x7f070295 +int dimen dp_557 0x7f070296 +int dimen dp_558 0x7f070297 +int dimen dp_559 0x7f070298 +int dimen dp_56 0x7f070299 +int dimen dp_560 0x7f07029a +int dimen dp_561 0x7f07029b +int dimen dp_562 0x7f07029c +int dimen dp_563 0x7f07029d +int dimen dp_564 0x7f07029e +int dimen dp_565 0x7f07029f +int dimen dp_566 0x7f0702a0 +int dimen dp_567 0x7f0702a1 +int dimen dp_568 0x7f0702a2 +int dimen dp_569 0x7f0702a3 +int dimen dp_57 0x7f0702a4 +int dimen dp_570 0x7f0702a5 +int dimen dp_571 0x7f0702a6 +int dimen dp_572 0x7f0702a7 +int dimen dp_573 0x7f0702a8 +int dimen dp_574 0x7f0702a9 +int dimen dp_575 0x7f0702aa +int dimen dp_576 0x7f0702ab +int dimen dp_577 0x7f0702ac +int dimen dp_578 0x7f0702ad +int dimen dp_579 0x7f0702ae +int dimen dp_58 0x7f0702af +int dimen dp_580 0x7f0702b0 +int dimen dp_581 0x7f0702b1 +int dimen dp_582 0x7f0702b2 +int dimen dp_583 0x7f0702b3 +int dimen dp_584 0x7f0702b4 +int dimen dp_585 0x7f0702b5 +int dimen dp_586 0x7f0702b6 +int dimen dp_587 0x7f0702b7 +int dimen dp_588 0x7f0702b8 +int dimen dp_589 0x7f0702b9 +int dimen dp_59 0x7f0702ba +int dimen dp_590 0x7f0702bb +int dimen dp_591 0x7f0702bc +int dimen dp_592 0x7f0702bd +int dimen dp_593 0x7f0702be +int dimen dp_594 0x7f0702bf +int dimen dp_595 0x7f0702c0 +int dimen dp_596 0x7f0702c1 +int dimen dp_597 0x7f0702c2 +int dimen dp_598 0x7f0702c3 +int dimen dp_599 0x7f0702c4 +int dimen dp_6 0x7f0702c5 +int dimen dp_60 0x7f0702c6 +int dimen dp_600 0x7f0702c7 +int dimen dp_601 0x7f0702c8 +int dimen dp_602 0x7f0702c9 +int dimen dp_603 0x7f0702ca +int dimen dp_604 0x7f0702cb +int dimen dp_605 0x7f0702cc +int dimen dp_606 0x7f0702cd +int dimen dp_607 0x7f0702ce +int dimen dp_608 0x7f0702cf +int dimen dp_609 0x7f0702d0 +int dimen dp_61 0x7f0702d1 +int dimen dp_610 0x7f0702d2 +int dimen dp_611 0x7f0702d3 +int dimen dp_612 0x7f0702d4 +int dimen dp_613 0x7f0702d5 +int dimen dp_614 0x7f0702d6 +int dimen dp_615 0x7f0702d7 +int dimen dp_616 0x7f0702d8 +int dimen dp_617 0x7f0702d9 +int dimen dp_618 0x7f0702da +int dimen dp_619 0x7f0702db +int dimen dp_62 0x7f0702dc +int dimen dp_620 0x7f0702dd +int dimen dp_621 0x7f0702de +int dimen dp_622 0x7f0702df +int dimen dp_623 0x7f0702e0 +int dimen dp_624 0x7f0702e1 +int dimen dp_625 0x7f0702e2 +int dimen dp_626 0x7f0702e3 +int dimen dp_627 0x7f0702e4 +int dimen dp_628 0x7f0702e5 +int dimen dp_629 0x7f0702e6 +int dimen dp_63 0x7f0702e7 +int dimen dp_630 0x7f0702e8 +int dimen dp_631 0x7f0702e9 +int dimen dp_632 0x7f0702ea +int dimen dp_633 0x7f0702eb +int dimen dp_634 0x7f0702ec +int dimen dp_635 0x7f0702ed +int dimen dp_636 0x7f0702ee +int dimen dp_637 0x7f0702ef +int dimen dp_638 0x7f0702f0 +int dimen dp_639 0x7f0702f1 +int dimen dp_64 0x7f0702f2 +int dimen dp_640 0x7f0702f3 +int dimen dp_641 0x7f0702f4 +int dimen dp_642 0x7f0702f5 +int dimen dp_643 0x7f0702f6 +int dimen dp_644 0x7f0702f7 +int dimen dp_645 0x7f0702f8 +int dimen dp_646 0x7f0702f9 +int dimen dp_647 0x7f0702fa +int dimen dp_648 0x7f0702fb +int dimen dp_649 0x7f0702fc +int dimen dp_65 0x7f0702fd +int dimen dp_650 0x7f0702fe +int dimen dp_651 0x7f0702ff +int dimen dp_652 0x7f070300 +int dimen dp_653 0x7f070301 +int dimen dp_654 0x7f070302 +int dimen dp_655 0x7f070303 +int dimen dp_656 0x7f070304 +int dimen dp_657 0x7f070305 +int dimen dp_658 0x7f070306 +int dimen dp_659 0x7f070307 +int dimen dp_66 0x7f070308 +int dimen dp_660 0x7f070309 +int dimen dp_661 0x7f07030a +int dimen dp_662 0x7f07030b +int dimen dp_663 0x7f07030c +int dimen dp_664 0x7f07030d +int dimen dp_665 0x7f07030e +int dimen dp_666 0x7f07030f +int dimen dp_667 0x7f070310 +int dimen dp_668 0x7f070311 +int dimen dp_669 0x7f070312 +int dimen dp_67 0x7f070313 +int dimen dp_670 0x7f070314 +int dimen dp_671 0x7f070315 +int dimen dp_672 0x7f070316 +int dimen dp_673 0x7f070317 +int dimen dp_674 0x7f070318 +int dimen dp_675 0x7f070319 +int dimen dp_676 0x7f07031a +int dimen dp_677 0x7f07031b +int dimen dp_678 0x7f07031c +int dimen dp_679 0x7f07031d +int dimen dp_68 0x7f07031e +int dimen dp_680 0x7f07031f +int dimen dp_681 0x7f070320 +int dimen dp_682 0x7f070321 +int dimen dp_683 0x7f070322 +int dimen dp_684 0x7f070323 +int dimen dp_685 0x7f070324 +int dimen dp_686 0x7f070325 +int dimen dp_687 0x7f070326 +int dimen dp_688 0x7f070327 +int dimen dp_689 0x7f070328 +int dimen dp_69 0x7f070329 +int dimen dp_690 0x7f07032a +int dimen dp_691 0x7f07032b +int dimen dp_692 0x7f07032c +int dimen dp_693 0x7f07032d +int dimen dp_694 0x7f07032e +int dimen dp_695 0x7f07032f +int dimen dp_696 0x7f070330 +int dimen dp_697 0x7f070331 +int dimen dp_698 0x7f070332 +int dimen dp_699 0x7f070333 +int dimen dp_7 0x7f070334 +int dimen dp_70 0x7f070335 +int dimen dp_700 0x7f070336 +int dimen dp_701 0x7f070337 +int dimen dp_702 0x7f070338 +int dimen dp_703 0x7f070339 +int dimen dp_704 0x7f07033a +int dimen dp_705 0x7f07033b +int dimen dp_706 0x7f07033c +int dimen dp_707 0x7f07033d +int dimen dp_708 0x7f07033e +int dimen dp_709 0x7f07033f +int dimen dp_71 0x7f070340 +int dimen dp_710 0x7f070341 +int dimen dp_711 0x7f070342 +int dimen dp_712 0x7f070343 +int dimen dp_713 0x7f070344 +int dimen dp_714 0x7f070345 +int dimen dp_715 0x7f070346 +int dimen dp_716 0x7f070347 +int dimen dp_717 0x7f070348 +int dimen dp_718 0x7f070349 +int dimen dp_719 0x7f07034a +int dimen dp_72 0x7f07034b +int dimen dp_720 0x7f07034c +int dimen dp_721 0x7f07034d +int dimen dp_722 0x7f07034e +int dimen dp_723 0x7f07034f +int dimen dp_724 0x7f070350 +int dimen dp_725 0x7f070351 +int dimen dp_726 0x7f070352 +int dimen dp_727 0x7f070353 +int dimen dp_728 0x7f070354 +int dimen dp_729 0x7f070355 +int dimen dp_73 0x7f070356 +int dimen dp_730 0x7f070357 +int dimen dp_731 0x7f070358 +int dimen dp_732 0x7f070359 +int dimen dp_733 0x7f07035a +int dimen dp_734 0x7f07035b +int dimen dp_735 0x7f07035c +int dimen dp_736 0x7f07035d +int dimen dp_737 0x7f07035e +int dimen dp_738 0x7f07035f +int dimen dp_739 0x7f070360 +int dimen dp_74 0x7f070361 +int dimen dp_740 0x7f070362 +int dimen dp_741 0x7f070363 +int dimen dp_742 0x7f070364 +int dimen dp_743 0x7f070365 +int dimen dp_744 0x7f070366 +int dimen dp_745 0x7f070367 +int dimen dp_746 0x7f070368 +int dimen dp_747 0x7f070369 +int dimen dp_748 0x7f07036a +int dimen dp_749 0x7f07036b +int dimen dp_75 0x7f07036c +int dimen dp_750 0x7f07036d +int dimen dp_751 0x7f07036e +int dimen dp_752 0x7f07036f +int dimen dp_753 0x7f070370 +int dimen dp_754 0x7f070371 +int dimen dp_755 0x7f070372 +int dimen dp_756 0x7f070373 +int dimen dp_757 0x7f070374 +int dimen dp_758 0x7f070375 +int dimen dp_759 0x7f070376 +int dimen dp_76 0x7f070377 +int dimen dp_760 0x7f070378 +int dimen dp_761 0x7f070379 +int dimen dp_762 0x7f07037a +int dimen dp_763 0x7f07037b +int dimen dp_764 0x7f07037c +int dimen dp_765 0x7f07037d +int dimen dp_766 0x7f07037e +int dimen dp_767 0x7f07037f +int dimen dp_768 0x7f070380 +int dimen dp_769 0x7f070381 +int dimen dp_77 0x7f070382 +int dimen dp_770 0x7f070383 +int dimen dp_771 0x7f070384 +int dimen dp_772 0x7f070385 +int dimen dp_773 0x7f070386 +int dimen dp_774 0x7f070387 +int dimen dp_775 0x7f070388 +int dimen dp_776 0x7f070389 +int dimen dp_777 0x7f07038a +int dimen dp_778 0x7f07038b +int dimen dp_779 0x7f07038c +int dimen dp_78 0x7f07038d +int dimen dp_780 0x7f07038e +int dimen dp_781 0x7f07038f +int dimen dp_782 0x7f070390 +int dimen dp_783 0x7f070391 +int dimen dp_784 0x7f070392 +int dimen dp_785 0x7f070393 +int dimen dp_786 0x7f070394 +int dimen dp_787 0x7f070395 +int dimen dp_788 0x7f070396 +int dimen dp_789 0x7f070397 +int dimen dp_79 0x7f070398 +int dimen dp_790 0x7f070399 +int dimen dp_791 0x7f07039a +int dimen dp_792 0x7f07039b +int dimen dp_793 0x7f07039c +int dimen dp_794 0x7f07039d +int dimen dp_795 0x7f07039e +int dimen dp_796 0x7f07039f +int dimen dp_797 0x7f0703a0 +int dimen dp_798 0x7f0703a1 +int dimen dp_799 0x7f0703a2 +int dimen dp_7_5 0x7f0703a3 +int dimen dp_8 0x7f0703a4 +int dimen dp_80 0x7f0703a5 +int dimen dp_800 0x7f0703a6 +int dimen dp_801 0x7f0703a7 +int dimen dp_802 0x7f0703a8 +int dimen dp_803 0x7f0703a9 +int dimen dp_804 0x7f0703aa +int dimen dp_805 0x7f0703ab +int dimen dp_806 0x7f0703ac +int dimen dp_807 0x7f0703ad +int dimen dp_808 0x7f0703ae +int dimen dp_809 0x7f0703af +int dimen dp_81 0x7f0703b0 +int dimen dp_810 0x7f0703b1 +int dimen dp_811 0x7f0703b2 +int dimen dp_812 0x7f0703b3 +int dimen dp_813 0x7f0703b4 +int dimen dp_814 0x7f0703b5 +int dimen dp_815 0x7f0703b6 +int dimen dp_816 0x7f0703b7 +int dimen dp_817 0x7f0703b8 +int dimen dp_818 0x7f0703b9 +int dimen dp_819 0x7f0703ba +int dimen dp_82 0x7f0703bb +int dimen dp_820 0x7f0703bc +int dimen dp_821 0x7f0703bd +int dimen dp_822 0x7f0703be +int dimen dp_823 0x7f0703bf +int dimen dp_824 0x7f0703c0 +int dimen dp_825 0x7f0703c1 +int dimen dp_826 0x7f0703c2 +int dimen dp_827 0x7f0703c3 +int dimen dp_828 0x7f0703c4 +int dimen dp_829 0x7f0703c5 +int dimen dp_83 0x7f0703c6 +int dimen dp_830 0x7f0703c7 +int dimen dp_831 0x7f0703c8 +int dimen dp_832 0x7f0703c9 +int dimen dp_833 0x7f0703ca +int dimen dp_834 0x7f0703cb +int dimen dp_835 0x7f0703cc +int dimen dp_836 0x7f0703cd +int dimen dp_837 0x7f0703ce +int dimen dp_838 0x7f0703cf +int dimen dp_839 0x7f0703d0 +int dimen dp_84 0x7f0703d1 +int dimen dp_840 0x7f0703d2 +int dimen dp_841 0x7f0703d3 +int dimen dp_842 0x7f0703d4 +int dimen dp_843 0x7f0703d5 +int dimen dp_844 0x7f0703d6 +int dimen dp_845 0x7f0703d7 +int dimen dp_846 0x7f0703d8 +int dimen dp_847 0x7f0703d9 +int dimen dp_848 0x7f0703da +int dimen dp_849 0x7f0703db +int dimen dp_85 0x7f0703dc +int dimen dp_850 0x7f0703dd +int dimen dp_851 0x7f0703de +int dimen dp_852 0x7f0703df +int dimen dp_853 0x7f0703e0 +int dimen dp_854 0x7f0703e1 +int dimen dp_855 0x7f0703e2 +int dimen dp_856 0x7f0703e3 +int dimen dp_857 0x7f0703e4 +int dimen dp_858 0x7f0703e5 +int dimen dp_859 0x7f0703e6 +int dimen dp_86 0x7f0703e7 +int dimen dp_860 0x7f0703e8 +int dimen dp_861 0x7f0703e9 +int dimen dp_862 0x7f0703ea +int dimen dp_863 0x7f0703eb +int dimen dp_864 0x7f0703ec +int dimen dp_865 0x7f0703ed +int dimen dp_866 0x7f0703ee +int dimen dp_867 0x7f0703ef +int dimen dp_868 0x7f0703f0 +int dimen dp_869 0x7f0703f1 +int dimen dp_87 0x7f0703f2 +int dimen dp_870 0x7f0703f3 +int dimen dp_871 0x7f0703f4 +int dimen dp_872 0x7f0703f5 +int dimen dp_873 0x7f0703f6 +int dimen dp_874 0x7f0703f7 +int dimen dp_875 0x7f0703f8 +int dimen dp_876 0x7f0703f9 +int dimen dp_877 0x7f0703fa +int dimen dp_878 0x7f0703fb +int dimen dp_879 0x7f0703fc +int dimen dp_88 0x7f0703fd +int dimen dp_880 0x7f0703fe +int dimen dp_881 0x7f0703ff +int dimen dp_882 0x7f070400 +int dimen dp_883 0x7f070401 +int dimen dp_884 0x7f070402 +int dimen dp_885 0x7f070403 +int dimen dp_886 0x7f070404 +int dimen dp_887 0x7f070405 +int dimen dp_888 0x7f070406 +int dimen dp_889 0x7f070407 +int dimen dp_89 0x7f070408 +int dimen dp_890 0x7f070409 +int dimen dp_891 0x7f07040a +int dimen dp_892 0x7f07040b +int dimen dp_893 0x7f07040c +int dimen dp_894 0x7f07040d +int dimen dp_895 0x7f07040e +int dimen dp_896 0x7f07040f +int dimen dp_897 0x7f070410 +int dimen dp_898 0x7f070411 +int dimen dp_899 0x7f070412 +int dimen dp_9 0x7f070413 +int dimen dp_90 0x7f070414 +int dimen dp_900 0x7f070415 +int dimen dp_901 0x7f070416 +int dimen dp_902 0x7f070417 +int dimen dp_903 0x7f070418 +int dimen dp_904 0x7f070419 +int dimen dp_905 0x7f07041a +int dimen dp_906 0x7f07041b +int dimen dp_907 0x7f07041c +int dimen dp_908 0x7f07041d +int dimen dp_909 0x7f07041e +int dimen dp_91 0x7f07041f +int dimen dp_910 0x7f070420 +int dimen dp_911 0x7f070421 +int dimen dp_912 0x7f070422 +int dimen dp_913 0x7f070423 +int dimen dp_914 0x7f070424 +int dimen dp_915 0x7f070425 +int dimen dp_916 0x7f070426 +int dimen dp_917 0x7f070427 +int dimen dp_918 0x7f070428 +int dimen dp_919 0x7f070429 +int dimen dp_92 0x7f07042a +int dimen dp_920 0x7f07042b +int dimen dp_921 0x7f07042c +int dimen dp_922 0x7f07042d +int dimen dp_923 0x7f07042e +int dimen dp_924 0x7f07042f +int dimen dp_925 0x7f070430 +int dimen dp_926 0x7f070431 +int dimen dp_927 0x7f070432 +int dimen dp_928 0x7f070433 +int dimen dp_929 0x7f070434 +int dimen dp_93 0x7f070435 +int dimen dp_930 0x7f070436 +int dimen dp_931 0x7f070437 +int dimen dp_932 0x7f070438 +int dimen dp_933 0x7f070439 +int dimen dp_934 0x7f07043a +int dimen dp_935 0x7f07043b +int dimen dp_936 0x7f07043c +int dimen dp_937 0x7f07043d +int dimen dp_938 0x7f07043e +int dimen dp_939 0x7f07043f +int dimen dp_94 0x7f070440 +int dimen dp_940 0x7f070441 +int dimen dp_941 0x7f070442 +int dimen dp_942 0x7f070443 +int dimen dp_943 0x7f070444 +int dimen dp_944 0x7f070445 +int dimen dp_945 0x7f070446 +int dimen dp_946 0x7f070447 +int dimen dp_947 0x7f070448 +int dimen dp_948 0x7f070449 +int dimen dp_949 0x7f07044a +int dimen dp_95 0x7f07044b +int dimen dp_950 0x7f07044c +int dimen dp_951 0x7f07044d +int dimen dp_952 0x7f07044e +int dimen dp_953 0x7f07044f +int dimen dp_954 0x7f070450 +int dimen dp_955 0x7f070451 +int dimen dp_956 0x7f070452 +int dimen dp_957 0x7f070453 +int dimen dp_958 0x7f070454 +int dimen dp_959 0x7f070455 +int dimen dp_96 0x7f070456 +int dimen dp_960 0x7f070457 +int dimen dp_961 0x7f070458 +int dimen dp_962 0x7f070459 +int dimen dp_963 0x7f07045a +int dimen dp_964 0x7f07045b +int dimen dp_965 0x7f07045c +int dimen dp_966 0x7f07045d +int dimen dp_967 0x7f07045e +int dimen dp_968 0x7f07045f +int dimen dp_969 0x7f070460 +int dimen dp_97 0x7f070461 +int dimen dp_970 0x7f070462 +int dimen dp_971 0x7f070463 +int dimen dp_972 0x7f070464 +int dimen dp_973 0x7f070465 +int dimen dp_974 0x7f070466 +int dimen dp_975 0x7f070467 +int dimen dp_976 0x7f070468 +int dimen dp_977 0x7f070469 +int dimen dp_978 0x7f07046a +int dimen dp_979 0x7f07046b +int dimen dp_98 0x7f07046c +int dimen dp_980 0x7f07046d +int dimen dp_981 0x7f07046e +int dimen dp_982 0x7f07046f +int dimen dp_983 0x7f070470 +int dimen dp_984 0x7f070471 +int dimen dp_985 0x7f070472 +int dimen dp_986 0x7f070473 +int dimen dp_987 0x7f070474 +int dimen dp_988 0x7f070475 +int dimen dp_989 0x7f070476 +int dimen dp_99 0x7f070477 +int dimen dp_990 0x7f070478 +int dimen dp_991 0x7f070479 +int dimen dp_992 0x7f07047a +int dimen dp_993 0x7f07047b +int dimen dp_994 0x7f07047c +int dimen dp_995 0x7f07047d +int dimen dp_996 0x7f07047e +int dimen dp_997 0x7f07047f +int dimen dp_998 0x7f070480 +int dimen dp_999 0x7f070481 +int dimen dp_m_1 0x7f070482 +int dimen dp_m_10 0x7f070483 +int dimen dp_m_12 0x7f070484 +int dimen dp_m_2 0x7f070485 +int dimen dp_m_20 0x7f070486 +int dimen dp_m_30 0x7f070487 +int dimen dp_m_5 0x7f070488 +int dimen dp_m_60 0x7f070489 +int dimen dp_m_8 0x7f07048a +int dimen exo_media_button_height 0x7f07048b +int dimen exo_media_button_width 0x7f07048c +int dimen fastscroll_default_thickness 0x7f07048d +int dimen fastscroll_margin 0x7f07048e +int dimen fastscroll_minimum_range 0x7f07048f +int dimen heart_ratingbar_height 0x7f070490 +int dimen heart_ratingbar_width 0x7f070491 +int dimen highlight_alpha_material_colored 0x7f070492 +int dimen highlight_alpha_material_dark 0x7f070493 +int dimen highlight_alpha_material_light 0x7f070494 +int dimen hint_alpha_material_dark 0x7f070495 +int dimen hint_alpha_material_light 0x7f070496 +int dimen hint_pressed_alpha_material_dark 0x7f070497 +int dimen hint_pressed_alpha_material_light 0x7f070498 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070499 +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07049a +int dimen item_touch_helper_swipe_escape_velocity 0x7f07049b +int dimen layout_margin_bottom 0x7f07049c +int dimen material_bottom_sheet_max_width 0x7f07049d +int dimen material_clock_display_padding 0x7f07049e +int dimen material_clock_face_margin_top 0x7f07049f +int dimen material_clock_hand_center_dot_radius 0x7f0704a0 +int dimen material_clock_hand_padding 0x7f0704a1 +int dimen material_clock_hand_stroke_width 0x7f0704a2 +int dimen material_clock_number_text_size 0x7f0704a3 +int dimen material_clock_period_toggle_height 0x7f0704a4 +int dimen material_clock_period_toggle_margin_left 0x7f0704a5 +int dimen material_clock_period_toggle_width 0x7f0704a6 +int dimen material_clock_size 0x7f0704a7 +int dimen material_cursor_inset_bottom 0x7f0704a8 +int dimen material_cursor_inset_top 0x7f0704a9 +int dimen material_cursor_width 0x7f0704aa +int dimen material_emphasis_disabled 0x7f0704ab +int dimen material_emphasis_high_type 0x7f0704ac +int dimen material_emphasis_medium 0x7f0704ad +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0704ae +int dimen material_filled_edittext_font_1_3_padding_top 0x7f0704af +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0704b0 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f0704b1 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f0704b2 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f0704b3 +int dimen material_helper_text_default_padding_top 0x7f0704b4 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0704b5 +int dimen material_helper_text_font_1_3_padding_top 0x7f0704b6 +int dimen material_input_text_to_prefix_suffix_padding 0x7f0704b7 +int dimen material_text_view_test_line_height 0x7f0704b8 +int dimen material_text_view_test_line_height_override 0x7f0704b9 +int dimen material_textinput_default_width 0x7f0704ba +int dimen material_textinput_max_width 0x7f0704bb +int dimen material_textinput_min_width 0x7f0704bc +int dimen material_time_picker_minimum_screen_height 0x7f0704bd +int dimen material_time_picker_minimum_screen_width 0x7f0704be +int dimen material_timepicker_dialog_buttons_margin_top 0x7f0704bf +int dimen module_common_shadow_width 0x7f0704c0 +int dimen module_common_shadow_width_pos 0x7f0704c1 +int dimen module_commons_toast_icon_width 0x7f0704c2 +int dimen module_commons_toast_marginBottom 0x7f0704c3 +int dimen module_commons_toast_marginLeft 0x7f0704c4 +int dimen module_commons_toast_marginRight 0x7f0704c5 +int dimen module_commons_toast_marginTop 0x7f0704c6 +int dimen module_commons_toast_maxWidth 0x7f0704c7 +int dimen module_commons_toast_minWidth 0x7f0704c8 +int dimen module_commons_toast_space_between_icon_and_msg 0x7f0704c9 +int dimen module_commons_toast_textSize 0x7f0704ca +int dimen module_commons_toast_with_left_drawable_marginBottom 0x7f0704cb +int dimen module_commons_toast_with_left_drawable_marginLeft 0x7f0704cc +int dimen module_commons_toast_with_left_drawable_marginTop 0x7f0704cd +int dimen module_commons_toast_y_offset 0x7f0704ce +int dimen module_ext_arcView_center_text_size 0x7f0704cf +int dimen module_ext_arcView_des_text_size 0x7f0704d0 +int dimen module_ext_arcView_height 0x7f0704d1 +int dimen module_ext_arcView_stroke_with 0x7f0704d2 +int dimen module_ext_arcView_top 0x7f0704d3 +int dimen module_ext_arcView_width 0x7f0704d4 +int dimen module_ext_speed_height 0x7f0704d5 +int dimen module_ext_speed_padding 0x7f0704d6 +int dimen module_ext_speed_width 0x7f0704d7 +int dimen module_ext_speed_width_big_radius 0x7f0704d8 +int dimen module_ext_speed_width_sm_radius 0x7f0704d9 +int dimen module_hmi_autopilot_status_bg_big_radius 0x7f0704da +int dimen module_hmi_autopilot_status_bg_sm_radius 0x7f0704db +int dimen module_hmi_btn_size 0x7f0704dc +int dimen module_hmi_btn_text_size 0x7f0704dd +int dimen module_hmi_check_left 0x7f0704de +int dimen module_hmi_check_size 0x7f0704df +int dimen module_map_amap_my_location_bg_size 0x7f0704e0 +int dimen module_map_amap_my_location_icon_height 0x7f0704e1 +int dimen module_map_amap_my_location_icon_width 0x7f0704e2 +int dimen module_mogo_autopilot_status_bg_height 0x7f0704e3 +int dimen module_mogo_autopilot_status_bg_width 0x7f0704e4 +int dimen module_mogo_autopilot_status_icon_margin 0x7f0704e5 +int dimen module_mogo_autopilot_status_icon_width 0x7f0704e6 +int dimen module_mogo_autopilot_status_margin_left 0x7f0704e7 +int dimen module_mogo_autopilot_status_margin_top 0x7f0704e8 +int dimen module_mogo_autopilot_status_padding 0x7f0704e9 +int dimen module_mogo_autopilot_status_text_margin_start 0x7f0704ea +int dimen module_mogo_autopilot_status_text_size 0x7f0704eb +int dimen module_service_content_minWidth 0x7f0704ec +int dimen module_service_content_textSize 0x7f0704ed +int dimen module_service_id_marker_content_paddingRight 0x7f0704ee +int dimen module_service_id_marker_content_paddingRight_widthoutCall 0x7f0704ef +int dimen module_service_marker_anchor_size 0x7f0704f0 +int dimen module_service_marker_bounds_bottomMargin 0x7f0704f1 +int dimen module_service_marker_bounds_leftMargin 0x7f0704f2 +int dimen module_service_marker_bounds_rightMargin 0x7f0704f3 +int dimen module_service_marker_bounds_topMargin 0x7f0704f4 +int dimen module_service_marker_bubble_height 0x7f0704f5 +int dimen module_service_marker_bubble_icon_height 0x7f0704f6 +int dimen module_service_marker_bubble_icon_marginBottom 0x7f0704f7 +int dimen module_service_marker_bubble_icon_vr_height 0x7f0704f8 +int dimen module_service_marker_bubble_icon_vr_width 0x7f0704f9 +int dimen module_service_marker_bubble_icon_width 0x7f0704fa +int dimen module_service_marker_bubble_vr_height 0x7f0704fb +int dimen module_service_marker_bubble_vr_width 0x7f0704fc +int dimen module_service_marker_bubble_width 0x7f0704fd +int dimen module_service_marker_dot_marginTop 0x7f0704fe +int dimen module_service_tag_textSize 0x7f0704ff +int dimen module_service_user_header_height 0x7f070500 +int dimen module_service_user_header_width 0x7f070501 +int dimen module_services_empty_tip_marginTop 0x7f070502 +int dimen module_services_empty_tip_textSize 0x7f070503 +int dimen module_services_id_panel_item_avatar_border_width 0x7f070504 +int dimen module_services_id_panel_item_distance_marginLeft 0x7f070505 +int dimen module_services_info_window_height 0x7f070506 +int dimen module_services_info_window_paddingEnd 0x7f070507 +int dimen module_services_info_window_paddingStart 0x7f070508 +int dimen module_services_load_strategy_marginRight 0x7f070509 +int dimen module_services_load_strategy_paddingLeft 0x7f07050a +int dimen module_services_load_strategy_paddingTop 0x7f07050b +int dimen module_services_load_strategy_textSize 0x7f07050c +int dimen module_services_online_car_panel_close_margin_top 0x7f07050d +int dimen module_services_online_car_panel_marginBottom 0x7f07050e +int dimen module_services_online_car_panel_marginRight 0x7f07050f +int dimen module_services_online_car_panel_marginTop 0x7f070510 +int dimen module_services_online_car_panel_paddingBottom 0x7f070511 +int dimen module_services_online_car_panel_paddingLeft 0x7f070512 +int dimen module_services_online_car_panel_recycler_view_margin_top 0x7f070513 +int dimen module_services_online_car_panel_title_margin_top 0x7f070514 +int dimen module_services_online_car_panel_title_text_size 0x7f070515 +int dimen module_services_panel_item_avatar_size 0x7f070516 +int dimen module_services_panel_item_corner 0x7f070517 +int dimen module_services_panel_item_detail_bkg_corner 0x7f070518 +int dimen module_services_panel_item_detail_padding 0x7f070519 +int dimen module_services_panel_item_detail_textSize 0x7f07051a +int dimen module_services_panel_item_distance_textSize 0x7f07051b +int dimen module_services_panel_item_marginBottom 0x7f07051c +int dimen module_services_panel_item_nickname_marginLeft 0x7f07051d +int dimen module_services_panel_item_nickname_textSize 0x7f07051e +int dimen module_services_panel_item_padding 0x7f07051f +int dimen module_services_panel_strategy_button_bkg_corner 0x7f070520 +int dimen module_services_panel_strategy_button_marginTop 0x7f070521 +int dimen module_switch_image 0x7f070522 +int dimen module_switch_image_circle 0x7f070523 +int dimen module_switch_map 0x7f070524 +int dimen module_switch_map_height 0x7f070525 +int dimen module_switch_margin_left 0x7f070526 +int dimen module_switch_text_size 0x7f070527 +int dimen module_v2n_image_margin_left 0x7f070528 +int dimen module_v2n_tip_height 0x7f070529 +int dimen module_v2n_tip_text_margin_right 0x7f07052a +int dimen module_v2n_tip_text_width 0x7f07052b +int dimen module_v2n_tip_width 0x7f07052c +int dimen module_v2x_brake_image_margin_left 0x7f07052d +int dimen module_v2x_brake_image_margin_right 0x7f07052e +int dimen module_v2x_brake_image_width 0x7f07052f +int dimen module_v2x_brake_tip_height 0x7f070530 +int dimen module_v2x_brake_tip_width 0x7f070531 +int dimen module_vip_height 0x7f070532 +int dimen module_vip_margin_left 0x7f070533 +int dimen module_vip_margin_top 0x7f070534 +int dimen module_vip_width 0x7f070535 +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f070536 +int dimen mtrl_alert_dialog_background_inset_end 0x7f070537 +int dimen mtrl_alert_dialog_background_inset_start 0x7f070538 +int dimen mtrl_alert_dialog_background_inset_top 0x7f070539 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f07053a +int dimen mtrl_badge_horizontal_edge_offset 0x7f07053b +int dimen mtrl_badge_long_text_horizontal_padding 0x7f07053c +int dimen mtrl_badge_radius 0x7f07053d +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f07053e +int dimen mtrl_badge_text_size 0x7f07053f +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f070540 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f070541 +int dimen mtrl_badge_with_text_radius 0x7f070542 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f070543 +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f070544 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f070545 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f070546 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f070547 +int dimen mtrl_bottomappbar_height 0x7f070548 +int dimen mtrl_btn_corner_radius 0x7f070549 +int dimen mtrl_btn_dialog_btn_min_width 0x7f07054a +int dimen mtrl_btn_disabled_elevation 0x7f07054b +int dimen mtrl_btn_disabled_z 0x7f07054c +int dimen mtrl_btn_elevation 0x7f07054d +int dimen mtrl_btn_focused_z 0x7f07054e +int dimen mtrl_btn_hovered_z 0x7f07054f +int dimen mtrl_btn_icon_btn_padding_left 0x7f070550 +int dimen mtrl_btn_icon_padding 0x7f070551 +int dimen mtrl_btn_inset 0x7f070552 +int dimen mtrl_btn_letter_spacing 0x7f070553 +int dimen mtrl_btn_max_width 0x7f070554 +int dimen mtrl_btn_padding_bottom 0x7f070555 +int dimen mtrl_btn_padding_left 0x7f070556 +int dimen mtrl_btn_padding_right 0x7f070557 +int dimen mtrl_btn_padding_top 0x7f070558 +int dimen mtrl_btn_pressed_z 0x7f070559 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f07055a +int dimen mtrl_btn_stroke_size 0x7f07055b +int dimen mtrl_btn_text_btn_icon_padding 0x7f07055c +int dimen mtrl_btn_text_btn_padding_left 0x7f07055d +int dimen mtrl_btn_text_btn_padding_right 0x7f07055e +int dimen mtrl_btn_text_size 0x7f07055f +int dimen mtrl_btn_z 0x7f070560 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f070561 +int dimen mtrl_calendar_action_height 0x7f070562 +int dimen mtrl_calendar_action_padding 0x7f070563 +int dimen mtrl_calendar_bottom_padding 0x7f070564 +int dimen mtrl_calendar_content_padding 0x7f070565 +int dimen mtrl_calendar_day_corner 0x7f070566 +int dimen mtrl_calendar_day_height 0x7f070567 +int dimen mtrl_calendar_day_horizontal_padding 0x7f070568 +int dimen mtrl_calendar_day_today_stroke 0x7f070569 +int dimen mtrl_calendar_day_vertical_padding 0x7f07056a +int dimen mtrl_calendar_day_width 0x7f07056b +int dimen mtrl_calendar_days_of_week_height 0x7f07056c +int dimen mtrl_calendar_dialog_background_inset 0x7f07056d +int dimen mtrl_calendar_header_content_padding 0x7f07056e +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f07056f +int dimen mtrl_calendar_header_divider_thickness 0x7f070570 +int dimen mtrl_calendar_header_height 0x7f070571 +int dimen mtrl_calendar_header_height_fullscreen 0x7f070572 +int dimen mtrl_calendar_header_selection_line_height 0x7f070573 +int dimen mtrl_calendar_header_text_padding 0x7f070574 +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f070575 +int dimen mtrl_calendar_header_toggle_margin_top 0x7f070576 +int dimen mtrl_calendar_landscape_header_width 0x7f070577 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f070578 +int dimen mtrl_calendar_month_horizontal_padding 0x7f070579 +int dimen mtrl_calendar_month_vertical_padding 0x7f07057a +int dimen mtrl_calendar_navigation_bottom_padding 0x7f07057b +int dimen mtrl_calendar_navigation_height 0x7f07057c +int dimen mtrl_calendar_navigation_top_padding 0x7f07057d +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f07057e +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f07057f +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f070580 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f070581 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f070582 +int dimen mtrl_calendar_text_input_padding_top 0x7f070583 +int dimen mtrl_calendar_title_baseline_to_top 0x7f070584 +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f070585 +int dimen mtrl_calendar_year_corner 0x7f070586 +int dimen mtrl_calendar_year_height 0x7f070587 +int dimen mtrl_calendar_year_horizontal_padding 0x7f070588 +int dimen mtrl_calendar_year_vertical_padding 0x7f070589 +int dimen mtrl_calendar_year_width 0x7f07058a +int dimen mtrl_card_checked_icon_margin 0x7f07058b +int dimen mtrl_card_checked_icon_size 0x7f07058c +int dimen mtrl_card_corner_radius 0x7f07058d +int dimen mtrl_card_dragged_z 0x7f07058e +int dimen mtrl_card_elevation 0x7f07058f +int dimen mtrl_card_spacing 0x7f070590 +int dimen mtrl_chip_pressed_translation_z 0x7f070591 +int dimen mtrl_chip_text_size 0x7f070592 +int dimen mtrl_edittext_rectangle_top_offset 0x7f070593 +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f070594 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f070595 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f070596 +int dimen mtrl_extended_fab_bottom_padding 0x7f070597 +int dimen mtrl_extended_fab_corner_radius 0x7f070598 +int dimen mtrl_extended_fab_disabled_elevation 0x7f070599 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f07059a +int dimen mtrl_extended_fab_elevation 0x7f07059b +int dimen mtrl_extended_fab_end_padding 0x7f07059c +int dimen mtrl_extended_fab_end_padding_icon 0x7f07059d +int dimen mtrl_extended_fab_icon_size 0x7f07059e +int dimen mtrl_extended_fab_icon_text_spacing 0x7f07059f +int dimen mtrl_extended_fab_min_height 0x7f0705a0 +int dimen mtrl_extended_fab_min_width 0x7f0705a1 +int dimen mtrl_extended_fab_start_padding 0x7f0705a2 +int dimen mtrl_extended_fab_start_padding_icon 0x7f0705a3 +int dimen mtrl_extended_fab_top_padding 0x7f0705a4 +int dimen mtrl_extended_fab_translation_z_base 0x7f0705a5 +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f0705a6 +int dimen mtrl_extended_fab_translation_z_pressed 0x7f0705a7 +int dimen mtrl_fab_elevation 0x7f0705a8 +int dimen mtrl_fab_min_touch_target 0x7f0705a9 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f0705aa +int dimen mtrl_fab_translation_z_pressed 0x7f0705ab +int dimen mtrl_high_ripple_default_alpha 0x7f0705ac +int dimen mtrl_high_ripple_focused_alpha 0x7f0705ad +int dimen mtrl_high_ripple_hovered_alpha 0x7f0705ae +int dimen mtrl_high_ripple_pressed_alpha 0x7f0705af +int dimen mtrl_large_touch_target 0x7f0705b0 +int dimen mtrl_low_ripple_default_alpha 0x7f0705b1 +int dimen mtrl_low_ripple_focused_alpha 0x7f0705b2 +int dimen mtrl_low_ripple_hovered_alpha 0x7f0705b3 +int dimen mtrl_low_ripple_pressed_alpha 0x7f0705b4 +int dimen mtrl_min_touch_target_size 0x7f0705b5 +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f0705b6 +int dimen mtrl_navigation_bar_item_default_margin 0x7f0705b7 +int dimen mtrl_navigation_elevation 0x7f0705b8 +int dimen mtrl_navigation_item_horizontal_padding 0x7f0705b9 +int dimen mtrl_navigation_item_icon_padding 0x7f0705ba +int dimen mtrl_navigation_item_icon_size 0x7f0705bb +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f0705bc +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f0705bd +int dimen mtrl_navigation_rail_active_text_size 0x7f0705be +int dimen mtrl_navigation_rail_compact_width 0x7f0705bf +int dimen mtrl_navigation_rail_default_width 0x7f0705c0 +int dimen mtrl_navigation_rail_elevation 0x7f0705c1 +int dimen mtrl_navigation_rail_icon_margin 0x7f0705c2 +int dimen mtrl_navigation_rail_icon_size 0x7f0705c3 +int dimen mtrl_navigation_rail_margin 0x7f0705c4 +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f0705c5 +int dimen mtrl_navigation_rail_text_size 0x7f0705c6 +int dimen mtrl_progress_circular_inset 0x7f0705c7 +int dimen mtrl_progress_circular_inset_extra_small 0x7f0705c8 +int dimen mtrl_progress_circular_inset_medium 0x7f0705c9 +int dimen mtrl_progress_circular_inset_small 0x7f0705ca +int dimen mtrl_progress_circular_radius 0x7f0705cb +int dimen mtrl_progress_circular_size 0x7f0705cc +int dimen mtrl_progress_circular_size_extra_small 0x7f0705cd +int dimen mtrl_progress_circular_size_medium 0x7f0705ce +int dimen mtrl_progress_circular_size_small 0x7f0705cf +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0705d0 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f0705d1 +int dimen mtrl_progress_circular_track_thickness_small 0x7f0705d2 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0705d3 +int dimen mtrl_progress_track_thickness 0x7f0705d4 +int dimen mtrl_shape_corner_size_large_component 0x7f0705d5 +int dimen mtrl_shape_corner_size_medium_component 0x7f0705d6 +int dimen mtrl_shape_corner_size_small_component 0x7f0705d7 +int dimen mtrl_slider_halo_radius 0x7f0705d8 +int dimen mtrl_slider_label_padding 0x7f0705d9 +int dimen mtrl_slider_label_radius 0x7f0705da +int dimen mtrl_slider_label_square_side 0x7f0705db +int dimen mtrl_slider_thumb_elevation 0x7f0705dc +int dimen mtrl_slider_thumb_radius 0x7f0705dd +int dimen mtrl_slider_track_height 0x7f0705de +int dimen mtrl_slider_track_side_padding 0x7f0705df +int dimen mtrl_slider_track_top 0x7f0705e0 +int dimen mtrl_slider_widget_height 0x7f0705e1 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f0705e2 +int dimen mtrl_snackbar_background_corner_radius 0x7f0705e3 +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0705e4 +int dimen mtrl_snackbar_margin 0x7f0705e5 +int dimen mtrl_snackbar_message_margin_horizontal 0x7f0705e6 +int dimen mtrl_snackbar_padding_horizontal 0x7f0705e7 +int dimen mtrl_switch_thumb_elevation 0x7f0705e8 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0705e9 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0705ea +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0705eb +int dimen mtrl_textinput_box_stroke_width_default 0x7f0705ec +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0705ed +int dimen mtrl_textinput_counter_margin_start 0x7f0705ee +int dimen mtrl_textinput_end_icon_margin_start 0x7f0705ef +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0705f0 +int dimen mtrl_textinput_start_icon_margin_end 0x7f0705f1 +int dimen mtrl_toolbar_default_height 0x7f0705f2 +int dimen mtrl_tooltip_arrowSize 0x7f0705f3 +int dimen mtrl_tooltip_cornerSize 0x7f0705f4 +int dimen mtrl_tooltip_minHeight 0x7f0705f5 +int dimen mtrl_tooltip_minWidth 0x7f0705f6 +int dimen mtrl_tooltip_padding 0x7f0705f7 +int dimen mtrl_transition_shared_axis_slide_distance 0x7f0705f8 +int dimen notice_current_time_margin 0x7f0705f9 +int dimen notice_fullscreen_bt 0x7f0705fa +int dimen notice_loading_bt 0x7f0705fb +int dimen notice_play_bottom 0x7f0705fc +int dimen notice_play_height 0x7f0705fd +int dimen notice_play_marginleft 0x7f0705fe +int dimen notice_play_marginleft_small 0x7f0705ff +int dimen notice_play_marginright 0x7f070600 +int dimen notice_play_marginright_small 0x7f070601 +int dimen notice_seekbar_bottom 0x7f070602 +int dimen notice_seekbar_width 0x7f070603 +int dimen notice_seekbar_width_small 0x7f070604 +int dimen notice_time_bottom 0x7f070605 +int dimen notification_action_icon_size 0x7f070606 +int dimen notification_action_text_size 0x7f070607 +int dimen notification_big_circle_margin 0x7f070608 +int dimen notification_content_margin_start 0x7f070609 +int dimen notification_large_icon_height 0x7f07060a +int dimen notification_large_icon_width 0x7f07060b +int dimen notification_main_column_padding_top 0x7f07060c +int dimen notification_media_narrow_margin 0x7f07060d +int dimen notification_right_icon_size 0x7f07060e +int dimen notification_right_side_padding_top 0x7f07060f +int dimen notification_small_icon_background_padding 0x7f070610 +int dimen notification_small_icon_size_as_large 0x7f070611 +int dimen notification_subtext_size 0x7f070612 +int dimen notification_top_pad 0x7f070613 +int dimen notification_top_pad_large_text 0x7f070614 +int dimen panel_list_item_title_size 0x7f070615 +int dimen ratingbar_padding 0x7f070616 +int dimen seek_bar_image 0x7f070617 +int dimen share_item_address 0x7f070618 +int dimen sp_10 0x7f070619 +int dimen sp_11 0x7f07061a +int dimen sp_12 0x7f07061b +int dimen sp_13 0x7f07061c +int dimen sp_14 0x7f07061d +int dimen sp_15 0x7f07061e +int dimen sp_16 0x7f07061f +int dimen sp_17 0x7f070620 +int dimen sp_18 0x7f070621 +int dimen sp_19 0x7f070622 +int dimen sp_20 0x7f070623 +int dimen sp_21 0x7f070624 +int dimen sp_22 0x7f070625 +int dimen sp_23 0x7f070626 +int dimen sp_24 0x7f070627 +int dimen sp_25 0x7f070628 +int dimen sp_28 0x7f070629 +int dimen sp_30 0x7f07062a +int dimen sp_32 0x7f07062b +int dimen sp_34 0x7f07062c +int dimen sp_36 0x7f07062d +int dimen sp_38 0x7f07062e +int dimen sp_40 0x7f07062f +int dimen sp_42 0x7f070630 +int dimen sp_48 0x7f070631 +int dimen sp_6 0x7f070632 +int dimen sp_7 0x7f070633 +int dimen sp_8 0x7f070634 +int dimen sp_9 0x7f070635 +int dimen test_mtrl_calendar_day_cornerSize 0x7f070636 +int dimen test_navigation_bar_active_item_max_width 0x7f070637 +int dimen test_navigation_bar_active_item_min_width 0x7f070638 +int dimen test_navigation_bar_active_text_size 0x7f070639 +int dimen test_navigation_bar_elevation 0x7f07063a +int dimen test_navigation_bar_height 0x7f07063b +int dimen test_navigation_bar_icon_size 0x7f07063c +int dimen test_navigation_bar_item_max_width 0x7f07063d +int dimen test_navigation_bar_item_min_width 0x7f07063e +int dimen test_navigation_bar_label_padding 0x7f07063f +int dimen test_navigation_bar_shadow_height 0x7f070640 +int dimen test_navigation_bar_text_size 0x7f070641 +int dimen time_textsize 0x7f070642 +int dimen tooltip_corner_radius 0x7f070643 +int dimen tooltip_horizontal_padding 0x7f070644 +int dimen tooltip_margin 0x7f070645 +int dimen tooltip_precise_anchor_extra_offset 0x7f070646 +int dimen tooltip_precise_anchor_threshold 0x7f070647 +int dimen tooltip_vertical_padding 0x7f070648 +int dimen tooltip_y_offset_non_touch 0x7f070649 +int dimen tooltip_y_offset_touch 0x7f07064a +int dimen v2x_panel_loading_top 0x7f07064b +int dimen v2x_share_btn_height 0x7f07064c +int dimen v2x_share_btn_width 0x7f07064d +int dimen video_progress_dialog_margin_top 0x7f07064e +int dimen video_volume_dialog_margin_left 0x7f07064f +int dimen warning_distance_right 0x7f070650 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_star_black_48dp 0x7f080046 +int drawable abc_star_half_black_48dp 0x7f080047 +int drawable abc_switch_thumb_material 0x7f080048 +int drawable abc_switch_track_mtrl_alpha 0x7f080049 +int drawable abc_tab_indicator_material 0x7f08004a +int drawable abc_tab_indicator_mtrl_alpha 0x7f08004b +int drawable abc_text_cursor_material 0x7f08004c +int drawable abc_text_select_handle_left_mtrl 0x7f08004d +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004e +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004f +int drawable abc_text_select_handle_middle_mtrl 0x7f080050 +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f080051 +int drawable abc_text_select_handle_middle_mtrl_light 0x7f080052 +int drawable abc_text_select_handle_right_mtrl 0x7f080053 +int drawable abc_text_select_handle_right_mtrl_dark 0x7f080054 +int drawable abc_text_select_handle_right_mtrl_light 0x7f080055 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080056 +int drawable abc_textfield_default_mtrl_alpha 0x7f080057 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080058 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080059 +int drawable abc_textfield_search_material 0x7f08005a +int drawable abc_vector_test 0x7f08005b +int drawable avd_hide_password 0x7f08005c +int drawable avd_show_password 0x7f08005d +int drawable bg_map_marker_yellow_info 0x7f08005e +int drawable bg_shape_reverse_yellow 0x7f08005f +int drawable bg_v2x_cancel_help 0x7f080060 +int drawable bg_v2x_event_type_blue 0x7f080061 +int drawable bg_v2x_event_type_orange 0x7f080062 +int drawable bg_v2x_event_type_orange_vr 0x7f080063 +int drawable bg_v2x_event_type_read 0x7f080064 +int drawable bg_v2x_event_type_red_vr 0x7f080065 +int drawable bg_waring_limiting_velocity 0x7f080066 +int drawable bg_waring_traffic_light_vr 0x7f080067 +int drawable bg_warning_bg 0x7f080068 +int drawable btn_checkbox_checked_mtrl 0x7f080069 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f08006a +int drawable btn_checkbox_unchecked_mtrl 0x7f08006b +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08006c +int drawable btn_radio_off_mtrl 0x7f08006d +int drawable btn_radio_off_to_on_mtrl_animation 0x7f08006e +int drawable btn_radio_on_mtrl 0x7f08006f +int drawable btn_radio_on_to_off_mtrl_animation 0x7f080070 +int drawable check_error_image 0x7f080071 +int drawable common_marker_bottom_floor 0x7f080072 +int drawable dark_color_close 0x7f080073 +int drawable design_fab_background 0x7f080074 +int drawable design_ic_visibility 0x7f080075 +int drawable design_ic_visibility_off 0x7f080076 +int drawable design_password_eye 0x7f080077 +int drawable design_snackbar_background 0x7f080078 +int drawable empty_drawable 0x7f080079 +int drawable exo_controls_fastforward 0x7f08007a +int drawable exo_controls_next 0x7f08007b +int drawable exo_controls_pause 0x7f08007c +int drawable exo_controls_play 0x7f08007d +int drawable exo_controls_previous 0x7f08007e +int drawable exo_controls_rewind 0x7f08007f +int drawable exo_edit_mode_logo 0x7f080080 +int drawable ic_amap_navi_cursor 0x7f080081 +int drawable ic_clock_black_24dp 0x7f080082 +int drawable ic_keyboard_black_24dp 0x7f080083 +int drawable ic_mtrl_checked_circle 0x7f080084 +int drawable ic_mtrl_chip_checked_black 0x7f080085 +int drawable ic_mtrl_chip_checked_circle 0x7f080086 +int drawable ic_mtrl_chip_close_circle 0x7f080087 +int drawable ic_navi_start 0x7f080088 +int drawable ic_navi_target 0x7f080089 +int drawable icon_autopilot_status 0x7f08008a +int drawable icon_autopilot_status_disabled 0x7f08008b +int drawable icon_car_red 0x7f08008c +int drawable icon_common_heart_animation_vr00 0x7f08008d +int drawable icon_common_heart_animation_vr02 0x7f08008e +int drawable icon_default_user_head 0x7f08008f +int drawable icon_heart_choose 0x7f080090 +int drawable icon_heart_second 0x7f080091 +int drawable icon_heart_second_other 0x7f080092 +int drawable icon_heart_unchoose 0x7f080093 +int drawable icon_heart_unchoose_other 0x7f080094 +int drawable icon_map_marker_book 0x7f080095 +int drawable icon_map_marker_car_gray 0x7f080096 +int drawable icon_map_marker_car_gray_selected 0x7f080097 +int drawable icon_map_marker_car_type2 0x7f080098 +int drawable icon_map_marker_car_type_110 0x7f080099 +int drawable icon_map_marker_car_type_119 0x7f08009a +int drawable icon_map_marker_car_type_120 0x7f08009b +int drawable icon_map_marker_car_type_bus 0x7f08009c +int drawable icon_map_marker_car_type_taxi 0x7f08009d +int drawable icon_map_marker_living 0x7f08009e +int drawable icon_map_marker_location_yellow 0x7f08009f +int drawable icon_map_marker_location_yellow_vr 0x7f0800a0 +int drawable icon_map_marker_misic 0x7f0800a1 +int drawable icon_map_marker_news 0x7f0800a2 +int drawable icon_map_marker_pondingl2 0x7f0800a3 +int drawable icon_map_marker_road_block_off 0x7f0800a4 +int drawable icon_map_marker_road_block_up 0x7f0800a5 +int drawable icon_map_marker_road_block_up2 0x7f0800a6 +int drawable icon_waring_traffic_light_green_vr 0x7f0800a7 +int drawable icon_waring_traffic_light_red_vr 0x7f0800a8 +int drawable icon_waring_traffic_light_yellow_vr 0x7f0800a9 +int drawable icon_warning_v2x_abnormal_vehicle 0x7f0800aa +int drawable icon_warning_v2x_blind_area_collision 0x7f0800ab +int drawable icon_warning_v2x_collision_warning 0x7f0800ac +int drawable icon_warning_v2x_congestion 0x7f0800ad +int drawable icon_warning_v2x_emergency_brake 0x7f0800ae +int drawable icon_warning_v2x_give_way 0x7f0800af +int drawable icon_warning_v2x_hump_bridge 0x7f0800b0 +int drawable icon_warning_v2x_motorcycle_collision 0x7f0800b1 +int drawable icon_warning_v2x_no_parking 0x7f0800b2 +int drawable icon_warning_v2x_optimal_route 0x7f0800b3 +int drawable icon_warning_v2x_over_speed 0x7f0800b4 +int drawable icon_warning_v2x_pedestrian_crossing 0x7f0800b5 +int drawable icon_warning_v2x_reverse_overtaking 0x7f0800b6 +int drawable icon_warning_v2x_road_construction 0x7f0800b7 +int drawable icon_warning_v2x_road_dangerous 0x7f0800b8 +int drawable icon_warning_v2x_roundaboutpng 0x7f0800b9 +int drawable icon_warning_v2x_school 0x7f0800ba +int drawable icon_warning_v2x_special_vehicle_access 0x7f0800bb +int drawable icon_warning_v2x_test_section 0x7f0800bc +int drawable icon_warning_v2x_traffic_light_gray 0x7f0800bd +int drawable icon_warning_v2x_traffic_light_green 0x7f0800be +int drawable icon_warning_v2x_traffic_light_red 0x7f0800bf +int drawable icon_warning_v2x_traffic_light_yellow 0x7f0800c0 +int drawable icon_warning_v2x_traffic_lights_green 0x7f0800c1 +int drawable icon_warning_v2x_traffic_lights_red 0x7f0800c2 +int drawable icon_warning_v2x_tramcar 0x7f0800c3 +int drawable icon_warning_v2x_turn_left_sharp 0x7f0800c4 +int drawable icon_warning_v2x_turn_right_sharp 0x7f0800c5 +int drawable icon_warning_v2x_vehicle_control 0x7f0800c6 +int drawable icon_warning_v2x_vip_turn_light 0x7f0800c7 +int drawable lock 0x7f0800c8 +int drawable map_api_ic_current_location2 0x7f0800c9 +int drawable material_cursor_drawable 0x7f0800ca +int drawable material_ic_calendar_black_24dp 0x7f0800cb +int drawable material_ic_clear_black_24dp 0x7f0800cc +int drawable material_ic_edit_black_24dp 0x7f0800cd +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f0800ce +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f0800cf +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f0800d0 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f0800d1 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f0800d2 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f0800d3 +int drawable module_camera_real_time_traffic 0x7f0800d4 +int drawable module_common_close_selector 0x7f0800d5 +int drawable module_common_close_selector_vr 0x7f0800d6 +int drawable module_common_default_user_head 0x7f0800d7 +int drawable module_common_ic_rc_accident3 0x7f0800d8 +int drawable module_common_ic_rc_accident3_white 0x7f0800d9 +int drawable module_common_ic_rc_dark_frog2 0x7f0800da +int drawable module_common_ic_rc_dark_frog2_white 0x7f0800db +int drawable module_common_ic_rc_freeze2 0x7f0800dc +int drawable module_common_ic_rc_freeze2_white 0x7f0800dd +int drawable module_common_ic_rc_illegal_park 0x7f0800de +int drawable module_common_ic_rc_illegal_park_white 0x7f0800df +int drawable module_common_ic_rc_parking2 0x7f0800e0 +int drawable module_common_icon_close 0x7f0800e1 +int drawable module_common_icon_close_press 0x7f0800e2 +int drawable module_common_icon_close_vr 0x7f0800e3 +int drawable module_common_icon_like_selected_vr 0x7f0800e4 +int drawable module_common_icon_like_vr 0x7f0800e5 +int drawable module_common_icon_map_marker_4s 0x7f0800e6 +int drawable module_common_icon_map_marker_living 0x7f0800e7 +int drawable module_common_icon_map_marker_living_white 0x7f0800e8 +int drawable module_common_icon_map_marker_pondingl2 0x7f0800e9 +int drawable module_common_icon_map_marker_pondingl2_white 0x7f0800ea +int drawable module_common_icon_map_marker_refuel 0x7f0800eb +int drawable module_common_icon_map_marker_road_block_off2 0x7f0800ec +int drawable module_common_icon_map_marker_road_block_off2_white 0x7f0800ed +int drawable module_common_icon_map_marker_road_block_up2 0x7f0800ee +int drawable module_common_icon_map_marker_road_block_up2_white 0x7f0800ef +int drawable module_common_icon_map_marker_road_check2 0x7f0800f0 +int drawable module_common_icon_map_marker_road_check2_white 0x7f0800f1 +int drawable module_common_icon_map_marker_road_work2 0x7f0800f2 +int drawable module_common_icon_map_marker_road_work2_white 0x7f0800f3 +int drawable module_common_icon_map_marker_shear_news 0x7f0800f4 +int drawable module_common_icon_map_marker_shop 0x7f0800f5 +int drawable module_common_icon_map_marker_shop_discount 0x7f0800f6 +int drawable module_common_icon_seek_help 0x7f0800f7 +int drawable module_common_icon_unlike_selected_vr 0x7f0800f8 +int drawable module_common_icon_unlike_vr 0x7f0800f9 +int drawable module_common_like_vr 0x7f0800fa +int drawable module_common_my_location_bg 0x7f0800fb +int drawable module_common_selector_call 0x7f0800fc +int drawable module_common_unlike_vr 0x7f0800fd +int drawable module_commons_dialog_bg 0x7f0800fe +int drawable module_commons_dialog_left_bg 0x7f0800ff +int drawable module_commons_dialog_right_bg 0x7f080100 +int drawable module_commons_heart_ratingbar_drawable 0x7f080101 +int drawable module_commons_shape_dlg_round_bkg 0x7f080102 +int drawable module_commons_shape_left_btn_bkg 0x7f080103 +int drawable module_commons_shape_right_btn_bkg 0x7f080104 +int drawable module_commons_toast_bkg 0x7f080105 +int drawable module_dw_common_corner_bkg_light 0x7f080106 +int drawable module_ext_check 0x7f080107 +int drawable module_ext_drawable_shadow_bg 0x7f080108 +int drawable module_ext_shadow_bkg 0x7f080109 +int drawable module_ext_shadow_bkg_pressed 0x7f08010a +int drawable module_hmi_autopilot_status_bg 0x7f08010b +int drawable module_hmi_autopilot_status_checked_bg 0x7f08010c +int drawable module_hmi_autopilot_status_disabled_bg 0x7f08010d +int drawable module_hmi_autopilot_status_enable_bg 0x7f08010e +int drawable module_hmi_warning_bkg_bottom 0x7f08010f +int drawable module_hmi_warning_bkg_left 0x7f080110 +int drawable module_hmi_warning_bkg_right 0x7f080111 +int drawable module_hmi_warning_bkg_top 0x7f080112 +int drawable module_map_amap_my_location_icon 0x7f080113 +int drawable module_service_ic_call 0x7f080114 +int drawable module_service_ic_rc_accident 0x7f080115 +int drawable module_service_ic_rc_accident2 0x7f080116 +int drawable module_service_ic_rc_accident3 0x7f080117 +int drawable module_service_ic_rc_accident3_white 0x7f080118 +int drawable module_service_ic_rc_dark_frog 0x7f080119 +int drawable module_service_ic_rc_dark_frog2 0x7f08011a +int drawable module_service_ic_rc_dark_frog2_white 0x7f08011b +int drawable module_service_ic_rc_freeze 0x7f08011c +int drawable module_service_ic_rc_freeze2 0x7f08011d +int drawable module_service_ic_rc_freeze2_white 0x7f08011e +int drawable module_service_ic_rc_illegal_park 0x7f08011f +int drawable module_service_ic_rc_illegal_park_white 0x7f080120 +int drawable module_service_ic_rc_parking 0x7f080121 +int drawable module_service_ic_rc_parking2 0x7f080122 +int drawable module_service_ic_rc_road_slippery 0x7f080123 +int drawable module_service_ic_rc_road_slippery_light 0x7f080124 +int drawable module_service_ic_seek_helping 0x7f080125 +int drawable module_services_marker_bkg 0x7f080126 +int drawable module_services_marker_vr_bkg 0x7f080127 +int drawable module_services_marker_vr_bkg_checked 0x7f080128 +int drawable module_switch_map_angle 0x7f080129 +int drawable module_switch_map_bg 0x7f08012a +int drawable mogo_image_accident_small 0x7f08012b +int drawable mogo_image_daolushigong_nor 0x7f08012c +int drawable mogo_image_daolushigong_small 0x7f08012d +int drawable mogo_image_fenglu_nor 0x7f08012e +int drawable mogo_image_fenglu_small 0x7f08012f +int drawable mogo_image_jiaotongjiancha_nor 0x7f080130 +int drawable mogo_image_jiaotongjiancha_small 0x7f080131 +int drawable mogo_image_jiaotongshigu_nor 0x7f080132 +int drawable mogo_image_jiebing_nor 0x7f080133 +int drawable mogo_image_jiebing_small 0x7f080134 +int drawable mogo_image_jishui_nor 0x7f080135 +int drawable mogo_image_jishui_small 0x7f080136 +int drawable mogo_image_nongwu_nor 0x7f080137 +int drawable mogo_image_nongwu_small 0x7f080138 +int drawable mogo_image_shishilukuang_small 0x7f080139 +int drawable mogo_image_shishlukuang_nor 0x7f08013a +int drawable mogo_image_yongdu_nor 0x7f08013b +int drawable mogo_image_yongdu_small 0x7f08013c +int drawable mtrl_dialog_background 0x7f08013d +int drawable mtrl_dropdown_arrow 0x7f08013e +int drawable mtrl_ic_arrow_drop_down 0x7f08013f +int drawable mtrl_ic_arrow_drop_up 0x7f080140 +int drawable mtrl_ic_cancel 0x7f080141 +int drawable mtrl_ic_error 0x7f080142 +int drawable mtrl_navigation_bar_item_background 0x7f080143 +int drawable mtrl_popupmenu_background 0x7f080144 +int drawable mtrl_popupmenu_background_dark 0x7f080145 +int drawable mtrl_tabs_default_indicator 0x7f080146 +int drawable navigation_empty_icon 0x7f080147 +int drawable notice_banner_default 0x7f080148 +int drawable notice_banner_icon_video 0x7f080149 +int drawable notice_player_ic_circle_nor 0x7f08014a +int drawable notice_seekbar_style 0x7f08014b +int drawable notice_video_after_pause 0x7f08014c +int drawable notice_video_pause 0x7f08014d +int drawable notice_video_play 0x7f08014e +int drawable notification_action_background 0x7f08014f +int drawable notification_bg 0x7f080150 +int drawable notification_bg_low 0x7f080151 +int drawable notification_bg_low_normal 0x7f080152 +int drawable notification_bg_low_pressed 0x7f080153 +int drawable notification_bg_normal 0x7f080154 +int drawable notification_bg_normal_pressed 0x7f080155 +int drawable notification_icon_background 0x7f080156 +int drawable notification_template_icon_bg 0x7f080157 +int drawable notification_template_icon_low_bg 0x7f080158 +int drawable notification_tile_bg 0x7f080159 +int drawable notify_panel_notification_icon_bg 0x7f08015a +int drawable placeholder 0x7f08015b +int drawable selector_call_btn_normal 0x7f08015c +int drawable selector_call_btn_pressed 0x7f08015d +int drawable sr 0x7f08015e +int drawable sy 0x7f08015f +int drawable test_custom_background 0x7f080160 +int drawable tooltip_frame_dark 0x7f080161 +int drawable tooltip_frame_light 0x7f080162 +int drawable unlock 0x7f080163 +int drawable utils_toast_bg 0x7f080164 +int drawable v2x_icon_ahead_car_brake 0x7f080165 +int drawable v2x_icon_car_collide_warning 0x7f080166 +int drawable v2x_icon_daolushigong_vr 0x7f080167 +int drawable v2x_icon_fenglu_vr 0x7f080168 +int drawable v2x_icon_jiaotongjiancha_vr 0x7f080169 +int drawable v2x_icon_jiaotongshigu_vr 0x7f08016a +int drawable v2x_icon_jiebing_vr 0x7f08016b +int drawable v2x_icon_jishui_vr 0x7f08016c +int drawable v2x_icon_live_logo 0x7f08016d +int drawable v2x_icon_nongwu_vr 0x7f08016e +int drawable v2x_icon_yongdu_vr 0x7f08016f +int drawable v_to_x_event_ugc_fenglu 0x7f080170 +int drawable v_to_x_event_ugc_shigu 0x7f080171 +int drawable v_to_x_event_ugc_yongdu 0x7f080172 +int drawable v_to_x_marker_1 0x7f080173 +int drawable v_to_x_marker_11 0x7f080174 +int drawable v_to_x_marker_16 0x7f080175 +int drawable v_to_x_marker_2 0x7f080176 +int drawable v_to_x_marker_3 0x7f080177 +int drawable v_to_x_marker_5 0x7f080178 +int drawable v_to_x_marker_6 0x7f080179 +int drawable v_to_x_marker_7 0x7f08017a +int drawable v_to_x_marker_8 0x7f08017b +int drawable v_to_x_marker_9 0x7f08017c +int drawable v_to_x_marker_express 0x7f08017d +int drawable v_to_x_marker_taxi 0x7f08017e +int drawable v_to_x_warning_car_red 0x7f08017f +int drawable video_back 0x7f080180 +int drawable video_backward_icon 0x7f080181 +int drawable video_brightness_6_white_36dp 0x7f080182 +int drawable video_click_error_selector 0x7f080183 +int drawable video_click_pause_selector 0x7f080184 +int drawable video_click_play_selector 0x7f080185 +int drawable video_dialog_progress 0x7f080186 +int drawable video_dialog_progress_bg 0x7f080187 +int drawable video_enlarge 0x7f080188 +int drawable video_error_normal 0x7f080189 +int drawable video_error_pressed 0x7f08018a +int drawable video_forward_icon 0x7f08018b +int drawable video_jump_btn_bg 0x7f08018c +int drawable video_loading 0x7f08018d +int drawable video_loading_bg 0x7f08018e +int drawable video_pause_normal 0x7f08018f +int drawable video_pause_pressed 0x7f080190 +int drawable video_play_normal 0x7f080191 +int drawable video_play_pressed 0x7f080192 +int drawable video_progress 0x7f080193 +int drawable video_seek_progress 0x7f080194 +int drawable video_seek_thumb 0x7f080195 +int drawable video_seek_thumb_normal 0x7f080196 +int drawable video_seek_thumb_pressed 0x7f080197 +int drawable video_shrink 0x7f080198 +int drawable video_small_close 0x7f080199 +int drawable video_title_bg 0x7f08019a +int drawable video_volume_icon 0x7f08019b +int drawable video_volume_progress_bg 0x7f08019c +int drawable yi_biao_pan_bg_nor 0x7f08019d +int drawable yi_biao_pan_bg_speeding 0x7f08019e +int id BOTTOM_END 0x7f0b0001 +int id BOTTOM_START 0x7f0b0002 +int id Full 0x7f0b0003 +int id Half 0x7f0b0004 +int id NO_DEBUG 0x7f0b0005 +int id SHOW_ALL 0x7f0b0006 +int id SHOW_PATH 0x7f0b0007 +int id SHOW_PROGRESS 0x7f0b0008 +int id TOP_END 0x7f0b0009 +int id TOP_START 0x7f0b000a +int id accelerate 0x7f0b000b +int id accessibility_action_clickable_span 0x7f0b000c +int id accessibility_custom_action_0 0x7f0b000d +int id accessibility_custom_action_1 0x7f0b000e +int id accessibility_custom_action_10 0x7f0b000f +int id accessibility_custom_action_11 0x7f0b0010 +int id accessibility_custom_action_12 0x7f0b0011 +int id accessibility_custom_action_13 0x7f0b0012 +int id accessibility_custom_action_14 0x7f0b0013 +int id accessibility_custom_action_15 0x7f0b0014 +int id accessibility_custom_action_16 0x7f0b0015 +int id accessibility_custom_action_17 0x7f0b0016 +int id accessibility_custom_action_18 0x7f0b0017 +int id accessibility_custom_action_19 0x7f0b0018 +int id accessibility_custom_action_2 0x7f0b0019 +int id accessibility_custom_action_20 0x7f0b001a +int id accessibility_custom_action_21 0x7f0b001b +int id accessibility_custom_action_22 0x7f0b001c +int id accessibility_custom_action_23 0x7f0b001d +int id accessibility_custom_action_24 0x7f0b001e +int id accessibility_custom_action_25 0x7f0b001f +int id accessibility_custom_action_26 0x7f0b0020 +int id accessibility_custom_action_27 0x7f0b0021 +int id accessibility_custom_action_28 0x7f0b0022 +int id accessibility_custom_action_29 0x7f0b0023 +int id accessibility_custom_action_3 0x7f0b0024 +int id accessibility_custom_action_30 0x7f0b0025 +int id accessibility_custom_action_31 0x7f0b0026 +int id accessibility_custom_action_4 0x7f0b0027 +int id accessibility_custom_action_5 0x7f0b0028 +int id accessibility_custom_action_6 0x7f0b0029 +int id accessibility_custom_action_7 0x7f0b002a +int id accessibility_custom_action_8 0x7f0b002b +int id accessibility_custom_action_9 0x7f0b002c +int id actionDown 0x7f0b002d +int id actionDownUp 0x7f0b002e +int id actionUp 0x7f0b002f +int id action_bar 0x7f0b0030 +int id action_bar_activity_content 0x7f0b0031 +int id action_bar_container 0x7f0b0032 +int id action_bar_root 0x7f0b0033 +int id action_bar_spinner 0x7f0b0034 +int id action_bar_subtitle 0x7f0b0035 +int id action_bar_title 0x7f0b0036 +int id action_container 0x7f0b0037 +int id action_context_bar 0x7f0b0038 +int id action_divider 0x7f0b0039 +int id action_image 0x7f0b003a +int id action_menu_divider 0x7f0b003b +int id action_menu_presenter 0x7f0b003c +int id action_mode_bar 0x7f0b003d +int id action_mode_bar_stub 0x7f0b003e +int id action_mode_close_button 0x7f0b003f +int id action_text 0x7f0b0040 +int id actions 0x7f0b0041 +int id activity_chooser_view_content 0x7f0b0042 +int id ad_full_id 0x7f0b0043 +int id ad_small_id 0x7f0b0044 +int id ad_time 0x7f0b0045 +int id add 0x7f0b0046 +int id alertTitle 0x7f0b0047 +int id aligned 0x7f0b0048 +int id allStates 0x7f0b0049 +int id animateToEnd 0x7f0b004a +int id animateToStart 0x7f0b004b +int id antiClockwise 0x7f0b004c +int id anticipate 0x7f0b004d +int id app_video_brightness 0x7f0b004e +int id app_video_brightness_box 0x7f0b004f +int id app_video_brightness_icon 0x7f0b0050 +int id arc 0x7f0b0051 +int id asConfigured 0x7f0b0052 +int id async 0x7f0b0053 +int id auto 0x7f0b0054 +int id autoComplete 0x7f0b0055 +int id autoCompleteToEnd 0x7f0b0056 +int id autoCompleteToStart 0x7f0b0057 +int id back 0x7f0b0058 +int id back_tiny 0x7f0b0059 +int id barrier 0x7f0b005a +int id baseline 0x7f0b005b +int id bestChoice 0x7f0b005c +int id bezier_view 0x7f0b005d +int id blocking 0x7f0b005e +int id bottom 0x7f0b005f +int id bottom_progressbar 0x7f0b0060 +int id bounce 0x7f0b0061 +int id buttonPanel 0x7f0b0062 +int id cancel_button 0x7f0b0063 +int id carryVelocity 0x7f0b0064 +int id center 0x7f0b0065 +int id centerCrop 0x7f0b0066 +int id centerInside 0x7f0b0067 +int id chain 0x7f0b0068 +int id checkbox 0x7f0b0069 +int id checked 0x7f0b006a +int id chip 0x7f0b006b +int id chip1 0x7f0b006c +int id chip2 0x7f0b006d +int id chip3 0x7f0b006e +int id chip_group 0x7f0b006f +int id chronometer 0x7f0b0070 +int id circle 0x7f0b0071 +int id circle_center 0x7f0b0072 +int id clMarkerContent 0x7f0b0073 +int id clMarkerTopView 0x7f0b0074 +int id clear_text 0x7f0b0075 +int id clockwise 0x7f0b0076 +int id closest 0x7f0b0077 +int id confirm_button 0x7f0b0078 +int id constraint 0x7f0b0079 +int id container 0x7f0b007a +int id content 0x7f0b007b +int id contentPanel 0x7f0b007c +int id contiguous 0x7f0b007d +int id continuousVelocity 0x7f0b007e +int id coordinator 0x7f0b007f +int id cos 0x7f0b0080 +int id counterclockwise 0x7f0b0081 +int id current 0x7f0b0082 +int id currentState 0x7f0b0083 +int id custom 0x7f0b0084 +int id customPanel 0x7f0b0085 +int id customRatingBar 0x7f0b0086 +int id cut 0x7f0b0087 +int id date_picker_actions 0x7f0b0088 +int id decelerate 0x7f0b0089 +int id decelerateAndComplete 0x7f0b008a +int id decor_content_parent 0x7f0b008b +int id default_activity_button 0x7f0b008c +int id deltaRelative 0x7f0b008d +int id design_bottom_sheet 0x7f0b008e +int id design_menu_item_action_area 0x7f0b008f +int id design_menu_item_action_area_stub 0x7f0b0090 +int id design_menu_item_text 0x7f0b0091 +int id design_navigation_view 0x7f0b0092 +int id dialog_button 0x7f0b0093 +int id disjoint 0x7f0b0094 +int id dragAnticlockwise 0x7f0b0095 +int id dragClockwise 0x7f0b0096 +int id dragDown 0x7f0b0097 +int id dragEnd 0x7f0b0098 +int id dragLeft 0x7f0b0099 +int id dragRight 0x7f0b009a +int id dragStart 0x7f0b009b +int id dragUp 0x7f0b009c +int id dropdown_menu 0x7f0b009d +int id duration_image_tip 0x7f0b009e +int id duration_progressbar 0x7f0b009f +int id easeIn 0x7f0b00a0 +int id easeInOut 0x7f0b00a1 +int id easeOut 0x7f0b00a2 +int id east 0x7f0b00a3 +int id edit_query 0x7f0b00a4 +int id elastic 0x7f0b00a5 +int id end 0x7f0b00a6 +int id endToStart 0x7f0b00a7 +int id exo_artwork 0x7f0b00a8 +int id exo_content_frame 0x7f0b00a9 +int id exo_controller_placeholder 0x7f0b00aa +int id exo_duration 0x7f0b00ab +int id exo_ffwd 0x7f0b00ac +int id exo_next 0x7f0b00ad +int id exo_overlay 0x7f0b00ae +int id exo_pause 0x7f0b00af +int id exo_play 0x7f0b00b0 +int id exo_position 0x7f0b00b1 +int id exo_prev 0x7f0b00b2 +int id exo_progress 0x7f0b00b3 +int id exo_rew 0x7f0b00b4 +int id exo_shutter 0x7f0b00b5 +int id exo_subtitles 0x7f0b00b6 +int id expand_activities_button 0x7f0b00b7 +int id expanded_menu 0x7f0b00b8 +int id fade 0x7f0b00b9 +int id fill 0x7f0b00ba +int id filled 0x7f0b00bb +int id fit 0x7f0b00bc +int id fitBottomStart 0x7f0b00bd +int id fitCenter 0x7f0b00be +int id fitEnd 0x7f0b00bf +int id fitStart 0x7f0b00c0 +int id fitXY 0x7f0b00c1 +int id fixed 0x7f0b00c2 +int id fixed_height 0x7f0b00c3 +int id fixed_width 0x7f0b00c4 +int id flip 0x7f0b00c5 +int id floating 0x7f0b00c6 +int id focusCrop 0x7f0b00c7 +int id forever 0x7f0b00c8 +int id fragment_container_view_tag 0x7f0b00c9 +int id frost 0x7f0b00ca +int id full_id 0x7f0b00cb +int id fullscreen 0x7f0b00cc +int id ghost_view 0x7f0b00cd +int id ghost_view_holder 0x7f0b00ce +int id glide_custom_view_target_tag 0x7f0b00cf +int id gone 0x7f0b00d0 +int id group_divider 0x7f0b00d1 +int id guideline 0x7f0b00d2 +int id header_title 0x7f0b00d3 +int id home 0x7f0b00d4 +int id honorRequest 0x7f0b00d5 +int id horizontal 0x7f0b00d6 +int id horizontal_only 0x7f0b00d7 +int id icon 0x7f0b00d8 +int id icon_group 0x7f0b00d9 +int id ignore 0x7f0b00da +int id ignoreRequest 0x7f0b00db +int id image 0x7f0b00dc +int id immediateStop 0x7f0b00dd +int id included 0x7f0b00de +int id info 0x7f0b00df +int id invisible 0x7f0b00e0 +int id inward 0x7f0b00e1 +int id italic 0x7f0b00e2 +int id item_touch_helper_previous_elevation 0x7f0b00e3 +int id item_video_cover 0x7f0b00e4 +int id ivCar 0x7f0b00e5 +int id ivIcon 0x7f0b00e6 +int id ivReverseTriangle 0x7f0b00e7 +int id ivUserHead 0x7f0b00e8 +int id iv_camera_traffic 0x7f0b00e9 +int id jumpToEnd 0x7f0b00ea +int id jumpToStart 0x7f0b00eb +int id jump_ad 0x7f0b00ec +int id labeled 0x7f0b00ed +int id layout 0x7f0b00ee +int id layout_bottom 0x7f0b00ef +int id layout_top 0x7f0b00f0 +int id left 0x7f0b00f1 +int id leftToRight 0x7f0b00f2 +int id line1 0x7f0b00f3 +int id line3 0x7f0b00f4 +int id linear 0x7f0b00f5 +int id listMode 0x7f0b00f6 +int id list_item 0x7f0b00f7 +int id loading 0x7f0b00f8 +int id loading_imageview 0x7f0b00f9 +int id loading_liner_layout 0x7f0b00fa +int id loading_text 0x7f0b00fb +int id lock_screen 0x7f0b00fc +int id masked 0x7f0b00fd +int id match_constraint 0x7f0b00fe +int id match_parent 0x7f0b00ff +int id material_clock_display 0x7f0b0100 +int id material_clock_face 0x7f0b0101 +int id material_clock_hand 0x7f0b0102 +int id material_clock_period_am_button 0x7f0b0103 +int id material_clock_period_pm_button 0x7f0b0104 +int id material_clock_period_toggle 0x7f0b0105 +int id material_hour_text_input 0x7f0b0106 +int id material_hour_tv 0x7f0b0107 +int id material_label 0x7f0b0108 +int id material_minute_text_input 0x7f0b0109 +int id material_minute_tv 0x7f0b010a +int id material_textinput_timepicker 0x7f0b010b +int id material_timepicker_cancel_button 0x7f0b010c +int id material_timepicker_container 0x7f0b010d +int id material_timepicker_edit_text 0x7f0b010e +int id material_timepicker_mode_button 0x7f0b010f +int id material_timepicker_ok_button 0x7f0b0110 +int id material_timepicker_view 0x7f0b0111 +int id material_value_index 0x7f0b0112 +int id message 0x7f0b0113 +int id middle 0x7f0b0114 +int id mini 0x7f0b0115 +int id module_commons_marker_car_model 0x7f0b0116 +int id module_commons_toast_left_drawable 0x7f0b0117 +int id module_commons_toast_msg 0x7f0b0118 +int id module_commons_wm_dialog_button_cancel 0x7f0b0119 +int id module_commons_wm_dialog_button_ok 0x7f0b011a +int id module_commons_wm_dialog_content 0x7f0b011b +int id module_map_amap_my_location_bg_iv 0x7f0b011c +int id module_map_amap_my_location_iv 0x7f0b011d +int id month_grid 0x7f0b011e +int id month_navigation_bar 0x7f0b011f +int id month_navigation_fragment_toggle 0x7f0b0120 +int id month_navigation_next 0x7f0b0121 +int id month_navigation_previous 0x7f0b0122 +int id month_title 0x7f0b0123 +int id motion_base 0x7f0b0124 +int id mtrl_anchor_parent 0x7f0b0125 +int id mtrl_calendar_day_selector_frame 0x7f0b0126 +int id mtrl_calendar_days_of_week 0x7f0b0127 +int id mtrl_calendar_frame 0x7f0b0128 +int id mtrl_calendar_main_pane 0x7f0b0129 +int id mtrl_calendar_months 0x7f0b012a +int id mtrl_calendar_selection_frame 0x7f0b012b +int id mtrl_calendar_text_input_frame 0x7f0b012c +int id mtrl_calendar_year_selector_frame 0x7f0b012d +int id mtrl_card_checked_layer_id 0x7f0b012e +int id mtrl_child_content_container 0x7f0b012f +int id mtrl_internal_children_alpha_tag 0x7f0b0130 +int id mtrl_motion_snapshot_view 0x7f0b0131 +int id mtrl_picker_fullscreen 0x7f0b0132 +int id mtrl_picker_header 0x7f0b0133 +int id mtrl_picker_header_selection_text 0x7f0b0134 +int id mtrl_picker_header_title_and_selection 0x7f0b0135 +int id mtrl_picker_header_toggle 0x7f0b0136 +int id mtrl_picker_text_input_date 0x7f0b0137 +int id mtrl_picker_text_input_range_end 0x7f0b0138 +int id mtrl_picker_text_input_range_start 0x7f0b0139 +int id mtrl_picker_title_text 0x7f0b013a +int id mtrl_view_tag_bottom_padding 0x7f0b013b +int id multiply 0x7f0b013c +int id navigation_bar_item_icon_view 0x7f0b013d +int id navigation_bar_item_labels_group 0x7f0b013e +int id navigation_bar_item_large_label_view 0x7f0b013f +int id navigation_bar_item_small_label_view 0x7f0b0140 +int id navigation_header_container 0x7f0b0141 +int id neverCompleteToEnd 0x7f0b0142 +int id neverCompleteToStart 0x7f0b0143 +int id noState 0x7f0b0144 +int id none 0x7f0b0145 +int id normal 0x7f0b0146 +int id north 0x7f0b0147 +int id notification_background 0x7f0b0148 +int id notification_main_column 0x7f0b0149 +int id notification_main_column_container 0x7f0b014a +int id off 0x7f0b014b +int id on 0x7f0b014c +int id outline 0x7f0b014d +int id outward 0x7f0b014e +int id overshoot 0x7f0b014f +int id packed 0x7f0b0150 +int id parallax 0x7f0b0151 +int id parent 0x7f0b0152 +int id parentPanel 0x7f0b0153 +int id parentRelative 0x7f0b0154 +int id parent_matrix 0x7f0b0155 +int id password_toggle 0x7f0b0156 +int id path 0x7f0b0157 +int id pathRelative 0x7f0b0158 +int id percent 0x7f0b0159 +int id pin 0x7f0b015a +int id position 0x7f0b015b +int id postLayout 0x7f0b015c +int id preview_layout 0x7f0b015d +int id progress 0x7f0b015e +int id progress_circular 0x7f0b015f +int id progress_horizontal 0x7f0b0160 +int id radio 0x7f0b0161 +int id rectangles 0x7f0b0162 +int id refresh_button 0x7f0b0163 +int id reverseSawtooth 0x7f0b0164 +int id right 0x7f0b0165 +int id rightToLeft 0x7f0b0166 +int id right_icon 0x7f0b0167 +int id right_side 0x7f0b0168 +int id round 0x7f0b0169 +int id rounded 0x7f0b016a +int id row_index_key 0x7f0b016b +int id save_non_transition_alpha 0x7f0b016c +int id save_overlay_view 0x7f0b016d +int id sawtooth 0x7f0b016e +int id scale 0x7f0b016f +int id screen 0x7f0b0170 +int id scrollIndicatorDown 0x7f0b0171 +int id scrollIndicatorUp 0x7f0b0172 +int id scrollView 0x7f0b0173 +int id scrollable 0x7f0b0174 +int id search_badge 0x7f0b0175 +int id search_bar 0x7f0b0176 +int id search_button 0x7f0b0177 +int id search_close_btn 0x7f0b0178 +int id search_edit_frame 0x7f0b0179 +int id search_go_btn 0x7f0b017a +int id search_mag_icon 0x7f0b017b +int id search_plate 0x7f0b017c +int id search_src_text 0x7f0b017d +int id search_voice_btn 0x7f0b017e +int id select_dialog_listview 0x7f0b017f +int id selected 0x7f0b0180 +int id selection_type 0x7f0b0181 +int id shape_id 0x7f0b0182 +int id sharedValueSet 0x7f0b0183 +int id sharedValueUnset 0x7f0b0184 +int id shortcut 0x7f0b0185 +int id sin 0x7f0b0186 +int id skipped 0x7f0b0187 +int id slide 0x7f0b0188 +int id small_close 0x7f0b0189 +int id small_id 0x7f0b018a +int id snackbar_action 0x7f0b018b +int id snackbar_text 0x7f0b018c +int id south 0x7f0b018d +int id spacer 0x7f0b018e +int id special_effects_controller_view_tag 0x7f0b018f +int id spline 0x7f0b0190 +int id split_action_bar 0x7f0b0191 +int id spread 0x7f0b0192 +int id spread_inside 0x7f0b0193 +int id spring 0x7f0b0194 +int id square 0x7f0b0195 +int id src_atop 0x7f0b0196 +int id src_in 0x7f0b0197 +int id src_over 0x7f0b0198 +int id standard 0x7f0b0199 +int id start 0x7f0b019a +int id startHorizontal 0x7f0b019b +int id startToEnd 0x7f0b019c +int id startVertical 0x7f0b019d +int id staticLayout 0x7f0b019e +int id staticPostLayout 0x7f0b019f +int id stop 0x7f0b01a0 +int id stretch 0x7f0b01a1 +int id submenuarrow 0x7f0b01a2 +int id submit_area 0x7f0b01a3 +int id surface_container 0x7f0b01a4 +int id surface_view 0x7f0b01a5 +int id tabMode 0x7f0b01a6 +int id tag_accessibility_actions 0x7f0b01a7 +int id tag_accessibility_clickable_spans 0x7f0b01a8 +int id tag_accessibility_heading 0x7f0b01a9 +int id tag_accessibility_pane_title 0x7f0b01aa +int id tag_click_time 0x7f0b01ab +int id tag_on_apply_window_listener 0x7f0b01ac +int id tag_on_receive_content_listener 0x7f0b01ad +int id tag_on_receive_content_mime_types 0x7f0b01ae +int id tag_screen_reader_focusable 0x7f0b01af +int id tag_state_description 0x7f0b01b0 +int id tag_transition_group 0x7f0b01b1 +int id tag_unhandled_key_event_manager 0x7f0b01b2 +int id tag_unhandled_key_listeners 0x7f0b01b3 +int id tag_window_insets_animation_callback 0x7f0b01b4 +int id test_checkbox_android_button_tint 0x7f0b01b5 +int id test_checkbox_app_button_tint 0x7f0b01b6 +int id test_radiobutton_android_button_tint 0x7f0b01b7 +int id test_radiobutton_app_button_tint 0x7f0b01b8 +int id text 0x7f0b01b9 +int id text2 0x7f0b01ba +int id textSpacerNoButtons 0x7f0b01bb +int id textSpacerNoTitle 0x7f0b01bc +int id text_input_end_icon 0x7f0b01bd +int id text_input_error_icon 0x7f0b01be +int id text_input_start_icon 0x7f0b01bf +int id textinput_counter 0x7f0b01c0 +int id textinput_error 0x7f0b01c1 +int id textinput_helper_text 0x7f0b01c2 +int id textinput_placeholder 0x7f0b01c3 +int id textinput_prefix_text 0x7f0b01c4 +int id textinput_suffix_text 0x7f0b01c5 +int id texture_view 0x7f0b01c6 +int id thumb 0x7f0b01c7 +int id thumbImage 0x7f0b01c8 +int id time 0x7f0b01c9 +int id title 0x7f0b01ca +int id titleDividerNoCustom 0x7f0b01cb +int id title_template 0x7f0b01cc +int id top 0x7f0b01cd +int id topPanel 0x7f0b01ce +int id total 0x7f0b01cf +int id touch_outside 0x7f0b01d0 +int id transition_current_scene 0x7f0b01d1 +int id transition_layout_save 0x7f0b01d2 +int id transition_position 0x7f0b01d3 +int id transition_scene_layoutid_cache 0x7f0b01d4 +int id transition_transform 0x7f0b01d5 +int id triangle 0x7f0b01d6 +int id tvMarkerContent 0x7f0b01d7 +int id tv_current 0x7f0b01d8 +int id tv_duration 0x7f0b01d9 +int id unchecked 0x7f0b01da +int id uniform 0x7f0b01db +int id unlabeled 0x7f0b01dc +int id up 0x7f0b01dd +int id utvBottomIconView 0x7f0b01de +int id utvLeftIconView 0x7f0b01df +int id utvRightIconView 0x7f0b01e0 +int id utvTopIconView 0x7f0b01e1 +int id vertical 0x7f0b01e2 +int id vertical_only 0x7f0b01e3 +int id view_lifecycle_owner 0x7f0b01e4 +int id view_offset_helper 0x7f0b01e5 +int id view_transition 0x7f0b01e6 +int id view_tree_lifecycle_owner 0x7f0b01e7 +int id view_tree_saved_state_registry_owner 0x7f0b01e8 +int id view_tree_view_model_store_owner 0x7f0b01e9 +int id visible 0x7f0b01ea +int id visible_removing_fragment_view_tag 0x7f0b01eb +int id volume_progressbar 0x7f0b01ec +int id west 0x7f0b01ed +int id widget_container 0x7f0b01ee +int id withinBounds 0x7f0b01ef +int id wrap 0x7f0b01f0 +int id wrap_content 0x7f0b01f1 +int id wrap_content_constrained 0x7f0b01f2 +int id x_left 0x7f0b01f3 +int id x_right 0x7f0b01f4 +int id zero_corner_chip 0x7f0b01f5 +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer app_bar_elevation_anim_duration 0x7f0c0003 +int integer bottom_sheet_slide_duration 0x7f0c0004 +int integer cancel_button_image_alpha 0x7f0c0005 +int integer config_tooltipAnimTime 0x7f0c0006 +int integer design_snackbar_text_max_lines 0x7f0c0007 +int integer design_tab_indicator_anim_duration_ms 0x7f0c0008 +int integer hide_password_duration 0x7f0c0009 +int integer material_motion_duration_long_1 0x7f0c000a +int integer material_motion_duration_long_2 0x7f0c000b +int integer material_motion_duration_medium_1 0x7f0c000c +int integer material_motion_duration_medium_2 0x7f0c000d +int integer material_motion_duration_short_1 0x7f0c000e +int integer material_motion_duration_short_2 0x7f0c000f +int integer material_motion_path 0x7f0c0010 +int integer mtrl_badge_max_character_count 0x7f0c0011 +int integer mtrl_btn_anim_delay_ms 0x7f0c0012 +int integer mtrl_btn_anim_duration_ms 0x7f0c0013 +int integer mtrl_calendar_header_orientation 0x7f0c0014 +int integer mtrl_calendar_selection_text_lines 0x7f0c0015 +int integer mtrl_calendar_year_selector_span 0x7f0c0016 +int integer mtrl_card_anim_delay_ms 0x7f0c0017 +int integer mtrl_card_anim_duration_ms 0x7f0c0018 +int integer mtrl_chip_anim_duration 0x7f0c0019 +int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c001a +int integer show_password_duration 0x7f0c001b +int integer status_bar_notification_info_maxnum 0x7f0c001c +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int interpolator mtrl_fast_out_linear_in 0x7f0d0008 +int interpolator mtrl_fast_out_slow_in 0x7f0d0009 +int interpolator mtrl_linear 0x7f0d000a +int interpolator mtrl_linear_out_slow_in 0x7f0d000b +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout custom_dialog 0x7f0e001d +int layout design_bottom_navigation_item 0x7f0e001e +int layout design_bottom_sheet_dialog 0x7f0e001f +int layout design_layout_snackbar 0x7f0e0020 +int layout design_layout_snackbar_include 0x7f0e0021 +int layout design_layout_tab_icon 0x7f0e0022 +int layout design_layout_tab_text 0x7f0e0023 +int layout design_menu_item_action_area 0x7f0e0024 +int layout design_navigation_item 0x7f0e0025 +int layout design_navigation_item_header 0x7f0e0026 +int layout design_navigation_item_separator 0x7f0e0027 +int layout design_navigation_item_subheader 0x7f0e0028 +int layout design_navigation_menu 0x7f0e0029 +int layout design_navigation_menu_item 0x7f0e002a +int layout design_text_input_end_icon 0x7f0e002b +int layout design_text_input_start_icon 0x7f0e002c +int layout exo_playback_control_view 0x7f0e002d +int layout exo_simple_player_view 0x7f0e002e +int layout item_notice_video 0x7f0e002f +int layout item_notice_video_small 0x7f0e0030 +int layout item_v2x_crossroad_live_video 0x7f0e0031 +int layout material_chip_input_combo 0x7f0e0032 +int layout material_clock_display 0x7f0e0033 +int layout material_clock_display_divider 0x7f0e0034 +int layout material_clock_period_toggle 0x7f0e0035 +int layout material_clock_period_toggle_land 0x7f0e0036 +int layout material_clockface_textview 0x7f0e0037 +int layout material_clockface_view 0x7f0e0038 +int layout material_radial_view_group 0x7f0e0039 +int layout material_textinput_timepicker 0x7f0e003a +int layout material_time_chip 0x7f0e003b +int layout material_time_input 0x7f0e003c +int layout material_timepicker 0x7f0e003d +int layout material_timepicker_dialog 0x7f0e003e +int layout material_timepicker_textinput_display 0x7f0e003f +int layout modeules_commons_layout_custom_ratingbar 0x7f0e0040 +int layout modudle_camera_layout_info 0x7f0e0041 +int layout modudle_services_marker_layout 0x7f0e0042 +int layout modudle_services_marker_layout_info 0x7f0e0043 +int layout modudle_services_marker_vr_layout 0x7f0e0044 +int layout module_common_bezier_layout 0x7f0e0045 +int layout module_common_my_location 0x7f0e0046 +int layout module_common_warning_marker_bottom 0x7f0e0047 +int layout module_common_warning_marker_front 0x7f0e0048 +int layout module_commons_layout_car 0x7f0e0049 +int layout module_commons_layout_toast 0x7f0e004a +int layout module_commons_layout_toast_with_left_drawable 0x7f0e004b +int layout module_commons_layout_wm_dialog 0x7f0e004c +int layout mtrl_alert_dialog 0x7f0e004d +int layout mtrl_alert_dialog_actions 0x7f0e004e +int layout mtrl_alert_dialog_title 0x7f0e004f +int layout mtrl_alert_select_dialog_item 0x7f0e0050 +int layout mtrl_alert_select_dialog_multichoice 0x7f0e0051 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0e0052 +int layout mtrl_calendar_day 0x7f0e0053 +int layout mtrl_calendar_day_of_week 0x7f0e0054 +int layout mtrl_calendar_days_of_week 0x7f0e0055 +int layout mtrl_calendar_horizontal 0x7f0e0056 +int layout mtrl_calendar_month 0x7f0e0057 +int layout mtrl_calendar_month_labeled 0x7f0e0058 +int layout mtrl_calendar_month_navigation 0x7f0e0059 +int layout mtrl_calendar_months 0x7f0e005a +int layout mtrl_calendar_vertical 0x7f0e005b +int layout mtrl_calendar_year 0x7f0e005c +int layout mtrl_layout_snackbar 0x7f0e005d +int layout mtrl_layout_snackbar_include 0x7f0e005e +int layout mtrl_navigation_rail_item 0x7f0e005f +int layout mtrl_picker_actions 0x7f0e0060 +int layout mtrl_picker_dialog 0x7f0e0061 +int layout mtrl_picker_fullscreen 0x7f0e0062 +int layout mtrl_picker_header_dialog 0x7f0e0063 +int layout mtrl_picker_header_fullscreen 0x7f0e0064 +int layout mtrl_picker_header_selection_text 0x7f0e0065 +int layout mtrl_picker_header_title_text 0x7f0e0066 +int layout mtrl_picker_header_toggle 0x7f0e0067 +int layout mtrl_picker_text_input_date 0x7f0e0068 +int layout mtrl_picker_text_input_date_range 0x7f0e0069 +int layout network_loading_item 0x7f0e006a +int layout notice_video_card_layout 0x7f0e006b +int layout notification_action 0x7f0e006c +int layout notification_action_tombstone 0x7f0e006d +int layout notification_template_custom_big 0x7f0e006e +int layout notification_template_icon_group 0x7f0e006f +int layout notification_template_part_chronometer 0x7f0e0070 +int layout notification_template_part_time 0x7f0e0071 +int layout select_dialog_item_material 0x7f0e0072 +int layout select_dialog_multichoice_material 0x7f0e0073 +int layout select_dialog_singlechoice_material 0x7f0e0074 +int layout support_simple_spinner_dropdown_item 0x7f0e0075 +int layout test_action_chip 0x7f0e0076 +int layout test_chip_zero_corner_radius 0x7f0e0077 +int layout test_design_checkbox 0x7f0e0078 +int layout test_design_radiobutton 0x7f0e0079 +int layout test_navigation_bar_item_layout 0x7f0e007a +int layout test_reflow_chipgroup 0x7f0e007b +int layout test_toolbar 0x7f0e007c +int layout test_toolbar_custom_background 0x7f0e007d +int layout test_toolbar_elevation 0x7f0e007e +int layout test_toolbar_surface 0x7f0e007f +int layout text_view_with_line_height_from_appearance 0x7f0e0080 +int layout text_view_with_line_height_from_layout 0x7f0e0081 +int layout text_view_with_line_height_from_style 0x7f0e0082 +int layout text_view_with_theme_line_height 0x7f0e0083 +int layout text_view_without_line_height 0x7f0e0084 +int layout utils_toast_view 0x7f0e0085 +int layout video_brightness 0x7f0e0086 +int layout video_layout_ad 0x7f0e0087 +int layout video_layout_custom 0x7f0e0088 +int layout video_layout_normal 0x7f0e0089 +int layout video_layout_sample_ad 0x7f0e008a +int layout video_layout_standard 0x7f0e008b +int layout video_progress_dialog 0x7f0e008c +int layout video_volume_dialog 0x7f0e008d +int plurals mtrl_badge_content_description 0x7f120001 +int raw call 0x7f130001 +int raw chuzuche 0x7f130002 +int raw fangkuang 0x7f130003 +int raw jiantou 0x7f130004 +int raw match1 0x7f130005 +int raw match2 0x7f130006 +int raw match3 0x7f130007 +int raw qfpz 0x7f130008 +int raw shexiangtou 0x7f130009 +int raw special_vehicle 0x7f13000a +int raw stopline 0x7f13000b +int raw traffic_daba 0x7f13000c +int raw traffic_kache 0x7f13000d +int raw traffic_motuoche 0x7f13000e +int raw traffic_people 0x7f13000f +int raw traffic_tachexiaoche 0x7f130010 +int raw traffic_unkonwn 0x7f130011 +int raw traffic_zixingche 0x7f130012 +int raw v2x_daolujiebing 0x7f130013 +int raw v2x_daolujishui 0x7f130014 +int raw v2x_daolushigong 0x7f130015 +int raw v2x_guzhangqiuzhu 0x7f130016 +int raw v2x_jiaotongjiancha 0x7f130017 +int raw v2x_nongwu 0x7f130018 +int raw v2x_shigong_warning 0x7f130019 +int raw v2x_shigu 0x7f13001a +int raw v2x_shishilukuang 0x7f13001b +int raw v2x_yongdu 0x7f13001c +int raw xiaobache 0x7f13001d +int raw ziche 0x7f13001e +int string N_A 0x7f140001 +int string TrackType_audio 0x7f140002 +int string TrackType_metadata 0x7f140003 +int string TrackType_subtitle 0x7f140004 +int string TrackType_timedtext 0x7f140005 +int string TrackType_unknown 0x7f140006 +int string TrackType_video 0x7f140007 +int string VideoView_ar_16_9_fit_parent 0x7f140008 +int string VideoView_ar_4_3_fit_parent 0x7f140009 +int string VideoView_ar_aspect_fill_parent 0x7f14000a +int string VideoView_ar_aspect_fit_parent 0x7f14000b +int string VideoView_ar_aspect_wrap_content 0x7f14000c +int string VideoView_ar_match_parent 0x7f14000d +int string VideoView_error_button 0x7f14000e +int string VideoView_error_text_invalid_progressive_playback 0x7f14000f +int string VideoView_error_text_unknown 0x7f140010 +int string VideoView_info_text_video_not_supported 0x7f140011 +int string VideoView_player_AndroidMediaPlayer 0x7f140012 +int string VideoView_player_IjkExoMediaPlayer 0x7f140013 +int string VideoView_player_IjkMediaPlayer 0x7f140014 +int string VideoView_player_none 0x7f140015 +int string VideoView_render_none 0x7f140016 +int string VideoView_render_surface_view 0x7f140017 +int string VideoView_render_texture_view 0x7f140018 +int string a_cache 0x7f140019 +int string abc_action_bar_home_description 0x7f14001a +int string abc_action_bar_up_description 0x7f14001b +int string abc_action_menu_overflow_description 0x7f14001c +int string abc_action_mode_done 0x7f14001d +int string abc_activity_chooser_view_see_all 0x7f14001e +int string abc_activitychooserview_choose_application 0x7f14001f +int string abc_capital_off 0x7f140020 +int string abc_capital_on 0x7f140021 +int string abc_font_family_body_1_material 0x7f140022 +int string abc_font_family_body_2_material 0x7f140023 +int string abc_font_family_button_material 0x7f140024 +int string abc_font_family_caption_material 0x7f140025 +int string abc_font_family_display_1_material 0x7f140026 +int string abc_font_family_display_2_material 0x7f140027 +int string abc_font_family_display_3_material 0x7f140028 +int string abc_font_family_display_4_material 0x7f140029 +int string abc_font_family_headline_material 0x7f14002a +int string abc_font_family_menu_material 0x7f14002b +int string abc_font_family_subhead_material 0x7f14002c +int string abc_font_family_title_material 0x7f14002d +int string abc_menu_alt_shortcut_label 0x7f14002e +int string abc_menu_ctrl_shortcut_label 0x7f14002f +int string abc_menu_delete_shortcut_label 0x7f140030 +int string abc_menu_enter_shortcut_label 0x7f140031 +int string abc_menu_function_shortcut_label 0x7f140032 +int string abc_menu_meta_shortcut_label 0x7f140033 +int string abc_menu_shift_shortcut_label 0x7f140034 +int string abc_menu_space_shortcut_label 0x7f140035 +int string abc_menu_sym_shortcut_label 0x7f140036 +int string abc_prepend_shortcut_label 0x7f140037 +int string abc_search_hint 0x7f140038 +int string abc_searchview_description_clear 0x7f140039 +int string abc_searchview_description_query 0x7f14003a +int string abc_searchview_description_search 0x7f14003b +int string abc_searchview_description_submit 0x7f14003c +int string abc_searchview_description_voice 0x7f14003d +int string abc_shareactionprovider_share_with 0x7f14003e +int string abc_shareactionprovider_share_with_application 0x7f14003f +int string abc_toolbar_collapse_description 0x7f140040 +int string androidx_startup 0x7f140041 +int string app_name 0x7f140042 +int string appbar_scrolling_view_behavior 0x7f140043 +int string bit_rate 0x7f140044 +int string bottom_sheet_behavior 0x7f140045 +int string bottomsheet_action_expand_halfway 0x7f140046 +int string character_counter_content_description 0x7f140047 +int string character_counter_overflowed_content_description 0x7f140048 +int string character_counter_pattern 0x7f140049 +int string chip_text 0x7f14004a +int string clear_text_end_icon_content_description 0x7f14004b +int string close 0x7f14004c +int string error_icon_content_description 0x7f14004d +int string exit 0x7f14004e +int string exo_controls_fastforward_description 0x7f14004f +int string exo_controls_next_description 0x7f140050 +int string exo_controls_pause_description 0x7f140051 +int string exo_controls_play_description 0x7f140052 +int string exo_controls_previous_description 0x7f140053 +int string exo_controls_rewind_description 0x7f140054 +int string exo_controls_stop_description 0x7f140055 +int string exposed_dropdown_menu_content_description 0x7f140056 +int string fab_transformation_scrim_behavior 0x7f140057 +int string fab_transformation_sheet_behavior 0x7f140058 +int string file_not_support 0x7f140059 +int string fps 0x7f14005a +int string hide_bottom_view_on_scroll_behavior 0x7f14005b +int string icon_content_description 0x7f14005c +int string ijkplayer_dummy 0x7f14005d +int string item_view_role_description 0x7f14005e +int string jump_ad 0x7f14005f +int string load_cost 0x7f140060 +int string material_clock_display_divider 0x7f140061 +int string material_clock_toggle_content_description 0x7f140062 +int string material_hour_selection 0x7f140063 +int string material_hour_suffix 0x7f140064 +int string material_minute_selection 0x7f140065 +int string material_minute_suffix 0x7f140066 +int string material_motion_easing_accelerated 0x7f140067 +int string material_motion_easing_decelerated 0x7f140068 +int string material_motion_easing_emphasized 0x7f140069 +int string material_motion_easing_linear 0x7f14006a +int string material_motion_easing_standard 0x7f14006b +int string material_slider_range_end 0x7f14006c +int string material_slider_range_start 0x7f14006d +int string material_timepicker_am 0x7f14006e +int string material_timepicker_clock_mode_description 0x7f14006f +int string material_timepicker_hour 0x7f140070 +int string material_timepicker_minute 0x7f140071 +int string material_timepicker_pm 0x7f140072 +int string material_timepicker_select_time 0x7f140073 +int string material_timepicker_text_input_mode_description 0x7f140074 +int string media_information 0x7f140075 +int string mi__selected_audio_track 0x7f140076 +int string mi__selected_subtitle_track 0x7f140077 +int string mi__selected_video_track 0x7f140078 +int string mi_bit_rate 0x7f140079 +int string mi_channels 0x7f14007a +int string mi_codec 0x7f14007b +int string mi_frame_rate 0x7f14007c +int string mi_language 0x7f14007d +int string mi_length 0x7f14007e +int string mi_media 0x7f14007f +int string mi_pixel_format 0x7f140080 +int string mi_player 0x7f140081 +int string mi_profile_level 0x7f140082 +int string mi_resolution 0x7f140083 +int string mi_sample_rate 0x7f140084 +int string mi_stream_fmt1 0x7f140085 +int string mi_type 0x7f140086 +int string module_commons_button_cancel 0x7f140087 +int string module_commons_button_ok 0x7f140088 +int string module_commons_exit_navi_content 0x7f140089 +int string module_map_model_faster 0x7f14008a +int string module_map_model_normal 0x7f14008b +int string mtrl_badge_numberless_content_description 0x7f14008c +int string mtrl_chip_close_icon_content_description 0x7f14008d +int string mtrl_exceed_max_badge_number_content_description 0x7f14008e +int string mtrl_exceed_max_badge_number_suffix 0x7f14008f +int string mtrl_picker_a11y_next_month 0x7f140090 +int string mtrl_picker_a11y_prev_month 0x7f140091 +int string mtrl_picker_announce_current_selection 0x7f140092 +int string mtrl_picker_cancel 0x7f140093 +int string mtrl_picker_confirm 0x7f140094 +int string mtrl_picker_date_header_selected 0x7f140095 +int string mtrl_picker_date_header_title 0x7f140096 +int string mtrl_picker_date_header_unselected 0x7f140097 +int string mtrl_picker_day_of_week_column_header 0x7f140098 +int string mtrl_picker_invalid_format 0x7f140099 +int string mtrl_picker_invalid_format_example 0x7f14009a +int string mtrl_picker_invalid_format_use 0x7f14009b +int string mtrl_picker_invalid_range 0x7f14009c +int string mtrl_picker_navigate_to_year_description 0x7f14009d +int string mtrl_picker_out_of_range 0x7f14009e +int string mtrl_picker_range_header_only_end_selected 0x7f14009f +int string mtrl_picker_range_header_only_start_selected 0x7f1400a0 +int string mtrl_picker_range_header_selected 0x7f1400a1 +int string mtrl_picker_range_header_title 0x7f1400a2 +int string mtrl_picker_range_header_unselected 0x7f1400a3 +int string mtrl_picker_save 0x7f1400a4 +int string mtrl_picker_text_input_date_hint 0x7f1400a5 +int string mtrl_picker_text_input_date_range_end_hint 0x7f1400a6 +int string mtrl_picker_text_input_date_range_start_hint 0x7f1400a7 +int string mtrl_picker_text_input_day_abbr 0x7f1400a8 +int string mtrl_picker_text_input_month_abbr 0x7f1400a9 +int string mtrl_picker_text_input_year_abbr 0x7f1400aa +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f1400ab +int string mtrl_picker_toggle_to_day_selection 0x7f1400ac +int string mtrl_picker_toggle_to_text_input_mode 0x7f1400ad +int string mtrl_picker_toggle_to_year_selection 0x7f1400ae +int string no_net 0x7f1400af +int string no_url 0x7f1400b0 +int string password_toggle_content_description 0x7f1400b1 +int string path_password_eye 0x7f1400b2 +int string path_password_eye_mask_strike_through 0x7f1400b3 +int string path_password_eye_mask_visible 0x7f1400b4 +int string path_password_strike_through 0x7f1400b5 +int string recent 0x7f1400b6 +int string sample 0x7f1400b7 +int string search_menu_title 0x7f1400b8 +int string seek_cost 0x7f1400b9 +int string seek_load_cost 0x7f1400ba +int string settings 0x7f1400bb +int string show_info 0x7f1400bc +int string status_bar_notification_info_overflow 0x7f1400bd +int string tcp_speed 0x7f1400be +int string tips_not_wifi 0x7f1400bf +int string tips_not_wifi_cancel 0x7f1400c0 +int string tips_not_wifi_confirm 0x7f1400c1 +int string toggle_player 0x7f1400c2 +int string toggle_ratio 0x7f1400c3 +int string toggle_render 0x7f1400c4 +int string tracks 0x7f1400c5 +int string v_cache 0x7f1400c6 +int string vdec 0x7f1400c7 +int style ActivityTranslucent 0x7f150001 +int style AlertDialog_AppCompat 0x7f150002 +int style AlertDialog_AppCompat_Light 0x7f150003 +int style AndroidThemeColorAccentYellow 0x7f150004 +int style Animation_AppCompat_Dialog 0x7f150005 +int style Animation_AppCompat_DropDownUp 0x7f150006 +int style Animation_AppCompat_Tooltip 0x7f150007 +int style Animation_Design_BottomSheetDialog 0x7f150008 +int style Animation_MaterialComponents_BottomSheetDialog 0x7f150009 +int style BaseFloatDialogStyle 0x7f15000a +int style Base_AlertDialog_AppCompat 0x7f15000b +int style Base_AlertDialog_AppCompat_Light 0x7f15000c +int style Base_Animation_AppCompat_Dialog 0x7f15000d +int style Base_Animation_AppCompat_DropDownUp 0x7f15000e +int style Base_Animation_AppCompat_Tooltip 0x7f15000f +int style Base_CardView 0x7f150010 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f150011 +int style Base_DialogWindowTitle_AppCompat 0x7f150012 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f150013 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f150014 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f150015 +int style Base_TextAppearance_AppCompat 0x7f150016 +int style Base_TextAppearance_AppCompat_Body1 0x7f150017 +int style Base_TextAppearance_AppCompat_Body2 0x7f150018 +int style Base_TextAppearance_AppCompat_Button 0x7f150019 +int style Base_TextAppearance_AppCompat_Caption 0x7f15001a +int style Base_TextAppearance_AppCompat_Display1 0x7f15001b +int style Base_TextAppearance_AppCompat_Display2 0x7f15001c +int style Base_TextAppearance_AppCompat_Display3 0x7f15001d +int style Base_TextAppearance_AppCompat_Display4 0x7f15001e +int style Base_TextAppearance_AppCompat_Headline 0x7f15001f +int style Base_TextAppearance_AppCompat_Inverse 0x7f150020 +int style Base_TextAppearance_AppCompat_Large 0x7f150021 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150022 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150023 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150024 +int style Base_TextAppearance_AppCompat_Medium 0x7f150025 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150026 +int style Base_TextAppearance_AppCompat_Menu 0x7f150027 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150028 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150029 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f15002a +int style Base_TextAppearance_AppCompat_Small 0x7f15002b +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f15002c +int style Base_TextAppearance_AppCompat_Subhead 0x7f15002d +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f15002e +int style Base_TextAppearance_AppCompat_Title 0x7f15002f +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150030 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f15003a +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f15003b +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f15003c +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f15003d +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15003e +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15003f +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150040 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150041 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150042 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f150043 +int style Base_TextAppearance_MaterialComponents_Button 0x7f150044 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f150045 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f150046 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150047 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150048 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150049 +int style Base_ThemeOverlay_AppCompat 0x7f15004a +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15004b +int style Base_ThemeOverlay_AppCompat_Dark 0x7f15004c +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f15004d +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f15004e +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f15004f +int style Base_ThemeOverlay_AppCompat_Light 0x7f150050 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150051 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150052 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f150053 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f150054 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150055 +int style Base_Theme_AppCompat 0x7f150056 +int style Base_Theme_AppCompat_CompactMenu 0x7f150057 +int style Base_Theme_AppCompat_Dialog 0x7f150058 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150059 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f15005a +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15005b +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15005c +int style Base_Theme_AppCompat_Light 0x7f15005d +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15005e +int style Base_Theme_AppCompat_Light_Dialog 0x7f15005f +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150060 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150061 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150062 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150063 +int style Base_Theme_MaterialComponents 0x7f150064 +int style Base_Theme_MaterialComponents_Bridge 0x7f150065 +int style Base_Theme_MaterialComponents_CompactMenu 0x7f150066 +int style Base_Theme_MaterialComponents_Dialog 0x7f150067 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f150068 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f150069 +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f15006a +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f15006b +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15006c +int style Base_Theme_MaterialComponents_Light 0x7f15006d +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f15006e +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f15006f +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150070 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150071 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150072 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150073 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150074 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150075 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150076 +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150077 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f150078 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150079 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f15007a +int style Base_V14_Theme_MaterialComponents 0x7f15007b +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f15007c +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f15007d +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f15007e +int style Base_V14_Theme_MaterialComponents_Light 0x7f15007f +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f150080 +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150081 +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f150082 +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150083 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150084 +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150085 +int style Base_V21_Theme_AppCompat 0x7f150086 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150087 +int style Base_V21_Theme_AppCompat_Light 0x7f150088 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150089 +int style Base_V21_Theme_MaterialComponents 0x7f15008a +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f15008b +int style Base_V21_Theme_MaterialComponents_Light 0x7f15008c +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f15008d +int style Base_V22_Theme_AppCompat 0x7f15008e +int style Base_V22_Theme_AppCompat_Light 0x7f15008f +int style Base_V23_Theme_AppCompat 0x7f150090 +int style Base_V23_Theme_AppCompat_Light 0x7f150091 +int style Base_V26_Theme_AppCompat 0x7f150092 +int style Base_V26_Theme_AppCompat_Light 0x7f150093 +int style Base_V26_Widget_AppCompat_Toolbar 0x7f150094 +int style Base_V28_Theme_AppCompat 0x7f150095 +int style Base_V28_Theme_AppCompat_Light 0x7f150096 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150097 +int style Base_V7_Theme_AppCompat 0x7f150098 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150099 +int style Base_V7_Theme_AppCompat_Light 0x7f15009a +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f15009b +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f15009c +int style Base_V7_Widget_AppCompat_EditText 0x7f15009d +int style Base_V7_Widget_AppCompat_Toolbar 0x7f15009e +int style Base_Widget_AppCompat_ActionBar 0x7f15009f +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f1500a0 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1500a1 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1500a2 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1500a3 +int style Base_Widget_AppCompat_ActionButton 0x7f1500a4 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1500a5 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1500a6 +int style Base_Widget_AppCompat_ActionMode 0x7f1500a7 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1500a8 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1500a9 +int style Base_Widget_AppCompat_Button 0x7f1500aa +int style Base_Widget_AppCompat_ButtonBar 0x7f1500ab +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1500ac +int style Base_Widget_AppCompat_Button_Borderless 0x7f1500ad +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1500ae +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1500af +int style Base_Widget_AppCompat_Button_Colored 0x7f1500b0 +int style Base_Widget_AppCompat_Button_Small 0x7f1500b1 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1500b2 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1500b3 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500b4 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500b5 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500b6 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500b7 +int style Base_Widget_AppCompat_EditText 0x7f1500b8 +int style Base_Widget_AppCompat_ImageButton 0x7f1500b9 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500ba +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500bb +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500bc +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500bd +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500be +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500bf +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500c0 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500c1 +int style Base_Widget_AppCompat_ListMenuView 0x7f1500c2 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500c3 +int style Base_Widget_AppCompat_ListView 0x7f1500c4 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500c5 +int style Base_Widget_AppCompat_ListView_Menu 0x7f1500c6 +int style Base_Widget_AppCompat_PopupMenu 0x7f1500c7 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500c8 +int style Base_Widget_AppCompat_PopupWindow 0x7f1500c9 +int style Base_Widget_AppCompat_ProgressBar 0x7f1500ca +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500cb +int style Base_Widget_AppCompat_RatingBar 0x7f1500cc +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500cd +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500ce +int style Base_Widget_AppCompat_SearchView 0x7f1500cf +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500d0 +int style Base_Widget_AppCompat_SeekBar 0x7f1500d1 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500d2 +int style Base_Widget_AppCompat_Spinner 0x7f1500d3 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500d4 +int style Base_Widget_AppCompat_TextView 0x7f1500d5 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500d6 +int style Base_Widget_AppCompat_Toolbar 0x7f1500d7 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500d8 +int style Base_Widget_Design_TabLayout 0x7f1500d9 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f1500da +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f1500db +int style Base_Widget_MaterialComponents_Chip 0x7f1500dc +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f1500dd +int style Base_Widget_MaterialComponents_PopupMenu 0x7f1500de +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1500df +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1500e0 +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f1500e1 +int style Base_Widget_MaterialComponents_Slider 0x7f1500e2 +int style Base_Widget_MaterialComponents_Snackbar 0x7f1500e3 +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500e4 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500e5 +int style Base_Widget_MaterialComponents_TextView 0x7f1500e6 +int style CardView 0x7f1500e7 +int style CardView_Dark 0x7f1500e8 +int style CardView_Light 0x7f1500e9 +int style EmptyTheme 0x7f1500ea +int style ExoMediaButton 0x7f1500eb +int style ExoMediaButton_FastForward 0x7f1500ec +int style ExoMediaButton_Next 0x7f1500ed +int style ExoMediaButton_Pause 0x7f1500ee +int style ExoMediaButton_Play 0x7f1500ef +int style ExoMediaButton_Previous 0x7f1500f0 +int style ExoMediaButton_Rewind 0x7f1500f1 +int style MaterialAlertDialog_MaterialComponents 0x7f1500f2 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f1500f3 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f1500f4 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f1500f5 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f1500f6 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f1500f7 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f1500f8 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f1500f9 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f1500fa +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f1500fb +int style Platform_AppCompat 0x7f1500fc +int style Platform_AppCompat_Light 0x7f1500fd +int style Platform_MaterialComponents 0x7f1500fe +int style Platform_MaterialComponents_Dialog 0x7f1500ff +int style Platform_MaterialComponents_Light 0x7f150100 +int style Platform_MaterialComponents_Light_Dialog 0x7f150101 +int style Platform_ThemeOverlay_AppCompat 0x7f150102 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f150103 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f150104 +int style Platform_V21_AppCompat 0x7f150105 +int style Platform_V21_AppCompat_Light 0x7f150106 +int style Platform_V25_AppCompat 0x7f150107 +int style Platform_V25_AppCompat_Light 0x7f150108 +int style Platform_Widget_AppCompat_Spinner 0x7f150109 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f15010a +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f15010b +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f15010c +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f15010d +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f15010e +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f15010f +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f150110 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f150111 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f150112 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f150113 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f150114 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f150115 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f150116 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f150117 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f150118 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f150119 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f15011a +int style ShapeAppearanceOverlay 0x7f15011b +int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f15011c +int style ShapeAppearanceOverlay_BottomRightCut 0x7f15011d +int style ShapeAppearanceOverlay_Cut 0x7f15011e +int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f15011f +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f150120 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f150121 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f150122 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f150123 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150124 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f150125 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f150126 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f150127 +int style ShapeAppearanceOverlay_TopLeftCut 0x7f150128 +int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f150129 +int style ShapeAppearance_MaterialComponents 0x7f15012a +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f15012b +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f15012c +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f15012d +int style ShapeAppearance_MaterialComponents_Test 0x7f15012e +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f15012f +int style TestStyleWithLineHeight 0x7f150130 +int style TestStyleWithLineHeightAppearance 0x7f150131 +int style TestStyleWithThemeLineHeightAttribute 0x7f150132 +int style TestStyleWithoutLineHeight 0x7f150133 +int style TestThemeWithLineHeight 0x7f150134 +int style TestThemeWithLineHeightDisabled 0x7f150135 +int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150136 +int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f150137 +int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f150138 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f150139 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15013a +int style TextAppearance_AppCompat 0x7f15013b +int style TextAppearance_AppCompat_Body1 0x7f15013c +int style TextAppearance_AppCompat_Body2 0x7f15013d +int style TextAppearance_AppCompat_Button 0x7f15013e +int style TextAppearance_AppCompat_Caption 0x7f15013f +int style TextAppearance_AppCompat_Display1 0x7f150140 +int style TextAppearance_AppCompat_Display2 0x7f150141 +int style TextAppearance_AppCompat_Display3 0x7f150142 +int style TextAppearance_AppCompat_Display4 0x7f150143 +int style TextAppearance_AppCompat_Headline 0x7f150144 +int style TextAppearance_AppCompat_Inverse 0x7f150145 +int style TextAppearance_AppCompat_Large 0x7f150146 +int style TextAppearance_AppCompat_Large_Inverse 0x7f150147 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f150148 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f150149 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15014a +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15014b +int style TextAppearance_AppCompat_Medium 0x7f15014c +int style TextAppearance_AppCompat_Medium_Inverse 0x7f15014d +int style TextAppearance_AppCompat_Menu 0x7f15014e +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f15014f +int style TextAppearance_AppCompat_SearchResult_Title 0x7f150150 +int style TextAppearance_AppCompat_Small 0x7f150151 +int style TextAppearance_AppCompat_Small_Inverse 0x7f150152 +int style TextAppearance_AppCompat_Subhead 0x7f150153 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150154 +int style TextAppearance_AppCompat_Title 0x7f150155 +int style TextAppearance_AppCompat_Title_Inverse 0x7f150156 +int style TextAppearance_AppCompat_Tooltip 0x7f150157 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150158 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150159 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15015a +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15015b +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15015c +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15015d +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f15015e +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15015f +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f150160 +int style TextAppearance_AppCompat_Widget_Button 0x7f150161 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150162 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150163 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150164 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150165 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150166 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150167 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150168 +int style TextAppearance_AppCompat_Widget_Switch 0x7f150169 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15016a +int style TextAppearance_Compat_Notification 0x7f15016b +int style TextAppearance_Compat_Notification_Info 0x7f15016c +int style TextAppearance_Compat_Notification_Line2 0x7f15016d +int style TextAppearance_Compat_Notification_Time 0x7f15016e +int style TextAppearance_Compat_Notification_Title 0x7f15016f +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150170 +int style TextAppearance_Design_Counter 0x7f150171 +int style TextAppearance_Design_Counter_Overflow 0x7f150172 +int style TextAppearance_Design_Error 0x7f150173 +int style TextAppearance_Design_HelperText 0x7f150174 +int style TextAppearance_Design_Hint 0x7f150175 +int style TextAppearance_Design_Placeholder 0x7f150176 +int style TextAppearance_Design_Prefix 0x7f150177 +int style TextAppearance_Design_Snackbar_Message 0x7f150178 +int style TextAppearance_Design_Suffix 0x7f150179 +int style TextAppearance_Design_Tab 0x7f15017a +int style TextAppearance_MaterialComponents_Badge 0x7f15017b +int style TextAppearance_MaterialComponents_Body1 0x7f15017c +int style TextAppearance_MaterialComponents_Body2 0x7f15017d +int style TextAppearance_MaterialComponents_Button 0x7f15017e +int style TextAppearance_MaterialComponents_Caption 0x7f15017f +int style TextAppearance_MaterialComponents_Chip 0x7f150180 +int style TextAppearance_MaterialComponents_Headline1 0x7f150181 +int style TextAppearance_MaterialComponents_Headline2 0x7f150182 +int style TextAppearance_MaterialComponents_Headline3 0x7f150183 +int style TextAppearance_MaterialComponents_Headline4 0x7f150184 +int style TextAppearance_MaterialComponents_Headline5 0x7f150185 +int style TextAppearance_MaterialComponents_Headline6 0x7f150186 +int style TextAppearance_MaterialComponents_Overline 0x7f150187 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f150188 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f150189 +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f15018a +int style TextAppearance_MaterialComponents_Tooltip 0x7f15018b +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15018c +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15018d +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15018e +int style ThemeOverlayColorAccentRed 0x7f15018f +int style ThemeOverlay_AppCompat 0x7f150190 +int style ThemeOverlay_AppCompat_ActionBar 0x7f150191 +int style ThemeOverlay_AppCompat_Dark 0x7f150192 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150193 +int style ThemeOverlay_AppCompat_DayNight 0x7f150194 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f150195 +int style ThemeOverlay_AppCompat_Dialog 0x7f150196 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150197 +int style ThemeOverlay_AppCompat_Light 0x7f150198 +int style ThemeOverlay_Design_TextInputEditText 0x7f150199 +int style ThemeOverlay_MaterialComponents 0x7f15019a +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f15019b +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f15019c +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f15019d +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f15019e +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f15019f +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1501a0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1501a1 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1501a2 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1501a3 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1501a4 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1501a5 +int style ThemeOverlay_MaterialComponents_Dark 0x7f1501a6 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1501a7 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501a8 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f1501a9 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1501aa +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1501ab +int style ThemeOverlay_MaterialComponents_Light 0x7f1501ac +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1501ad +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1501ae +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1501af +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1501b0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1501b1 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1501b2 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1501b3 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1501b4 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1501b5 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1501b6 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1501b7 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1501b8 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501b9 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501ba +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501bb +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f1501bc +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f1501bd +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f1501be +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f1501bf +int style Theme_AppCompat 0x7f1501c0 +int style Theme_AppCompat_CompactMenu 0x7f1501c1 +int style Theme_AppCompat_DayNight 0x7f1501c2 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f1501c3 +int style Theme_AppCompat_DayNight_Dialog 0x7f1501c4 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f1501c5 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f1501c6 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f1501c7 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f1501c8 +int style Theme_AppCompat_Dialog 0x7f1501c9 +int style Theme_AppCompat_DialogWhenLarge 0x7f1501ca +int style Theme_AppCompat_Dialog_Alert 0x7f1501cb +int style Theme_AppCompat_Dialog_MinWidth 0x7f1501cc +int style Theme_AppCompat_Empty 0x7f1501cd +int style Theme_AppCompat_Light 0x7f1501ce +int style Theme_AppCompat_Light_DarkActionBar 0x7f1501cf +int style Theme_AppCompat_Light_Dialog 0x7f1501d0 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f1501d1 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f1501d2 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f1501d3 +int style Theme_AppCompat_Light_NoActionBar 0x7f1501d4 +int style Theme_AppCompat_NoActionBar 0x7f1501d5 +int style Theme_Design 0x7f1501d6 +int style Theme_Design_BottomSheetDialog 0x7f1501d7 +int style Theme_Design_Light 0x7f1501d8 +int style Theme_Design_Light_BottomSheetDialog 0x7f1501d9 +int style Theme_Design_Light_NoActionBar 0x7f1501da +int style Theme_Design_NoActionBar 0x7f1501db +int style Theme_MaterialComponents 0x7f1501dc +int style Theme_MaterialComponents_BottomSheetDialog 0x7f1501dd +int style Theme_MaterialComponents_Bridge 0x7f1501de +int style Theme_MaterialComponents_CompactMenu 0x7f1501df +int style Theme_MaterialComponents_DayNight 0x7f1501e0 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501e1 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f1501e2 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f1501e3 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f1501e4 +int style Theme_MaterialComponents_DayNight_Dialog 0x7f1501e5 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f1501e6 +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f1501e7 +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f1501e8 +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f1501e9 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f1501ea +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f1501eb +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f1501ec +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f1501ed +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f1501ee +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f1501ef +int style Theme_MaterialComponents_Dialog 0x7f1501f0 +int style Theme_MaterialComponents_DialogWhenLarge 0x7f1501f1 +int style Theme_MaterialComponents_Dialog_Alert 0x7f1501f2 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f1501f3 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f1501f4 +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f1501f5 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f1501f6 +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f1501f7 +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f1501f8 +int style Theme_MaterialComponents_Light 0x7f1501f9 +int style Theme_MaterialComponents_Light_BarSize 0x7f1501fa +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f1501fb +int style Theme_MaterialComponents_Light_Bridge 0x7f1501fc +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f1501fd +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f1501fe +int style Theme_MaterialComponents_Light_Dialog 0x7f1501ff +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150200 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150201 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f150202 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150203 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150204 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f150205 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150206 +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f150207 +int style Theme_MaterialComponents_Light_LargeTouch 0x7f150208 +int style Theme_MaterialComponents_Light_NoActionBar 0x7f150209 +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f15020a +int style Theme_MaterialComponents_NoActionBar 0x7f15020b +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f15020c +int style Widget_AppCompat_ActionBar 0x7f15020d +int style Widget_AppCompat_ActionBar_Solid 0x7f15020e +int style Widget_AppCompat_ActionBar_TabBar 0x7f15020f +int style Widget_AppCompat_ActionBar_TabText 0x7f150210 +int style Widget_AppCompat_ActionBar_TabView 0x7f150211 +int style Widget_AppCompat_ActionButton 0x7f150212 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150213 +int style Widget_AppCompat_ActionButton_Overflow 0x7f150214 +int style Widget_AppCompat_ActionMode 0x7f150215 +int style Widget_AppCompat_ActivityChooserView 0x7f150216 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150217 +int style Widget_AppCompat_Button 0x7f150218 +int style Widget_AppCompat_ButtonBar 0x7f150219 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f15021a +int style Widget_AppCompat_Button_Borderless 0x7f15021b +int style Widget_AppCompat_Button_Borderless_Colored 0x7f15021c +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15021d +int style Widget_AppCompat_Button_Colored 0x7f15021e +int style Widget_AppCompat_Button_Small 0x7f15021f +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150220 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150221 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150222 +int style Widget_AppCompat_DrawerArrowToggle 0x7f150223 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f150224 +int style Widget_AppCompat_EditText 0x7f150225 +int style Widget_AppCompat_ImageButton 0x7f150226 +int style Widget_AppCompat_Light_ActionBar 0x7f150227 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150228 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150229 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f15022a +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15022b +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f15022c +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f15022d +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f15022e +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f15022f +int style Widget_AppCompat_Light_ActionButton 0x7f150230 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150231 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150232 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150233 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f150234 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150235 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150236 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150237 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150238 +int style Widget_AppCompat_Light_PopupMenu 0x7f150239 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15023a +int style Widget_AppCompat_Light_SearchView 0x7f15023b +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f15023c +int style Widget_AppCompat_ListMenuView 0x7f15023d +int style Widget_AppCompat_ListPopupWindow 0x7f15023e +int style Widget_AppCompat_ListView 0x7f15023f +int style Widget_AppCompat_ListView_DropDown 0x7f150240 +int style Widget_AppCompat_ListView_Menu 0x7f150241 +int style Widget_AppCompat_PopupMenu 0x7f150242 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150243 +int style Widget_AppCompat_PopupWindow 0x7f150244 +int style Widget_AppCompat_ProgressBar 0x7f150245 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150246 +int style Widget_AppCompat_RatingBar 0x7f150247 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150248 +int style Widget_AppCompat_RatingBar_Small 0x7f150249 +int style Widget_AppCompat_SearchView 0x7f15024a +int style Widget_AppCompat_SearchView_ActionBar 0x7f15024b +int style Widget_AppCompat_SeekBar 0x7f15024c +int style Widget_AppCompat_SeekBar_Discrete 0x7f15024d +int style Widget_AppCompat_Spinner 0x7f15024e +int style Widget_AppCompat_Spinner_DropDown 0x7f15024f +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150250 +int style Widget_AppCompat_Spinner_Underlined 0x7f150251 +int style Widget_AppCompat_TextView 0x7f150252 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150253 +int style Widget_AppCompat_Toolbar 0x7f150254 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150255 +int style Widget_Compat_NotificationActionContainer 0x7f150256 +int style Widget_Compat_NotificationActionText 0x7f150257 +int style Widget_Design_AppBarLayout 0x7f150258 +int style Widget_Design_BottomNavigationView 0x7f150259 +int style Widget_Design_BottomSheet_Modal 0x7f15025a +int style Widget_Design_CollapsingToolbar 0x7f15025b +int style Widget_Design_FloatingActionButton 0x7f15025c +int style Widget_Design_NavigationView 0x7f15025d +int style Widget_Design_ScrimInsetsFrameLayout 0x7f15025e +int style Widget_Design_Snackbar 0x7f15025f +int style Widget_Design_TabLayout 0x7f150260 +int style Widget_Design_TextInputEditText 0x7f150261 +int style Widget_Design_TextInputLayout 0x7f150262 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f150263 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f150264 +int style Widget_MaterialComponents_ActionBar_Solid 0x7f150265 +int style Widget_MaterialComponents_ActionBar_Surface 0x7f150266 +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f150267 +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f150268 +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f150269 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f15026a +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f15026b +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f15026c +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f15026d +int style Widget_MaterialComponents_Badge 0x7f15026e +int style Widget_MaterialComponents_BottomAppBar 0x7f15026f +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f150270 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f150271 +int style Widget_MaterialComponents_BottomNavigationView 0x7f150272 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f150273 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f150274 +int style Widget_MaterialComponents_BottomSheet 0x7f150275 +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f150276 +int style Widget_MaterialComponents_Button 0x7f150277 +int style Widget_MaterialComponents_Button_Icon 0x7f150278 +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f150279 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f15027a +int style Widget_MaterialComponents_Button_TextButton 0x7f15027b +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f15027c +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f15027d +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f15027e +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f15027f +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f150280 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f150281 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f150282 +int style Widget_MaterialComponents_CardView 0x7f150283 +int style Widget_MaterialComponents_CheckedTextView 0x7f150284 +int style Widget_MaterialComponents_ChipGroup 0x7f150285 +int style Widget_MaterialComponents_Chip_Action 0x7f150286 +int style Widget_MaterialComponents_Chip_Choice 0x7f150287 +int style Widget_MaterialComponents_Chip_Entry 0x7f150288 +int style Widget_MaterialComponents_Chip_Filter 0x7f150289 +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f15028a +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f15028b +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f15028c +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f15028d +int style Widget_MaterialComponents_CollapsingToolbar 0x7f15028e +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f15028f +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f150290 +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f150291 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f150292 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f150293 +int style Widget_MaterialComponents_FloatingActionButton 0x7f150294 +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f150295 +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f150296 +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f150297 +int style Widget_MaterialComponents_MaterialCalendar 0x7f150298 +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f150299 +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f15029a +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f15029b +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15029c +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f15029d +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f15029e +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f15029f +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f1502a0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f1502a1 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f1502a2 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f1502a3 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1502a4 +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f1502a5 +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f1502a6 +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f1502a7 +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f1502a8 +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f1502a9 +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f1502aa +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f1502ab +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f1502ac +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f1502ad +int style Widget_MaterialComponents_NavigationRailView 0x7f1502ae +int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f1502af +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f1502b0 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f1502b1 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f1502b2 +int style Widget_MaterialComponents_NavigationView 0x7f1502b3 +int style Widget_MaterialComponents_PopupMenu 0x7f1502b4 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1502b5 +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1502b6 +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f1502b7 +int style Widget_MaterialComponents_ProgressIndicator 0x7f1502b8 +int style Widget_MaterialComponents_ShapeableImageView 0x7f1502b9 +int style Widget_MaterialComponents_Slider 0x7f1502ba +int style Widget_MaterialComponents_Snackbar 0x7f1502bb +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1502bc +int style Widget_MaterialComponents_Snackbar_TextView 0x7f1502bd +int style Widget_MaterialComponents_TabLayout 0x7f1502be +int style Widget_MaterialComponents_TabLayout_Colored 0x7f1502bf +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f1502c0 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1502c1 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1502c2 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1502c3 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1502c4 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1502c5 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1502c6 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1502c7 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1502c8 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1502c9 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1502ca +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1502cb +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1502cc +int style Widget_MaterialComponents_TextView 0x7f1502cd +int style Widget_MaterialComponents_TimePicker 0x7f1502ce +int style Widget_MaterialComponents_TimePicker_Button 0x7f1502cf +int style Widget_MaterialComponents_TimePicker_Clock 0x7f1502d0 +int style Widget_MaterialComponents_TimePicker_Display 0x7f1502d1 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1502d2 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f1502d3 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f1502d4 +int style Widget_MaterialComponents_Toolbar 0x7f1502d5 +int style Widget_MaterialComponents_Toolbar_Primary 0x7f1502d6 +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f1502d7 +int style Widget_MaterialComponents_Toolbar_Surface 0x7f1502d8 +int style Widget_MaterialComponents_Tooltip 0x7f1502d9 +int style Widget_Support_CoordinatorLayout 0x7f1502da +int style customHeartHeartRatingBarStyle 0x7f1502db +int style video_popup_toast_anim 0x7f1502dc +int style video_style_dialog_progress 0x7f1502dd +int style video_vertical_progressBar 0x7f1502de +int[] styleable ActionBar { 0x7f040049, 0x7f040051, 0x7f040052, 0x7f0400fb, 0x7f0400fc, 0x7f0400fd, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040127, 0x7f04013a, 0x7f04013b, 0x7f040162, 0x7f0401bd, 0x7f0401c4, 0x7f0401cb, 0x7f0401cc, 0x7f0401cf, 0x7f0401e0, 0x7f0401f2, 0x7f040266, 0x7f0402ca, 0x7f040302, 0x7f04030d, 0x7f04030e, 0x7f040383, 0x7f040387, 0x7f0403f0, 0x7f0403fc } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f040049, 0x7f040051, 0x7f0400d5, 0x7f0401bd, 0x7f040387, 0x7f0403fc } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040176, 0x7f0401e6 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040085, 0x7f040086, 0x7f04025b, 0x7f04025c, 0x7f0402c6, 0x7f040358, 0x7f04035b } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f040162, 0x7f040177, 0x7f040251, 0x7f040252, 0x7f04037c } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollTargetViewId 6 +int styleable AppBarLayout_statusBarForeground 7 +int[] styleable AppBarLayoutStates { 0x7f040376, 0x7f040377, 0x7f040379, 0x7f04037a } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f04024e, 0x7f04024f } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x1010119, 0x7f04036d, 0x7f0403ee, 0x7f0403ef } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f0403ea, 0x7f0403eb, 0x7f0403ec } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040043, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f040047, 0x7f040149, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f04014e, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040193, 0x7f0401a9, 0x7f0401b2, 0x7f040208, 0x7f040254, 0x7f0403b0, 0x7f0403d2 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040029, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040032, 0x10100ae, 0x1010057, 0x7f040042, 0x7f04006c, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040082, 0x7f040087, 0x7f040088, 0x7f04009e, 0x7f0400a7, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400ea, 0x7f0400eb, 0x7f0400f1, 0x7f04010a, 0x7f040136, 0x7f040137, 0x7f040138, 0x7f04013c, 0x7f04013e, 0x7f040153, 0x7f040154, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f0401cb, 0x7f0401da, 0x7f040257, 0x7f040258, 0x7f040259, 0x7f04025a, 0x7f04025d, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040264, 0x7f040265, 0x7f0402e3, 0x7f0402e4, 0x7f0402e5, 0x7f040301, 0x7f040303, 0x7f040314, 0x7f040316, 0x7f040317, 0x7f040318, 0x7f040345, 0x7f040346, 0x7f040347, 0x7f040348, 0x7f040365, 0x7f040366, 0x7f04038f, 0x7f0403bb, 0x7f0403bd, 0x7f0403be, 0x7f0403bf, 0x7f0403c1, 0x7f0403c2, 0x7f0403c3, 0x7f0403c4, 0x7f0403cc, 0x7f0403cd, 0x7f0403fe, 0x7f0403ff, 0x7f040400, 0x7f040401, 0x7f040424, 0x7f040432, 0x7f040433, 0x7f040434, 0x7f040435, 0x7f040436, 0x7f040437, 0x7f040438, 0x7f040439, 0x7f04043a, 0x7f04043b } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable AspectRatioFrameLayout { 0x7f040322 } +int styleable AspectRatioFrameLayout_resize_mode 0 +int[] styleable Badge { 0x7f04004a, 0x7f040055, 0x7f040057, 0x7f0401cd, 0x7f040287, 0x7f0402cf, 0x7f040422 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeTextColor 2 +int styleable Badge_horizontalOffset 3 +int styleable Badge_maxCharacterCount 4 +int styleable Badge_number 5 +int styleable Badge_verticalOffset 6 +int[] styleable BaseProgressIndicator { 0x1010139, 0x7f0401c2, 0x7f0401e1, 0x7f040292, 0x7f040351, 0x7f040353, 0x7f040409, 0x7f04040c, 0x7f04040e } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f040053, 0x7f040162, 0x7f040183, 0x7f040184, 0x7f040185, 0x7f040186, 0x7f040187, 0x7f0401c5, 0x7f0402dc, 0x7f0402de, 0x7f0402df } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_elevation 1 +int styleable BottomAppBar_fabAlignmentMode 2 +int styleable BottomAppBar_fabAnimationMode 3 +int styleable BottomAppBar_fabCradleMargin 4 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 +int styleable BottomAppBar_fabCradleVerticalOffset 6 +int styleable BottomAppBar_hideOnScroll 7 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 +int styleable BottomAppBar_paddingRightSystemWindowInsets 10 +int[] styleable BottomNavigationView { 0x7f0401ed } +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 0 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x101011f, 0x7f040053, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040065, 0x7f040066, 0x7f040067, 0x7f0401b8, 0x7f0402dc, 0x7f0402de, 0x7f0402df, 0x7f0402e2, 0x7f04034c, 0x7f04034f } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxWidth 1 +int styleable BottomSheetBehavior_Layout_backgroundTint 2 +int styleable BottomSheetBehavior_Layout_behavior_draggable 3 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 4 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 5 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 6 +int styleable BottomSheetBehavior_Layout_behavior_hideable 7 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 8 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 9 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 10 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 11 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 12 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 13 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_shapeAppearance 16 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 17 +int[] styleable ButtonBarLayout { 0x7f040033 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x1010140, 0x101013f, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040101, 0x7f040102, 0x7f040104, 0x7f040105, 0x7f040107 } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009c } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x1010098, 0x1010095, 0x7f0400a1, 0x7f0400a2, 0x7f0400a5, 0x7f0400a6, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400bb, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f04016e, 0x7f0401c3, 0x7f0401d0, 0x7f0401d4, 0x7f040327, 0x7f04034c, 0x7f04034f, 0x7f040355, 0x7f0403ce, 0x7f0403d7 } +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x7f0400a0, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f040349, 0x7f04035c, 0x7f04035d } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircularProgressIndicator { 0x7f0401e2, 0x7f0401e4, 0x7f0401e5 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0400ca, 0x7f0400cd } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0400cb, 0x7f04027f, 0x7f04034a } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0400d9, 0x7f0400da, 0x7f040108, 0x7f040179, 0x7f04017a, 0x7f04017b, 0x7f04017c, 0x7f04017d, 0x7f04017e, 0x7f04017f, 0x7f040182, 0x7f0401b4, 0x7f04028a, 0x7f04033c, 0x7f04033e, 0x7f04037d, 0x7f0403f0, 0x7f0403f2, 0x7f0403f3, 0x7f0403fd } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 10 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 11 +int styleable CollapsingToolbarLayout_maxLines 12 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 13 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 14 +int styleable CollapsingToolbarLayout_statusBarScrim 15 +int styleable CollapsingToolbarLayout_title 16 +int styleable CollapsingToolbarLayout_titleCollapseMode 17 +int styleable CollapsingToolbarLayout_titleEnabled 18 +int styleable CollapsingToolbarLayout_toolbarId 19 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f040210, 0x7f040211 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x7f040034, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040083, 0x7f040089, 0x7f04008a } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f6, 0x7f0400f7, 0x7f040148, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024c, 0x7f040250, 0x7f0402c0, 0x7f0402c1, 0x7f0402eb, 0x7f0402f2, 0x7f0402ff, 0x7f04030f, 0x7f040310, 0x7f040311, 0x7f040411, 0x7f040413, 0x7f040415, 0x7f040429 } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_animate_relativeTo 29 +int styleable Constraint_barrierAllowsGoneWidgets 30 +int styleable Constraint_barrierDirection 31 +int styleable Constraint_barrierMargin 32 +int styleable Constraint_chainUseRtl 33 +int styleable Constraint_constraint_referenced_ids 34 +int styleable Constraint_constraint_referenced_tags 35 +int styleable Constraint_drawPath 36 +int styleable Constraint_flow_firstHorizontalBias 37 +int styleable Constraint_flow_firstHorizontalStyle 38 +int styleable Constraint_flow_firstVerticalBias 39 +int styleable Constraint_flow_firstVerticalStyle 40 +int styleable Constraint_flow_horizontalAlign 41 +int styleable Constraint_flow_horizontalBias 42 +int styleable Constraint_flow_horizontalGap 43 +int styleable Constraint_flow_horizontalStyle 44 +int styleable Constraint_flow_lastHorizontalBias 45 +int styleable Constraint_flow_lastHorizontalStyle 46 +int styleable Constraint_flow_lastVerticalBias 47 +int styleable Constraint_flow_lastVerticalStyle 48 +int styleable Constraint_flow_maxElementsWrap 49 +int styleable Constraint_flow_verticalAlign 50 +int styleable Constraint_flow_verticalBias 51 +int styleable Constraint_flow_verticalGap 52 +int styleable Constraint_flow_verticalStyle 53 +int styleable Constraint_flow_wrapMode 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x10100f5, 0x10100f6, 0x10100fa, 0x10103b6, 0x101053b, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x101053c, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400f3, 0x7f0400f6, 0x7f0400f7, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f04020a, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024c, 0x7f04024d, 0x7f040250 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_layoutDescription 55 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 56 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 57 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 64 +int styleable ConstraintLayout_Layout_layout_constraintCircle 65 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 67 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 68 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 70 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 73 +int styleable ConstraintLayout_Layout_layout_constraintHeight 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 78 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 81 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 84 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 87 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 89 +int styleable ConstraintLayout_Layout_layout_constraintTag 90 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 93 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 96 +int styleable ConstraintLayout_Layout_layout_constraintWidth 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 101 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 103 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 105 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 106 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 107 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 108 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 109 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 110 +int styleable ConstraintLayout_Layout_layout_marginBaseline 111 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 112 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 113 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f040319, 0x7f04031a, 0x7f04031b, 0x7f04031c } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f0400f9, 0x7f0402f8 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040037, 0x7f040038, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f6, 0x7f040148, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040218, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022f, 0x7f040234, 0x7f040235, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024c, 0x7f040250, 0x7f0402c0, 0x7f0402c1, 0x7f0402c2, 0x7f0402eb, 0x7f0402f2, 0x7f0402ff, 0x7f04030f, 0x7f040310, 0x7f040311, 0x7f040411, 0x7f040413, 0x7f040415, 0x7f040429 } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_layout_constrainedHeight 53 +int styleable ConstraintOverride_layout_constrainedWidth 54 +int styleable ConstraintOverride_layout_constraintBaseline_creator 55 +int styleable ConstraintOverride_layout_constraintBottom_creator 56 +int styleable ConstraintOverride_layout_constraintCircleAngle 57 +int styleable ConstraintOverride_layout_constraintCircleRadius 58 +int styleable ConstraintOverride_layout_constraintDimensionRatio 59 +int styleable ConstraintOverride_layout_constraintGuide_begin 60 +int styleable ConstraintOverride_layout_constraintGuide_end 61 +int styleable ConstraintOverride_layout_constraintGuide_percent 62 +int styleable ConstraintOverride_layout_constraintHeight 63 +int styleable ConstraintOverride_layout_constraintHeight_default 64 +int styleable ConstraintOverride_layout_constraintHeight_max 65 +int styleable ConstraintOverride_layout_constraintHeight_min 66 +int styleable ConstraintOverride_layout_constraintHeight_percent 67 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 68 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 69 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 70 +int styleable ConstraintOverride_layout_constraintLeft_creator 71 +int styleable ConstraintOverride_layout_constraintRight_creator 72 +int styleable ConstraintOverride_layout_constraintTag 73 +int styleable ConstraintOverride_layout_constraintTop_creator 74 +int styleable ConstraintOverride_layout_constraintVertical_bias 75 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 76 +int styleable ConstraintOverride_layout_constraintVertical_weight 77 +int styleable ConstraintOverride_layout_constraintWidth 78 +int styleable ConstraintOverride_layout_constraintWidth_default 79 +int styleable ConstraintOverride_layout_constraintWidth_max 80 +int styleable ConstraintOverride_layout_constraintWidth_min 81 +int styleable ConstraintOverride_layout_constraintWidth_percent 82 +int styleable ConstraintOverride_layout_editor_absoluteX 83 +int styleable ConstraintOverride_layout_editor_absoluteY 84 +int styleable ConstraintOverride_layout_goneMarginBaseline 85 +int styleable ConstraintOverride_layout_goneMarginBottom 86 +int styleable ConstraintOverride_layout_goneMarginEnd 87 +int styleable ConstraintOverride_layout_goneMarginLeft 88 +int styleable ConstraintOverride_layout_goneMarginRight 89 +int styleable ConstraintOverride_layout_goneMarginStart 90 +int styleable ConstraintOverride_layout_goneMarginTop 91 +int styleable ConstraintOverride_layout_marginBaseline 92 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 93 +int styleable ConstraintOverride_motionProgress 94 +int styleable ConstraintOverride_motionStagger 95 +int styleable ConstraintOverride_motionTarget 96 +int styleable ConstraintOverride_pathMotionArc 97 +int styleable ConstraintOverride_pivotAnchor 98 +int styleable ConstraintOverride_polarRelativeTo 99 +int styleable ConstraintOverride_quantizeMotionInterpolator 100 +int styleable ConstraintOverride_quantizeMotionPhase 101 +int styleable ConstraintOverride_quantizeMotionSteps 102 +int styleable ConstraintOverride_transformPivotTarget 103 +int styleable ConstraintOverride_transitionEasing 104 +int styleable ConstraintOverride_transitionPathRotate 105 +int styleable ConstraintOverride_visibilityMode 106 +int[] styleable ConstraintSet { 0x7f040001, 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f6, 0x7f0400f7, 0x7f040135, 0x7f040148, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024c, 0x7f040250, 0x7f0402c0, 0x7f0402c1, 0x7f0402eb, 0x7f0402f2, 0x7f0402ff, 0x7f040311, 0x7f040413, 0x7f040415 } +int styleable ConstraintSet_ConstraintRotate 0 +int styleable ConstraintSet_android_alpha 1 +int styleable ConstraintSet_android_elevation 2 +int styleable ConstraintSet_android_id 3 +int styleable ConstraintSet_android_layout_height 4 +int styleable ConstraintSet_android_layout_marginBottom 5 +int styleable ConstraintSet_android_layout_marginEnd 6 +int styleable ConstraintSet_android_layout_marginLeft 7 +int styleable ConstraintSet_android_layout_marginRight 8 +int styleable ConstraintSet_android_layout_marginStart 9 +int styleable ConstraintSet_android_layout_marginTop 10 +int styleable ConstraintSet_android_layout_width 11 +int styleable ConstraintSet_android_maxHeight 12 +int styleable ConstraintSet_android_maxWidth 13 +int styleable ConstraintSet_android_minHeight 14 +int styleable ConstraintSet_android_minWidth 15 +int styleable ConstraintSet_android_orientation 16 +int styleable ConstraintSet_android_pivotX 17 +int styleable ConstraintSet_android_pivotY 18 +int styleable ConstraintSet_android_rotation 19 +int styleable ConstraintSet_android_rotationX 20 +int styleable ConstraintSet_android_rotationY 21 +int styleable ConstraintSet_android_scaleX 22 +int styleable ConstraintSet_android_scaleY 23 +int styleable ConstraintSet_android_transformPivotX 24 +int styleable ConstraintSet_android_transformPivotY 25 +int styleable ConstraintSet_android_translationX 26 +int styleable ConstraintSet_android_translationY 27 +int styleable ConstraintSet_android_translationZ 28 +int styleable ConstraintSet_android_visibility 29 +int styleable ConstraintSet_animateCircleAngleTo 30 +int styleable ConstraintSet_animateRelativeTo 31 +int styleable ConstraintSet_animate_relativeTo 32 +int styleable ConstraintSet_barrierAllowsGoneWidgets 33 +int styleable ConstraintSet_barrierDirection 34 +int styleable ConstraintSet_barrierMargin 35 +int styleable ConstraintSet_chainUseRtl 36 +int styleable ConstraintSet_constraint_referenced_ids 37 +int styleable ConstraintSet_constraint_referenced_tags 38 +int styleable ConstraintSet_deriveConstraintsFrom 39 +int styleable ConstraintSet_drawPath 40 +int styleable ConstraintSet_flow_firstHorizontalBias 41 +int styleable ConstraintSet_flow_firstHorizontalStyle 42 +int styleable ConstraintSet_flow_firstVerticalBias 43 +int styleable ConstraintSet_flow_firstVerticalStyle 44 +int styleable ConstraintSet_flow_horizontalAlign 45 +int styleable ConstraintSet_flow_horizontalBias 46 +int styleable ConstraintSet_flow_horizontalGap 47 +int styleable ConstraintSet_flow_horizontalStyle 48 +int styleable ConstraintSet_flow_lastHorizontalBias 49 +int styleable ConstraintSet_flow_lastHorizontalStyle 50 +int styleable ConstraintSet_flow_lastVerticalBias 51 +int styleable ConstraintSet_flow_lastVerticalStyle 52 +int styleable ConstraintSet_flow_maxElementsWrap 53 +int styleable ConstraintSet_flow_verticalAlign 54 +int styleable ConstraintSet_flow_verticalBias 55 +int styleable ConstraintSet_flow_verticalGap 56 +int styleable ConstraintSet_flow_verticalStyle 57 +int styleable ConstraintSet_flow_wrapMode 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int[] styleable CoordinatorLayout { 0x7f040204, 0x7f04037b } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040240, 0x7f04024a, 0x7f04024b } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomAttribute { 0x7f040040, 0x7f040121, 0x7f040122, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040128, 0x7f040129, 0x7f04012a, 0x7f040290 } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable CustomCircleImageView { 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6 } +int styleable CustomCircleImageView_civ_border_color 0 +int styleable CustomCircleImageView_civ_border_overlay 1 +int styleable CustomCircleImageView_civ_border_width 2 +int styleable CustomCircleImageView_civ_fill_color 3 +int[] styleable CustomRatingBar { 0x7f040002, 0x7f0400c9, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f04037e } +int styleable CustomRatingBar_OtherHeartImg 0 +int styleable CustomRatingBar_clickable 1 +int styleable CustomRatingBar_elenmentCount 2 +int styleable CustomRatingBar_elenmentEmpty 3 +int styleable CustomRatingBar_elenmentFill 4 +int styleable CustomRatingBar_elenmentHarf 5 +int styleable CustomRatingBar_elenmentHeight 6 +int styleable CustomRatingBar_elenmentPadding 7 +int styleable CustomRatingBar_elenmentStep 8 +int styleable CustomRatingBar_elenmentWidth 9 +int styleable CustomRatingBar_stepSize 10 +int[] styleable DefaultTimeBar { 0x7f04002d, 0x7f04002e, 0x7f040059, 0x7f04007d, 0x7f0402fd, 0x7f04033f, 0x7f040340, 0x7f040341, 0x7f040342, 0x7f040407, 0x7f04041b } +int styleable DefaultTimeBar_ad_marker_color 0 +int styleable DefaultTimeBar_ad_marker_width 1 +int styleable DefaultTimeBar_bar_height 2 +int styleable DefaultTimeBar_buffered_color 3 +int styleable DefaultTimeBar_played_color 4 +int styleable DefaultTimeBar_scrubber_color 5 +int styleable DefaultTimeBar_scrubber_disabled_size 6 +int styleable DefaultTimeBar_scrubber_dragged_size 7 +int styleable DefaultTimeBar_scrubber_enabled_size 8 +int styleable DefaultTimeBar_touch_target_height 9 +int styleable DefaultTimeBar_unplayed_color 10 +int[] styleable DiscreteScrollView { 0x7f040155 } +int styleable DiscreteScrollView_dsv_orientation 0 +int[] styleable DrawerArrowToggle { 0x7f04003e, 0x7f04003f, 0x7f040058, 0x7f0400dc, 0x7f04014d, 0x7f0401b7, 0x7f040364, 0x7f0403de } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable ExtendedFloatingActionButton { 0x7f0400d8, 0x7f040162, 0x7f040180, 0x7f0401c3, 0x7f040355, 0x7f04035a } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_hideMotionSpec 3 +int styleable ExtendedFloatingActionButton_showMotionSpec 4 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f04005d, 0x7f04005e } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x101000e, 0x7f040053, 0x7f040054, 0x7f04006b, 0x7f040162, 0x7f04016e, 0x7f040188, 0x7f040189, 0x7f0401c3, 0x7f0401ce, 0x7f040289, 0x7f040309, 0x7f040327, 0x7f04034c, 0x7f04034f, 0x7f040355, 0x7f04041d } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f04005d } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f0401fb, 0x7f040255 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f0401aa, 0x7f0401ab, 0x7f0401ac, 0x7f0401ad, 0x7f0401ae, 0x7f0401af, 0x7f0401b0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0401a8, 0x7f0401b1, 0x7f0401b2, 0x7f0401b3, 0x7f04041a } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f0401b5 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GenericDraweeHierarchy { 0x7f04002b, 0x7f04004b, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f0402da, 0x7f0402f3, 0x7f0402f4, 0x7f040308, 0x7f04030a, 0x7f04030b, 0x7f04030c, 0x7f040323, 0x7f040324, 0x7f04032a, 0x7f04032b, 0x7f04032c, 0x7f04032d, 0x7f04032e, 0x7f040331, 0x7f040332, 0x7f040333, 0x7f040334, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f040423 } +int styleable GenericDraweeHierarchy_actualImageScaleType 0 +int styleable GenericDraweeHierarchy_backgroundImage 1 +int styleable GenericDraweeHierarchy_fadeDuration 2 +int styleable GenericDraweeHierarchy_failureImage 3 +int styleable GenericDraweeHierarchy_failureImageScaleType 4 +int styleable GenericDraweeHierarchy_overlayImage 5 +int styleable GenericDraweeHierarchy_placeholderImage 6 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 +int styleable GenericDraweeHierarchy_progressBarImage 10 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 +int styleable GenericDraweeHierarchy_retryImage 12 +int styleable GenericDraweeHierarchy_retryImageScaleType 13 +int styleable GenericDraweeHierarchy_roundAsCircle 14 +int styleable GenericDraweeHierarchy_roundBottomEnd 15 +int styleable GenericDraweeHierarchy_roundBottomLeft 16 +int styleable GenericDraweeHierarchy_roundBottomRight 17 +int styleable GenericDraweeHierarchy_roundBottomStart 18 +int styleable GenericDraweeHierarchy_roundTopEnd 19 +int styleable GenericDraweeHierarchy_roundTopLeft 20 +int styleable GenericDraweeHierarchy_roundTopRight 21 +int styleable GenericDraweeHierarchy_roundTopStart 22 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24 +int styleable GenericDraweeHierarchy_roundingBorderColor 25 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27 +int styleable GenericDraweeHierarchy_viewAspectRatio 28 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable ImageFilterView { 0x7f040036, 0x7f040068, 0x7f04007c, 0x7f040109, 0x7f04011e, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0402d9, 0x7f040329, 0x7f040330, 0x7f04033a, 0x7f04042b } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable Insets { 0x7f0402dc, 0x7f0402de, 0x7f0402df, 0x7f0402e2 } +int styleable Insets_paddingBottomSystemWindowInsets 0 +int styleable Insets_paddingLeftSystemWindowInsets 1 +int styleable Insets_paddingRightSystemWindowInsets 2 +int styleable Insets_paddingTopSystemWindowInsets 3 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f040120, 0x7f0401b6, 0x7f0402c0, 0x7f0402c2, 0x7f040411, 0x7f040413, 0x7f040415 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f040120, 0x7f0401b6, 0x7f0402c0, 0x7f0402c2, 0x7f040413, 0x7f040415, 0x7f04042d, 0x7f04042e, 0x7f04042f, 0x7f040430, 0x7f040431 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f040120, 0x7f040148, 0x7f0401b6, 0x7f040202, 0x7f0402c2, 0x7f0402eb, 0x7f0402ed, 0x7f0402ee, 0x7f0402ef, 0x7f0402f0, 0x7f04035e, 0x7f040413 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f040120, 0x7f0401b6, 0x7f0402c0, 0x7f0402c2, 0x7f040413, 0x7f040415, 0x7f04042c, 0x7f04042d, 0x7f04042e, 0x7f04042f, 0x7f040430 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f0401b6, 0x7f0402c2, 0x7f0402c3, 0x7f0402c4, 0x7f0402d1, 0x7f0402d3, 0x7f0402d4, 0x7f040417, 0x7f040418, 0x7f040419, 0x7f040426, 0x7f040427, 0x7f040428 } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x7f04005a, 0x7f04005b, 0x7f04005c, 0x7f04009d, 0x7f0400f6, 0x7f0400f7, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040235, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024c, 0x7f040250, 0x7f040288, 0x7f04028c, 0x7f040291, 0x7f040295 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_layout_constrainedHeight 15 +int styleable Layout_layout_constrainedWidth 16 +int styleable Layout_layout_constraintBaseline_creator 17 +int styleable Layout_layout_constraintBaseline_toBaselineOf 18 +int styleable Layout_layout_constraintBaseline_toBottomOf 19 +int styleable Layout_layout_constraintBaseline_toTopOf 20 +int styleable Layout_layout_constraintBottom_creator 21 +int styleable Layout_layout_constraintBottom_toBottomOf 22 +int styleable Layout_layout_constraintBottom_toTopOf 23 +int styleable Layout_layout_constraintCircle 24 +int styleable Layout_layout_constraintCircleAngle 25 +int styleable Layout_layout_constraintCircleRadius 26 +int styleable Layout_layout_constraintDimensionRatio 27 +int styleable Layout_layout_constraintEnd_toEndOf 28 +int styleable Layout_layout_constraintEnd_toStartOf 29 +int styleable Layout_layout_constraintGuide_begin 30 +int styleable Layout_layout_constraintGuide_end 31 +int styleable Layout_layout_constraintGuide_percent 32 +int styleable Layout_layout_constraintHeight 33 +int styleable Layout_layout_constraintHeight_default 34 +int styleable Layout_layout_constraintHeight_max 35 +int styleable Layout_layout_constraintHeight_min 36 +int styleable Layout_layout_constraintHeight_percent 37 +int styleable Layout_layout_constraintHorizontal_bias 38 +int styleable Layout_layout_constraintHorizontal_chainStyle 39 +int styleable Layout_layout_constraintHorizontal_weight 40 +int styleable Layout_layout_constraintLeft_creator 41 +int styleable Layout_layout_constraintLeft_toLeftOf 42 +int styleable Layout_layout_constraintLeft_toRightOf 43 +int styleable Layout_layout_constraintRight_creator 44 +int styleable Layout_layout_constraintRight_toLeftOf 45 +int styleable Layout_layout_constraintRight_toRightOf 46 +int styleable Layout_layout_constraintStart_toEndOf 47 +int styleable Layout_layout_constraintStart_toStartOf 48 +int styleable Layout_layout_constraintTop_creator 49 +int styleable Layout_layout_constraintTop_toBottomOf 50 +int styleable Layout_layout_constraintTop_toTopOf 51 +int styleable Layout_layout_constraintVertical_bias 52 +int styleable Layout_layout_constraintVertical_chainStyle 53 +int styleable Layout_layout_constraintVertical_weight 54 +int styleable Layout_layout_constraintWidth 55 +int styleable Layout_layout_constraintWidth_default 56 +int styleable Layout_layout_constraintWidth_max 57 +int styleable Layout_layout_constraintWidth_min 58 +int styleable Layout_layout_constraintWidth_percent 59 +int styleable Layout_layout_editor_absoluteX 60 +int styleable Layout_layout_editor_absoluteY 61 +int styleable Layout_layout_goneMarginBaseline 62 +int styleable Layout_layout_goneMarginBottom 63 +int styleable Layout_layout_goneMarginEnd 64 +int styleable Layout_layout_goneMarginLeft 65 +int styleable Layout_layout_goneMarginRight 66 +int styleable Layout_layout_goneMarginStart 67 +int styleable Layout_layout_goneMarginTop 68 +int styleable Layout_layout_marginBaseline 69 +int styleable Layout_layout_wrapBehaviorInParent 70 +int styleable Layout_maxHeight 71 +int styleable Layout_maxWidth 72 +int styleable Layout_minHeight 73 +int styleable Layout_minWidth 74 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04013b, 0x7f04013d, 0x7f04028d, 0x7f040354 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable LinearProgressIndicator { 0x7f0401df, 0x7f0401e3 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f04004c, 0x7f04004d, 0x7f04004e, 0x7f04004f } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x7f040268, 0x7f040269, 0x7f04026a, 0x7f04026b, 0x7f04026c } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 +int[] styleable MaterialAutoCompleteTextView { 0x1010220 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int[] styleable MaterialButton { 0x10100d4, 0x10101e5, 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f040053, 0x7f040054, 0x7f040112, 0x7f040162, 0x7f0401cf, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d5, 0x7f0401d6, 0x7f040327, 0x7f04034c, 0x7f04034f, 0x7f04037f, 0x7f040380 } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int[] styleable MaterialButtonToggleGroup { 0x7f04009f, 0x7f040349, 0x7f04035d } +int styleable MaterialButtonToggleGroup_checkedButton 0 +int styleable MaterialButtonToggleGroup_selectionRequired 1 +int styleable MaterialButtonToggleGroup_singleSelection 2 +int[] styleable MaterialCalendar { 0x101020d, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f0402ce, 0x7f040315, 0x7f04043c, 0x7f04043d, 0x7f04043e } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f0401eb, 0x7f0401f4, 0x7f0401f5, 0x7f0401fc, 0x7f0401fd, 0x7f040201 } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x10101e5, 0x7f04008e, 0x7f0400a1, 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f040327, 0x7f04034c, 0x7f04034f, 0x7f040378, 0x7f04037f, 0x7f040380 } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconMargin 3 +int styleable MaterialCardView_checkedIconSize 4 +int styleable MaterialCardView_checkedIconTint 5 +int styleable MaterialCardView_rippleColor 6 +int styleable MaterialCardView_shapeAppearance 7 +int styleable MaterialCardView_shapeAppearanceOverlay 8 +int styleable MaterialCardView_state_dragged 9 +int styleable MaterialCardView_strokeColor 10 +int styleable MaterialCardView_strokeWidth 11 +int[] styleable MaterialCheckBox { 0x7f040089, 0x7f04041e } +int styleable MaterialCheckBox_buttonTint 0 +int styleable MaterialCheckBox_useMaterialThemeColors 1 +int[] styleable MaterialRadioButton { 0x7f040089, 0x7f04041e } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f04034c, 0x7f04034f } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x7f040254 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x7f040254 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0400cc, 0x7f040203 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f0402c9, 0x7f040384, 0x7f0403f1 } +int styleable MaterialToolbar_navigationIconTint 0 +int styleable MaterialToolbar_subtitleCentered 1 +int styleable MaterialToolbar_titleCentered 2 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f040012, 0x7f040026, 0x7f040028, 0x7f040035, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f0400fa, 0x7f0401d5, 0x7f0401d6, 0x7f0402d0, 0x7f040352, 0x7f040403 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f040307, 0x7f040381 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f0402a3, 0x7f0402a4, 0x7f0402a5, 0x7f0402a6, 0x7f0402a7, 0x7f0402a8 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable MogoImageView { 0x7f040296, 0x7f040297, 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d, 0x7f04029e, 0x7f04029f, 0x7f0402a0, 0x7f0402a1, 0x7f0402a2 } +int styleable MogoImageView_miv_blurRadius 0 +int styleable MogoImageView_miv_borderColor 1 +int styleable MogoImageView_miv_bottomLeftRadius 2 +int styleable MogoImageView_miv_bottomRightRadius 3 +int styleable MogoImageView_miv_failureHolder 4 +int styleable MogoImageView_miv_isBlur 5 +int styleable MogoImageView_miv_overlayImageId 6 +int styleable MogoImageView_miv_placeHolder 7 +int styleable MogoImageView_miv_radius 8 +int styleable MogoImageView_miv_shape 9 +int styleable MogoImageView_miv_shapeBorderWidth 10 +int styleable MogoImageView_miv_topLeftRadius 11 +int styleable MogoImageView_miv_topRightRadius 12 +int[] styleable Motion { 0x7f040037, 0x7f040038, 0x7f040039, 0x7f040148, 0x7f0402bf, 0x7f0402c1, 0x7f0402eb, 0x7f04030f, 0x7f040310, 0x7f040311, 0x7f040413 } +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_animate_relativeTo 2 +int styleable Motion_drawPath 3 +int styleable Motion_motionPathRotate 4 +int styleable Motion_motionStagger 5 +int styleable Motion_pathMotionArc 6 +int styleable Motion_quantizeMotionInterpolator 7 +int styleable Motion_quantizeMotionPhase 8 +int styleable Motion_quantizeMotionSteps 9 +int styleable Motion_transitionEasing 10 +int[] styleable MotionEffect { 0x7f0402b5, 0x7f0402b6, 0x7f0402b7, 0x7f0402b8, 0x7f0402b9, 0x7f0402ba, 0x7f0402bb, 0x7f0402bc } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f0402d2, 0x7f0402d5 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x1010535, 0x10103ac, 0x10100af, 0x1010164, 0x101014f, 0x1010098, 0x1010095, 0x1010097, 0x1010096, 0x7f040069, 0x7f04006a, 0x7f04033b, 0x7f0403c7, 0x7f0403c8, 0x7f0403c9, 0x7f0403ca, 0x7f0403cb, 0x7f0403d3, 0x7f0403d4, 0x7f0403d5, 0x7f0403d6, 0x7f0403d8, 0x7f0403d9, 0x7f0403da, 0x7f0403db } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f04003c, 0x7f04011f, 0x7f04020a, 0x7f0402a9, 0x7f0402c0, 0x7f040356 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f04012f, 0x7f04020b } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f0403ad, 0x7f0403ae, 0x7f0403af } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarView { 0x7f040053, 0x7f040162, 0x7f0401ea, 0x7f0401ef, 0x7f0401f0, 0x7f0401f3, 0x7f0401ff, 0x7f040200, 0x7f040201, 0x7f040207, 0x7f04028e } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemBackground 2 +int styleable NavigationBarView_itemIconSize 3 +int styleable NavigationBarView_itemIconTint 4 +int styleable NavigationBarView_itemRippleColor 5 +int styleable NavigationBarView_itemTextAppearanceActive 6 +int styleable NavigationBarView_itemTextAppearanceInactive 7 +int styleable NavigationBarView_itemTextColor 8 +int styleable NavigationBarView_labelVisibilityMode 9 +int styleable NavigationBarView_menu 10 +int[] styleable NavigationRailView { 0x7f0401bc, 0x7f04028f } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_menuGravity 1 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f040162, 0x7f0401bc, 0x7f0401ea, 0x7f0401ec, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f8, 0x7f0401f9, 0x7f0401fa, 0x7f0401fe, 0x7f040201, 0x7f04028e, 0x7f04034c, 0x7f04034f } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconSize 8 +int styleable NavigationView_itemIconTint 9 +int styleable NavigationView_itemMaxLines 10 +int styleable NavigationView_itemShapeAppearance 11 +int styleable NavigationView_itemShapeAppearanceOverlay 12 +int styleable NavigationView_itemShapeFillColor 13 +int styleable NavigationView_itemShapeInsetBottom 14 +int styleable NavigationView_itemShapeInsetEnd 15 +int styleable NavigationView_itemShapeInsetStart 16 +int styleable NavigationView_itemShapeInsetTop 17 +int styleable NavigationView_itemTextAppearance 18 +int styleable NavigationView_itemTextColor 19 +int styleable NavigationView_menu 20 +int styleable NavigationView_shapeAppearance 21 +int styleable NavigationView_shapeAppearanceOverlay 22 +int[] styleable OnClick { 0x7f0400c8, 0x7f0403ac } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f040041, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040253, 0x7f040284, 0x7f04028b, 0x7f0402c5, 0x7f0402cd, 0x7f0402d7, 0x7f040328, 0x7f040368, 0x7f040369, 0x7f04036a, 0x7f04036b, 0x7f04036c, 0x7f040404, 0x7f040405, 0x7f040406 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PlaybackControlView { 0x7f04010b, 0x7f040192, 0x7f040326, 0x7f040359 } +int styleable PlaybackControlView_controller_layout_id 0 +int styleable PlaybackControlView_fastforward_increment 1 +int styleable PlaybackControlView_rewind_increment 2 +int styleable PlaybackControlView_show_timeout 3 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0402d8 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f040375 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x7f040234, 0x7f0402c0, 0x7f040429 } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f04027f } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f040293, 0x7f040421 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f0402db, 0x7f0402e1 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f04020c, 0x7f040325, 0x7f040363, 0x7f04036e } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable RoundLayout { 0x7f04032f } +int styleable RoundLayout_roundLayoutRadius 0 +int[] styleable Scale { 0x7f040139 } +int styleable Scale_disappearedScale 0 +int[] styleable ScrimInsetsFrameLayout { 0x7f0401e7 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f040064 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f0400ce, 0x7f0400f2, 0x7f040130, 0x7f0401b9, 0x7f0401d7, 0x7f040209, 0x7f040312, 0x7f040313, 0x7f040343, 0x7f040344, 0x7f040382, 0x7f04038b, 0x7f04042a } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f04010d, 0x7f04010e, 0x7f04010f, 0x7f040110, 0x7f040111, 0x7f040113, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f040117 } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040107, 0x7f04034c, 0x7f04034f, 0x7f04037f, 0x7f040380 } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SimpleDraweeView { 0x7f04002a, 0x7f04002b, 0x7f04002c, 0x7f04004b, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f0402da, 0x7f0402f3, 0x7f0402f4, 0x7f040308, 0x7f04030a, 0x7f04030b, 0x7f04030c, 0x7f040323, 0x7f040324, 0x7f04032a, 0x7f04032b, 0x7f04032c, 0x7f04032d, 0x7f04032e, 0x7f040331, 0x7f040332, 0x7f040333, 0x7f040334, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f040423 } +int styleable SimpleDraweeView_actualImageResource 0 +int styleable SimpleDraweeView_actualImageScaleType 1 +int styleable SimpleDraweeView_actualImageUri 2 +int styleable SimpleDraweeView_backgroundImage 3 +int styleable SimpleDraweeView_fadeDuration 4 +int styleable SimpleDraweeView_failureImage 5 +int styleable SimpleDraweeView_failureImageScaleType 6 +int styleable SimpleDraweeView_overlayImage 7 +int styleable SimpleDraweeView_placeholderImage 8 +int styleable SimpleDraweeView_placeholderImageScaleType 9 +int styleable SimpleDraweeView_pressedStateOverlayImage 10 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 +int styleable SimpleDraweeView_progressBarImage 12 +int styleable SimpleDraweeView_progressBarImageScaleType 13 +int styleable SimpleDraweeView_retryImage 14 +int styleable SimpleDraweeView_retryImageScaleType 15 +int styleable SimpleDraweeView_roundAsCircle 16 +int styleable SimpleDraweeView_roundBottomEnd 17 +int styleable SimpleDraweeView_roundBottomLeft 18 +int styleable SimpleDraweeView_roundBottomRight 19 +int styleable SimpleDraweeView_roundBottomStart 20 +int styleable SimpleDraweeView_roundTopEnd 21 +int styleable SimpleDraweeView_roundTopLeft 22 +int styleable SimpleDraweeView_roundTopRight 23 +int styleable SimpleDraweeView_roundTopStart 24 +int styleable SimpleDraweeView_roundWithOverlayColor 25 +int styleable SimpleDraweeView_roundedCornerRadius 26 +int styleable SimpleDraweeView_roundingBorderColor 27 +int styleable SimpleDraweeView_roundingBorderPadding 28 +int styleable SimpleDraweeView_roundingBorderWidth 29 +int styleable SimpleDraweeView_viewAspectRatio 30 +int[] styleable SimpleExoPlayerView { 0x7f04010b, 0x7f040132, 0x7f040192, 0x7f0401c6, 0x7f0402fe, 0x7f040322, 0x7f040326, 0x7f040359, 0x7f04038c, 0x7f04041f, 0x7f040420 } +int styleable SimpleExoPlayerView_controller_layout_id 0 +int styleable SimpleExoPlayerView_default_artwork 1 +int styleable SimpleExoPlayerView_fastforward_increment 2 +int styleable SimpleExoPlayerView_hide_on_touch 3 +int styleable SimpleExoPlayerView_player_layout_id 4 +int styleable SimpleExoPlayerView_resize_mode 5 +int styleable SimpleExoPlayerView_rewind_increment 6 +int styleable SimpleExoPlayerView_show_timeout 7 +int styleable SimpleExoPlayerView_surface_type 8 +int styleable SimpleExoPlayerView_use_artwork 9 +int styleable SimpleExoPlayerView_use_controller 10 +int[] styleable Slider { 0x101000e, 0x1010146, 0x1010024, 0x10102de, 0x10102df, 0x7f0401ba, 0x7f0401bb, 0x7f040205, 0x7f040206, 0x7f0403df, 0x7f0403e0, 0x7f0403e1, 0x7f0403e2, 0x7f0403e3, 0x7f0403e7, 0x7f0403e8, 0x7f0403e9, 0x7f0403ed, 0x7f040409, 0x7f04040a, 0x7f04040b, 0x7f04040d } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_thumbColor 9 +int styleable Slider_thumbElevation 10 +int styleable Slider_thumbRadius 11 +int styleable Slider_thumbStrokeColor 12 +int styleable Slider_thumbStrokeWidth 13 +int styleable Slider_tickColor 14 +int styleable Slider_tickColorActive 15 +int styleable Slider_tickColorInactive 16 +int styleable Slider_tickVisible 17 +int styleable Slider_trackColor 18 +int styleable Slider_trackColorActive 19 +int styleable Slider_trackColorInactive 20 +int styleable Slider_trackHeight 21 +int[] styleable Snackbar { 0x7f040360, 0x7f040361, 0x7f040362 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x7f040027, 0x101011f, 0x7f04003a, 0x7f040050, 0x7f040053, 0x7f040054, 0x7f040162, 0x7f040285 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f040302 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable State { 0x10100d0, 0x7f0400f8 } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x7f040131 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040357, 0x7f040367, 0x7f04038d, 0x7f04038e, 0x7f040390, 0x7f0403e4, 0x7f0403e5, 0x7f0403e6, 0x7f040408, 0x7f04040f, 0x7f040410 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f04041e } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f040391, 0x7f040392, 0x7f040393, 0x7f040394, 0x7f040395, 0x7f040396, 0x7f040397, 0x7f040398, 0x7f040399, 0x7f04039a, 0x7f04039b, 0x7f04039c, 0x7f04039d, 0x7f04039e, 0x7f04039f, 0x7f0403a0, 0x7f0403a1, 0x7f0403a2, 0x7f0403a3, 0x7f0403a4, 0x7f0403a5, 0x7f0403a6, 0x7f0403a7, 0x7f0403a9, 0x7f0403aa, 0x7f0403ab } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextColor 22 +int styleable TabLayout_tabTextAppearance 23 +int styleable TabLayout_tabTextColor 24 +int styleable TabLayout_tabUnboundedRipple 25 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f0401a9, 0x7f0401b2, 0x7f0403b0, 0x7f0403d2 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x101014f, 0x1010095, 0x1010097, 0x1010096, 0x7f040069, 0x7f04006a, 0x7f0403cf, 0x7f0403d3, 0x7f0403d4 } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f0403d0 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x101011f, 0x101013f, 0x101009a, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f040075, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b, 0x7f040118, 0x7f040119, 0x7f04011a, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f040166, 0x7f040167, 0x7f040168, 0x7f040169, 0x7f04016a, 0x7f04016b, 0x7f04016f, 0x7f040170, 0x7f040171, 0x7f040172, 0x7f040173, 0x7f040174, 0x7f040175, 0x7f040178, 0x7f0401be, 0x7f0401bf, 0x7f0401c0, 0x7f0401c1, 0x7f0401c7, 0x7f0401c8, 0x7f0401c9, 0x7f0401ca, 0x7f0402e6, 0x7f0402e7, 0x7f0402e8, 0x7f0402e9, 0x7f0402ea, 0x7f0402f5, 0x7f0402f6, 0x7f0402f7, 0x7f040304, 0x7f040305, 0x7f040306, 0x7f04034c, 0x7f04034f, 0x7f040370, 0x7f040371, 0x7f040372, 0x7f040373, 0x7f040374, 0x7f040388, 0x7f040389, 0x7f04038a } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxWidth 2 +int styleable TextInputLayout_android_minWidth 3 +int styleable TextInputLayout_android_textColorHint 4 +int styleable TextInputLayout_boxBackgroundColor 5 +int styleable TextInputLayout_boxBackgroundMode 6 +int styleable TextInputLayout_boxCollapsedPaddingTop 7 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 8 +int styleable TextInputLayout_boxCornerRadiusBottomStart 9 +int styleable TextInputLayout_boxCornerRadiusTopEnd 10 +int styleable TextInputLayout_boxCornerRadiusTopStart 11 +int styleable TextInputLayout_boxStrokeColor 12 +int styleable TextInputLayout_boxStrokeErrorColor 13 +int styleable TextInputLayout_boxStrokeWidth 14 +int styleable TextInputLayout_boxStrokeWidthFocused 15 +int styleable TextInputLayout_counterEnabled 16 +int styleable TextInputLayout_counterMaxLength 17 +int styleable TextInputLayout_counterOverflowTextAppearance 18 +int styleable TextInputLayout_counterOverflowTextColor 19 +int styleable TextInputLayout_counterTextAppearance 20 +int styleable TextInputLayout_counterTextColor 21 +int styleable TextInputLayout_endIconCheckable 22 +int styleable TextInputLayout_endIconContentDescription 23 +int styleable TextInputLayout_endIconDrawable 24 +int styleable TextInputLayout_endIconMode 25 +int styleable TextInputLayout_endIconTint 26 +int styleable TextInputLayout_endIconTintMode 27 +int styleable TextInputLayout_errorContentDescription 28 +int styleable TextInputLayout_errorEnabled 29 +int styleable TextInputLayout_errorIconDrawable 30 +int styleable TextInputLayout_errorIconTint 31 +int styleable TextInputLayout_errorIconTintMode 32 +int styleable TextInputLayout_errorTextAppearance 33 +int styleable TextInputLayout_errorTextColor 34 +int styleable TextInputLayout_expandedHintEnabled 35 +int styleable TextInputLayout_helperText 36 +int styleable TextInputLayout_helperTextEnabled 37 +int styleable TextInputLayout_helperTextTextAppearance 38 +int styleable TextInputLayout_helperTextTextColor 39 +int styleable TextInputLayout_hintAnimationEnabled 40 +int styleable TextInputLayout_hintEnabled 41 +int styleable TextInputLayout_hintTextAppearance 42 +int styleable TextInputLayout_hintTextColor 43 +int styleable TextInputLayout_passwordToggleContentDescription 44 +int styleable TextInputLayout_passwordToggleDrawable 45 +int styleable TextInputLayout_passwordToggleEnabled 46 +int styleable TextInputLayout_passwordToggleTint 47 +int styleable TextInputLayout_passwordToggleTintMode 48 +int styleable TextInputLayout_placeholderText 49 +int styleable TextInputLayout_placeholderTextAppearance 50 +int styleable TextInputLayout_placeholderTextColor 51 +int styleable TextInputLayout_prefixText 52 +int styleable TextInputLayout_prefixTextAppearance 53 +int styleable TextInputLayout_prefixTextColor 54 +int styleable TextInputLayout_shapeAppearance 55 +int styleable TextInputLayout_shapeAppearanceOverlay 56 +int styleable TextInputLayout_startIconCheckable 57 +int styleable TextInputLayout_startIconContentDescription 58 +int styleable TextInputLayout_startIconDrawable 59 +int styleable TextInputLayout_startIconTint 60 +int styleable TextInputLayout_startIconTintMode 61 +int styleable TextInputLayout_suffixText 62 +int styleable TextInputLayout_suffixTextAppearance 63 +int styleable TextInputLayout_suffixTextColor 64 +int[] styleable ThemeEnforcement { 0x1010034, 0x7f04016c, 0x7f04016d } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040084, 0x7f0400d6, 0x7f0400d7, 0x7f0400fb, 0x7f0400fc, 0x7f0400fd, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040266, 0x7f040267, 0x7f040286, 0x7f04028e, 0x7f0402c7, 0x7f0402c8, 0x7f040302, 0x7f040383, 0x7f040385, 0x7f040386, 0x7f0403f0, 0x7f0403f4, 0x7f0403f5, 0x7f0403f6, 0x7f0403f7, 0x7f0403f8, 0x7f0403f9, 0x7f0403fa, 0x7f0403fb } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x10100f6, 0x1010140, 0x101013f, 0x10100d5, 0x101014f, 0x1010034, 0x7f040053 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_backgroundTint 6 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f040411 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x10100d0, 0x7f040048, 0x7f0400f4, 0x7f0400f5, 0x7f040156, 0x7f04020b, 0x7f0402bd, 0x7f0402eb, 0x7f04036f, 0x7f040412, 0x7f040414 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f0400f8, 0x7f04031e, 0x7f04031f, 0x7f040320, 0x7f040321 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x7f0402dd, 0x7f0402e0, 0x7f0403dc } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040053, 0x7f040054 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x7f040003, 0x7f040004, 0x10100d0, 0x7f0400c7, 0x7f040156, 0x7f0401d8, 0x7f0401d9, 0x7f0402bd, 0x7f0402c2, 0x7f0402d6, 0x7f0402eb, 0x7f04034b, 0x7f040412, 0x7f04041c, 0x7f040425 } +int styleable ViewTransition_SharedValue 0 +int styleable ViewTransition_SharedValueId 1 +int styleable ViewTransition_android_id 2 +int styleable ViewTransition_clearsTag 3 +int styleable ViewTransition_duration 4 +int styleable ViewTransition_ifTagNotSet 5 +int styleable ViewTransition_ifTagSet 6 +int styleable ViewTransition_motionInterpolator 7 +int styleable ViewTransition_motionTarget 8 +int styleable ViewTransition_onStateTransition 9 +int styleable ViewTransition_pathMotionArc 10 +int styleable ViewTransition_setsTag 11 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int[] styleable download { 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040144 } +int styleable download_download_bg_line_color 0 +int styleable download_download_bg_line_width 1 +int styleable download_download_line_color 2 +int styleable download_download_line_width 3 +int styleable download_download_text_color 4 +int styleable download_download_text_size 5 +int[] styleable include { 0x7f0400f3 } +int styleable include_constraintSet 0 +int[] styleable play { 0x7f0402f9, 0x7f0402fa, 0x7f0402fb, 0x7f0402fc } +int styleable play_play_bg_line_color 0 +int styleable play_play_bg_line_width 1 +int styleable play_play_line_color 2 +int styleable play_play_line_width 3 +int xml standalone_badge 0x7f180001 +int xml standalone_badge_gravity_bottom_end 0x7f180002 +int xml standalone_badge_gravity_bottom_start 0x7f180003 +int xml standalone_badge_gravity_top_start 0x7f180004 +int xml standalone_badge_offset 0x7f180005 +int xml util_code_provider_paths 0x7f180006 diff --git a/modules/mogo-module-chat/build/outputs/aar/mogo-module-chat-debug.aar b/modules/mogo-module-chat/build/outputs/aar/mogo-module-chat-debug.aar new file mode 100644 index 0000000000..88bf841b06 Binary files /dev/null and b/modules/mogo-module-chat/build/outputs/aar/mogo-module-chat-debug.aar differ diff --git a/modules/mogo-module-chat/build/outputs/logs/manifest-merger-debug-report.txt b/modules/mogo-module-chat/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..d3697235eb --- /dev/null +++ b/modules/mogo-module-chat/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,73 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 + package + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:2:5-28 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:1-19:12 + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:1:11-69 +uses-permission#android.permission.ACCESS_NETWORK_STATE +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:4:5-79 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:4:22-76 +uses-permission#android.permission.ACCESS_WIFI_STATE +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:5:5-76 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:5:22-73 +uses-permission#android.permission.INTERNET +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:6:5-67 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:6:22-64 +uses-permission#android.permission.MODIFY_AUDIO_SETTINGS +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:7:5-80 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:7:22-77 +uses-permission#android.permission.BLUETOOTH +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:8:5-68 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:8:22-65 +uses-permission#android.permission.WRITE_EXTERNAL_STORAGE +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:9:5-81 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:9:22-78 +uses-permission#android.permission.RECORD_AUDIO +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:11:5-71 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:11:22-68 +application +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:13:5-17:19 +service#com.mogo.chat.service.IMService +ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:14:9-16:38 + android:enabled + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:16:13-35 + android:name + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml:15:13-46 +uses-sdk +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml +INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + ADDED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml + INJECTED from /Users/admin/Android/ADAS/MoGoEagleEye/modules/mogo-module-chat/src/main/AndroidManifest.xml diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..3ef0e59816 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..3b5cdf28ff Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..c698f59fe3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..84bc3cbee5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/java-cache.bin b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..f8821c125f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-chat_debug.kotlin_module b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-chat_debug.kotlin_module new file mode 100644 index 0000000000..8a5c0e1952 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-chat_debug.kotlin_module differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/BaseAspectj$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/BaseAspectj$Companion.class new file mode 100644 index 0000000000..a74b3cfee2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/BaseAspectj$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/BaseAspectj.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/BaseAspectj.class new file mode 100644 index 0000000000..b6bcd89369 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/BaseAspectj.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/LogAspectj.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/LogAspectj.class new file mode 100644 index 0000000000..69d787e39e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/aspect/LogAspectj.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/base/BaseController.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/base/BaseController.class new file mode 100644 index 0000000000..675a0e3d65 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/base/BaseController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/base/BaseRepository.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/base/BaseRepository.class new file mode 100644 index 0000000000..0e3b0ca68c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/base/BaseRepository.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallController$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallController$Companion.class new file mode 100644 index 0000000000..e2a92d50cf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallController$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallController.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallController.class new file mode 100644 index 0000000000..d9f6a96d6d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallControllerHandler.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallControllerHandler.class new file mode 100644 index 0000000000..d454ea122a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallControllerHandler.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallInterceptor.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallInterceptor.class new file mode 100644 index 0000000000..e25d37c90b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallInterceptor.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallProxy.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallProxy.class new file mode 100644 index 0000000000..3faf48c77d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallProxy.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallStatus.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallStatus.class new file mode 100644 index 0000000000..cfe55b3eba Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallTypeManager$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallTypeManager$Companion.class new file mode 100644 index 0000000000..5bfdebad4a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallTypeManager$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallTypeManager.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallTypeManager.class new file mode 100644 index 0000000000..07e17cb3f9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/CallTypeManager.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ConvertFactory$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ConvertFactory$Companion.class new file mode 100644 index 0000000000..82b2d9db64 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ConvertFactory$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ConvertFactory.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ConvertFactory.class new file mode 100644 index 0000000000..7ec574af72 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ConvertFactory.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/DispatchMsg.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/DispatchMsg.class new file mode 100644 index 0000000000..1e0b4cc01b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/DispatchMsg.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/DispatchMsgKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/DispatchMsgKt.class new file mode 100644 index 0000000000..636610f86f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/DispatchMsgKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallControl$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallControl$DefaultImpls.class new file mode 100644 index 0000000000..ac84ed6253 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallControl$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallControl.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallControl.class new file mode 100644 index 0000000000..c62e8bb6fd Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallControl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallMessage$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallMessage$DefaultImpls.class new file mode 100644 index 0000000000..d426a21c3c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallMessage$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallMessage.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallMessage.class new file mode 100644 index 0000000000..884f288077 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.class new file mode 100644 index 0000000000..1c326ed12b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/IMType.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/IMType.class new file mode 100644 index 0000000000..6e9984900c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/IMType.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/IMTypeKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/IMTypeKt.class new file mode 100644 index 0000000000..c95a0bf8cc Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/IMTypeKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBack$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBack$DefaultImpls.class new file mode 100644 index 0000000000..216ade3636 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBack$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBack.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBack.class new file mode 100644 index 0000000000..5756817e51 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBack.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBackImpl.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBackImpl.class new file mode 100644 index 0000000000..399b27b4ee Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/MessageCallBackImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion.class new file mode 100644 index 0000000000..d8cd42da59 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/SocketClientFactory.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/SocketClientFactory.class new file mode 100644 index 0000000000..b64e75176a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/callcenter/SocketClientFactory.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/EnginePollHelper$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/EnginePollHelper$Companion.class new file mode 100644 index 0000000000..e03c866b0b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/EnginePollHelper$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/EnginePollHelper.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/EnginePollHelper.class new file mode 100644 index 0000000000..9e9182c8fa Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/EnginePollHelper.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEApi.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEApi.class new file mode 100644 index 0000000000..8e5a99692f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEApi.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEHelper$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEHelper$Companion.class new file mode 100644 index 0000000000..7ac6749094 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEHelper$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEHelper.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEHelper.class new file mode 100644 index 0000000000..5456fbf969 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/GMEHelper.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEvent$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEvent$DefaultImpls.class new file mode 100644 index 0000000000..17099d6922 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEvent$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEvent.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEvent.class new file mode 100644 index 0000000000..32971c9c0d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEvent.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEventCallBack.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEventCallBack.class new file mode 100644 index 0000000000..aa1b6d440e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/IGMEEventCallBack.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$Companion.class new file mode 100644 index 0000000000..f7298d5426 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.class new file mode 100644 index 0000000000..8da91fd949 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/ConstKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/ConstKt.class new file mode 100644 index 0000000000..e626024226 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/ConstKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/HttpConstants$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/HttpConstants$Companion.class new file mode 100644 index 0000000000..56e42a5cf1 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/HttpConstants$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/HttpConstants.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/HttpConstants.class new file mode 100644 index 0000000000..28deb96509 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/constant/HttpConstants.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CallApiException$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CallApiException$Companion.class new file mode 100644 index 0000000000..4ec59c128d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CallApiException$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CallApiException.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CallApiException.class new file mode 100644 index 0000000000..b81d488bca Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CallApiException.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CommonException$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CommonException$Companion.class new file mode 100644 index 0000000000..df9e1cf1bd Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CommonException$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CommonException.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CommonException.class new file mode 100644 index 0000000000..23acd12ed5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/exception/CommonException.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/ChatServiceModel.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/ChatServiceModel.class new file mode 100644 index 0000000000..46f6c99877 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/ChatServiceModel.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FocusModel$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FocusModel$Companion.class new file mode 100644 index 0000000000..754004ee66 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FocusModel$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FocusModel.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FocusModel.class new file mode 100644 index 0000000000..d567f511cf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FocusModel.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FriendModel$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FriendModel$Companion.class new file mode 100644 index 0000000000..5c2951106c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FriendModel$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FriendModel.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FriendModel.class new file mode 100644 index 0000000000..7e40d27462 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/FriendModel.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AddFriendMessage.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AddFriendMessage.class new file mode 100644 index 0000000000..1eba48b2b1 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AddFriendMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AllUnit.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AllUnit.class new file mode 100644 index 0000000000..7911b3a0ed Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AllUnit.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AllUnitKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AllUnitKt.class new file mode 100644 index 0000000000..4c75e2cb9f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/AllUnitKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CallRequestParam.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CallRequestParam.class new file mode 100644 index 0000000000..3960c9e0e8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CallRequestParam.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.class new file mode 100644 index 0000000000..1dc24da409 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarMessage.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarMessage.class new file mode 100644 index 0000000000..fba8243f67 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarSwitchStatus.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarSwitchStatus.class new file mode 100644 index 0000000000..3d28c17ee0 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/CarSwitchStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/ConnectStatusParam.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/ConnectStatusParam.class new file mode 100644 index 0000000000..cd1958fa4a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/ConnectStatusParam.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusBlackListRequest.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusBlackListRequest.class new file mode 100644 index 0000000000..c857f2a4a8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusBlackListRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusData.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusData.class new file mode 100644 index 0000000000..d9d3cbf43e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusData.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusList.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusList.class new file mode 100644 index 0000000000..a3106a922c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusList.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusStatus.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusStatus.class new file mode 100644 index 0000000000..d7f91645bc Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FocusStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendData.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendData.class new file mode 100644 index 0000000000..38939788d3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendData.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendDataKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendDataKt.class new file mode 100644 index 0000000000..2bb2375773 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendDataKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendList.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendList.class new file mode 100644 index 0000000000..cec6956258 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendList.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.class new file mode 100644 index 0000000000..cf536b90e5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendRequest.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendRequest.class new file mode 100644 index 0000000000..a351a7c978 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/FriendRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Header.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Header.class new file mode 100644 index 0000000000..32d0996f63 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Header.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/InflectionBean.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/InflectionBean.class new file mode 100644 index 0000000000..8c9e4135eb Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/InflectionBean.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Info.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Info.class new file mode 100644 index 0000000000..92788d8b3e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Info.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/InitMessage.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/InitMessage.class new file mode 100644 index 0000000000..98aed81f06 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/InitMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LiveBroadcast.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LiveBroadcast.class new file mode 100644 index 0000000000..258c1de507 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LiveBroadcast.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LiveBroadcastResult.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LiveBroadcastResult.class new file mode 100644 index 0000000000..056ee030e8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LiveBroadcastResult.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.class new file mode 100644 index 0000000000..4496075a54 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/MatchRequestParam.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/MatchRequestParam.class new file mode 100644 index 0000000000..c8c5b2fa4f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/MatchRequestParam.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Message.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Message.class new file mode 100644 index 0000000000..218b12a04f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Message.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/MessageKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/MessageKt.class new file mode 100644 index 0000000000..dbc1baebc9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/MessageKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/OnLineStatus.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/OnLineStatus.class new file mode 100644 index 0000000000..5debed1769 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/OnLineStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/PlayUrl.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/PlayUrl.class new file mode 100644 index 0000000000..4876d91b45 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/PlayUrl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/RealTimeLocationVo.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/RealTimeLocationVo.class new file mode 100644 index 0000000000..017a891264 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/RealTimeLocationVo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Results.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Results.class new file mode 100644 index 0000000000..06c974bb46 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Results.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/RoomInfo.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/RoomInfo.class new file mode 100644 index 0000000000..b814d3bd61 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/RoomInfo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Sns.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Sns.class new file mode 100644 index 0000000000..1d43a92afd Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/Sns.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SocketMsg.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SocketMsg.class new file mode 100644 index 0000000000..366d62a90e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SocketMsg.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SplashConfig.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SplashConfig.class new file mode 100644 index 0000000000..e1d2d20ccf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SplashConfig.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SplashConfigRequest.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SplashConfigRequest.class new file mode 100644 index 0000000000..1917bc3c1c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/SplashConfigRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TeammateInfo.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TeammateInfo.class new file mode 100644 index 0000000000..81874dd9be Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TeammateInfo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TopicGuide.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TopicGuide.class new file mode 100644 index 0000000000..05818fa6ed Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TopicGuide.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TopicRequest.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TopicRequest.class new file mode 100644 index 0000000000..92eba65d4b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/TopicRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/UserInfoBySns.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/UserInfoBySns.class new file mode 100644 index 0000000000..12734153c8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/UserInfoBySns.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.class new file mode 100644 index 0000000000..c449ead960 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/ChatController.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/ChatController.class new file mode 100644 index 0000000000..0e2e0f6503 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/ChatController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/MatchController.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/MatchController.class new file mode 100644 index 0000000000..0295c3ada2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/MatchController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/VehicleTeamController.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/VehicleTeamController.class new file mode 100644 index 0000000000..1704c9dd92 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/model/control/VehicleTeamController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/net/HttpApi.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/net/HttpApi.class new file mode 100644 index 0000000000..74c5aa1973 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/net/HttpApi.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/net/TaskCoroutinesKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/net/TaskCoroutinesKt.class new file mode 100644 index 0000000000..b1b3f22ea6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/net/TaskCoroutinesKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/provider/ServiceApi$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/provider/ServiceApi$Companion.class new file mode 100644 index 0000000000..1ee2820fd8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/provider/ServiceApi$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/provider/ServiceApi.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/provider/ServiceApi.class new file mode 100644 index 0000000000..809c1b33a4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/provider/ServiceApi.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/ChatServiceHandler.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/ChatServiceHandler.class new file mode 100644 index 0000000000..0d598f66b2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/ChatServiceHandler.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/IMService$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/IMService$Companion.class new file mode 100644 index 0000000000..8e375e1e43 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/IMService$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/IMService.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/IMService.class new file mode 100644 index 0000000000..cbbe5a5fe5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/IMService.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/InvokeDataProxy$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/InvokeDataProxy$Companion.class new file mode 100644 index 0000000000..574eeb4d15 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/InvokeDataProxy$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/InvokeDataProxy.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/InvokeDataProxy.class new file mode 100644 index 0000000000..05fb674442 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/service/InvokeDataProxy.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/AnalyticsUtilKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/AnalyticsUtilKt.class new file mode 100644 index 0000000000..249eb45983 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/AnalyticsUtilKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/CallTimer$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/CallTimer$Companion.class new file mode 100644 index 0000000000..0e867a1a5e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/CallTimer$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/CallTimer.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/CallTimer.class new file mode 100644 index 0000000000..d03cb04080 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/CallTimer.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/DoubleCheckUtilKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/DoubleCheckUtilKt.class new file mode 100644 index 0000000000..38fe77cc15 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/DoubleCheckUtilKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/LogUtil.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/LogUtil.class new file mode 100644 index 0000000000..b59cca06b3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/LogUtil.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/MediaController.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/MediaController.class new file mode 100644 index 0000000000..4ad5be2338 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/MediaController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/UserInfoHelper.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/UserInfoHelper.class new file mode 100644 index 0000000000..fca2193688 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/UserInfoHelper.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/AudioFocusImpl$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/AudioFocusImpl$Companion.class new file mode 100644 index 0000000000..330e0cfcaf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/AudioFocusImpl$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/AudioFocusImpl.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/AudioFocusImpl.class new file mode 100644 index 0000000000..4787d686ed Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/AudioFocusImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion.class new file mode 100644 index 0000000000..1c14e46ecf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.class new file mode 100644 index 0000000000..011736d25b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/IAudioFocus$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/IAudioFocus$DefaultImpls.class new file mode 100644 index 0000000000..3b1971ed89 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/IAudioFocus$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/IAudioFocus.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/IAudioFocus.class new file mode 100644 index 0000000000..f98cc56aa3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/IAudioFocus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion.class new file mode 100644 index 0000000000..20d1f9851f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener.class new file mode 100644 index 0000000000..c0dd7ada2d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.class new file mode 100644 index 0000000000..c01b8c653f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/sp/BaseSPKt.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/sp/BaseSPKt.class new file mode 100644 index 0000000000..f2026fdf10 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/sp/BaseSPKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.class new file mode 100644 index 0000000000..edfd8f249e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IMVoiceClient.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IMVoiceClient.class new file mode 100644 index 0000000000..af5b3d29e9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IMVoiceClient.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IVoiceIntentListener$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IVoiceIntentListener$DefaultImpls.class new file mode 100644 index 0000000000..33795a5f75 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IVoiceIntentListener$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IVoiceIntentListener.class b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IVoiceIntentListener.class new file mode 100644 index 0000000000..771a250355 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/incrementalData/debug/com/mogo/chat/voice/IVoiceIntentListener.class differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/BaseAspectj.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/BaseAspectj.java new file mode 100644 index 0000000000..517eefe785 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/BaseAspectj.java @@ -0,0 +1,35 @@ +package com.mogo.chat.aspect; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\t\n\u0002\b\u0002\b\u0016\u0018\u0000 \u000f2\u00020\u0001:\u0001\u000fB\u0005\u00a2\u0006\u0002\u0010\u0002J\u0014\u0010\u0003\u001a\u00020\u00042\n\u0010\u0005\u001a\u0006\u0012\u0002\b\u00030\u0006H\u0002J\u000e\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\nJ \u0010\u000b\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\n2\b\u0010\f\u001a\u0004\u0018\u00010\u00012\u0006\u0010\r\u001a\u00020\u000e\u00a8\u0006\u0010"}, d2 = {"Lcom/mogo/chat/aspect/BaseAspectj;", "", "()V", "asTag", "", "cls", "Ljava/lang/Class;", "enterMethod", "", "joinPoint", "Lorg/aspectj/lang/ProceedingJoinPoint;", "exitMethod", "result", "lengthMill", "", "Companion", "mogo-module-chat_debug"}) +public class BaseAspectj { + private static volatile boolean enable; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.aspect.BaseAspectj.Companion Companion = null; + + public final void enterMethod(@org.jetbrains.annotations.NotNull() + org.aspectj.lang.ProceedingJoinPoint joinPoint) { + } + + public final void exitMethod(@org.jetbrains.annotations.NotNull() + org.aspectj.lang.ProceedingJoinPoint joinPoint, @org.jetbrains.annotations.Nullable() + java.lang.Object result, long lengthMill) { + } + + private final java.lang.String asTag(java.lang.Class cls) { + return null; + } + + public BaseAspectj() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/chat/aspect/BaseAspectj$Companion;", "", "()V", "enable", "", "mogo-module-chat_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/BaseAspectj.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/BaseAspectj.kapt_metadata new file mode 100644 index 0000000000..82ffef4404 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/BaseAspectj.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/LogAspectj.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/LogAspectj.java new file mode 100644 index 0000000000..1352670740 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/LogAspectj.java @@ -0,0 +1,37 @@ +package com.mogo.chat.aspect; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0007J\b\u0010\u0005\u001a\u00020\u0004H\u0007J\u0010\u0010\u0006\u001a\u00020\u00042\u0006\u0010\u0007\u001a\u00020\bH\u0007J\b\u0010\t\u001a\u00020\u0004H\u0007J\b\u0010\n\u001a\u00020\u0004H\u0007J\b\u0010\u000b\u001a\u00020\u0004H\u0007\u00a8\u0006\f"}, d2 = {"Lcom/mogo/chat/aspect/LogAspectj;", "Lcom/mogo/chat/aspect/BaseAspectj;", "()V", "constructor", "", "constructorInsideAnnotatedType", "logExecute", "joinPoint", "Lorg/aspectj/lang/ProceedingJoinPoint;", "method", "methodInsideAnnotatedType", "withinAnnotatedClass", "mogo-module-chat_debug"}) +@org.aspectj.lang.annotation.Aspect() +public final class LogAspectj extends com.mogo.chat.aspect.BaseAspectj { + + @org.aspectj.lang.annotation.Pointcut(value = "within(@com.mogo.chat.aspect.DebugLog *)") + public final void withinAnnotatedClass() { + } + + @org.aspectj.lang.annotation.Pointcut(value = "execution(!synthetic * *(..))&& withinAnnotatedClass()") + public final void methodInsideAnnotatedType() { + } + + @org.aspectj.lang.annotation.Pointcut(value = "execution(!synthetic *.new(..))&& withinAnnotatedClass()") + public final void constructorInsideAnnotatedType() { + } + + @org.aspectj.lang.annotation.Pointcut(value = "execution(@com.mogo.chat.aspect.DebugLog * *(..))|| methodInsideAnnotatedType()") + public final void method() { + } + + @org.aspectj.lang.annotation.Pointcut(value = "execution(@com.mogo.chat.aspect.DebugLog *.new(..))|| constructorInsideAnnotatedType()") + public final void constructor() { + } + + @org.aspectj.lang.annotation.Around(value = "method() || constructor()") + public final void logExecute(@org.jetbrains.annotations.NotNull() + org.aspectj.lang.ProceedingJoinPoint joinPoint) { + } + + public LogAspectj() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/LogAspectj.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/LogAspectj.kapt_metadata new file mode 100644 index 0000000000..025ae67e46 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/aspect/LogAspectj.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseController.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseController.java new file mode 100644 index 0000000000..f6a664b2ff --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseController.java @@ -0,0 +1,29 @@ +package com.mogo.chat.base; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00008\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\b\u0016\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J4\u0010\u0007\u001a\u00020\b2\u0010\b\u0002\u0010\t\u001a\n\u0012\u0004\u0012\u00020\b\u0018\u00010\n2\u001a\b\u0002\u0010\u000b\u001a\u0014\u0012\b\u0012\u00060\rj\u0002`\u000e\u0012\u0004\u0012\u00020\b\u0018\u00010\fJ\u0010\u0010\u000f\u001a\u00020\b2\u0006\u0010\u0010\u001a\u00020\u0011H\u0002J6\u0010\u0012\u001a\u00020\b2\u0010\b\u0002\u0010\t\u001a\n\u0012\u0004\u0012\u00020\b\u0018\u00010\n2\u001a\b\u0002\u0010\u000b\u001a\u0014\u0012\b\u0012\u00060\rj\u0002`\u000e\u0012\u0004\u0012\u00020\b\u0018\u00010\fH\u0002R\u0011\u0010\u0003\u001a\u00020\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/chat/base/BaseController;", "", "()V", "chatServiceModel", "Lcom/mogo/chat/model/ChatServiceModel;", "getChatServiceModel", "()Lcom/mogo/chat/model/ChatServiceModel;", "getUserInfo", "", "onSuccess", "Lkotlin/Function0;", "onError", "Lkotlin/Function1;", "Ljava/lang/Exception;", "Lkotlin/Exception;", "handleUserData", "allUnit", "Lcom/mogo/chat/model/bean/AllUnit;", "requestUserInfo", "mogo-module-chat_debug"}) +public class BaseController { + @org.jetbrains.annotations.NotNull() + private final com.mogo.chat.model.ChatServiceModel chatServiceModel = null; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.ChatServiceModel getChatServiceModel() { + return null; + } + + public final void getUserInfo(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError) { + } + + private final void requestUserInfo(kotlin.jvm.functions.Function0 onSuccess, kotlin.jvm.functions.Function1 onError) { + } + + private final void handleUserData(com.mogo.chat.model.bean.AllUnit allUnit) { + } + + public BaseController() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseController.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseController.kapt_metadata new file mode 100644 index 0000000000..6a74a28057 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseController.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseRepository.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseRepository.java new file mode 100644 index 0000000000..e728589ff6 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseRepository.java @@ -0,0 +1,93 @@ +package com.mogo.chat.base; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000d\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u0016\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002JE\u0010\u0003\u001a\b\u0012\u0004\u0012\u0002H\u00050\u0004\"\b\b\u0000\u0010\u0005*\u00020\u00012\"\u0010\u0006\u001a\u001e\b\u0001\u0012\u0010\u0012\u000e\u0012\n\u0012\b\u0012\u0004\u0012\u0002H\u00050\u00040\b\u0012\u0006\u0012\u0004\u0018\u00010\u00010\u0007H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\tJ\u0017\u0010\n\u001a\b\u0012\u0004\u0012\u00020\u00010\u0004H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000bJ\u001f\u0010\f\u001a\b\u0012\u0004\u0012\u00020\u00010\u00042\u0006\u0010\r\u001a\u00020\u000eH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000fJ\u0012\u0010\u0010\u001a\u00020\u00112\b\b\u0002\u0010\u0012\u001a\u00020\u000eH\u0004J\u001f\u0010\u0013\u001a\b\u0012\u0004\u0012\u00020\u00010\u00042\u0006\u0010\u0014\u001a\u00020\u0015H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0016JA\u0010\u0017\u001a\b\u0012\u0004\u0012\u00020\u00010\u00042\u0006\u0010\u0018\u001a\u00020\u00192\b\b\u0002\u0010\u001a\u001a\u00020\u000e2\u0006\u0010\u001b\u001a\u00020\u00192\u0006\u0010\u001c\u001a\u00020\u00192\u0006\u0010\u001d\u001a\u00020\u0019H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u001eJ\u001f\u0010\u001f\u001a\b\u0012\u0004\u0012\u00020 0\u00042\u0006\u0010\r\u001a\u00020\u000eH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000fJ\u001f\u0010!\u001a\b\u0012\u0004\u0012\u00020\"0\u00042\u0006\u0010#\u001a\u00020$H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010%J\'\u0010&\u001a\b\u0012\u0004\u0012\u00020\'0\u00042\u0006\u0010\u001a\u001a\u00020\u000e2\u0006\u0010\u001d\u001a\u00020\u0019H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010(J\u001f\u0010)\u001a\b\u0012\u0004\u0012\u00020\u00010\u00042\u0006\u0010\u0014\u001a\u00020*H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010+J\u001f\u0010,\u001a\b\u0012\u0004\u0012\u00020\u00010\u00042\u0006\u0010\u001c\u001a\u00020\u0019H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010-\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006."}, d2 = {"Lcom/mogo/chat/base/BaseRepository;", "", "()V", "apiCall", "Lcom/mogo/eagle/core/data/BaseResponse;", "T", "call", "Lkotlin/Function1;", "Lkotlin/coroutines/Continuation;", "(Lkotlin/jvm/functions/Function1;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "cancelMatch", "(Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "dealFocus", "sn", "", "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getNetWorkApi", "Lcom/mogo/chat/net/HttpApi;", "baseUrl", "inviteJoinVehicleTeam", "param", "Lcom/mogo/chat/model/bean/CallRequestParam;", "(Lcom/mogo/chat/model/bean/CallRequestParam;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "requestConnectStatus", "requestType", "", "snReceiver", "roomID", "status", "callType", "(ILjava/lang/String;IIILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "requestFocusStatus", "Lcom/mogo/chat/model/bean/FocusStatus;", "requestLiveCars", "Lcom/mogo/chat/model/bean/AllUnit;", "locCarsWithRadius", "Lcom/mogo/chat/model/bean/LocationCarsWithRadius;", "(Lcom/mogo/chat/model/bean/LocationCarsWithRadius;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "requestRoomInfo", "Lcom/mogo/chat/model/bean/RoomInfo;", "(Ljava/lang/String;ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "startMatch", "Lcom/mogo/chat/model/bean/MatchRequestParam;", "(Lcom/mogo/chat/model/bean/MatchRequestParam;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "switchCarStatus", "(ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "mogo-module-chat_debug"}) +public class BaseRepository { + + @org.jetbrains.annotations.NotNull() + protected final com.mogo.chat.net.HttpApi getNetWorkApi(@org.jetbrains.annotations.NotNull() + java.lang.String baseUrl) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object requestLiveCars(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.LocationCarsWithRadius locCarsWithRadius, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object requestConnectStatus(int requestType, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, int roomID, int status, int callType, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p5) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object startMatch(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.MatchRequestParam param, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object cancelMatch(@org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p0) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object inviteJoinVehicleTeam(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.CallRequestParam param, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object requestRoomInfo(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, int callType, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p2) { + return null; + } + + /** + * 添加关注(后面可能增加取消关注,到时候再增加参数吧) + */ + @org.jetbrains.annotations.Nullable() + public final java.lang.Object dealFocus(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + /** + * 获取关注状态 + * + * 1 表示已关注,0 表示未关注 + */ + @org.jetbrains.annotations.Nullable() + public final java.lang.Object requestFocusStatus(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object switchCarStatus(int status, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object apiCall(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1>, ? extends java.lang.Object> call, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + public BaseRepository() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseRepository.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseRepository.kapt_metadata new file mode 100644 index 0000000000..9c09bc98c8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/base/BaseRepository.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallController.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallController.java new file mode 100644 index 0000000000..cda8d1eaff --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallController.java @@ -0,0 +1,32 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/chat/callcenter/CallController;", "", "()V", "Companion", "mogo-module-chat_debug"}) +public final class CallController { + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy callController$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.callcenter.CallController.Companion Companion = null; + + private CallController() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0006\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\b\u0010\t\u001a\u00020\u0004H\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\n"}, d2 = {"Lcom/mogo/chat/callcenter/CallController$Companion;", "", "()V", "callController", "Lcom/mogo/chat/callcenter/ICallControl;", "getCallController", "()Lcom/mogo/chat/callcenter/ICallControl;", "callController$delegate", "Lkotlin/Lazy;", "getCallControllerProxy", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.callcenter.ICallControl getCallController() { + return null; + } + + private final com.mogo.chat.callcenter.ICallControl getCallControllerProxy() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallController.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallController.kapt_metadata new file mode 100644 index 0000000000..020f860922 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallController.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallControllerHandler.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallControllerHandler.java new file mode 100644 index 0000000000..b4e8b5a96a --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallControllerHandler.java @@ -0,0 +1,32 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0011\n\u0002\b\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0016\u00a2\u0006\u0002\u0010\u0002B\u000f\b\u0016\u0012\u0006\u0010\u0003\u001a\u00020\u0004\u00a2\u0006\u0002\u0010\u0005J4\u0010\n\u001a\u0004\u0018\u00010\t2\b\u0010\u000b\u001a\u0004\u0018\u00010\t2\u0006\u0010\f\u001a\u00020\r2\u0010\u0010\u000e\u001a\f\u0012\u0006\b\u0001\u0012\u00020\t\u0018\u00010\u000fH\u0096\u0002\u00a2\u0006\u0002\u0010\u0010J\u0006\u0010\u0011\u001a\u00020\u0004R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u0010\u0010\b\u001a\u0004\u0018\u00010\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/chat/callcenter/CallControllerHandler;", "Ljava/lang/reflect/InvocationHandler;", "()V", "target", "Lcom/mogo/chat/callcenter/ICallControl;", "(Lcom/mogo/chat/callcenter/ICallControl;)V", "interceptor", "Lcom/mogo/chat/callcenter/CallInterceptor;", "obj", "", "invoke", "proxy", "method", "Ljava/lang/reflect/Method;", "args", "", "(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;", "newProxyInstance", "mogo-module-chat_debug"}) +public final class CallControllerHandler implements java.lang.reflect.InvocationHandler { + private java.lang.Object obj; + private final com.mogo.chat.callcenter.CallInterceptor interceptor = null; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.callcenter.ICallControl newProxyInstance() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.Object invoke(@org.jetbrains.annotations.Nullable() + java.lang.Object proxy, @org.jetbrains.annotations.NotNull() + java.lang.reflect.Method method, @org.jetbrains.annotations.Nullable() + java.lang.Object[] args) { + return null; + } + + public CallControllerHandler() { + super(); + } + + public CallControllerHandler(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallControl target) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallControllerHandler.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallControllerHandler.kapt_metadata new file mode 100644 index 0000000000..064acad9ab Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallControllerHandler.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallInterceptor.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallInterceptor.java new file mode 100644 index 0000000000..9774d046c3 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallInterceptor.java @@ -0,0 +1,31 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00008\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0011\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J%\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0012\u0010\u0007\u001a\u000e\u0012\u0004\u0012\u00020\t\u0012\u0004\u0012\u00020\u00040\bH\u0082\bJ-\u0010\n\u001a\u00020\u00042\u0006\u0010\u000b\u001a\u00020\f2\u0006\u0010\u0005\u001a\u00020\u00062\u0010\u0010\r\u001a\f\u0012\u0006\b\u0001\u0012\u00020\u0001\u0018\u00010\u000e\u00a2\u0006\u0002\u0010\u000fJ\u000e\u0010\u0010\u001a\u00020\u00112\u0006\u0010\u0005\u001a\u00020\u0006\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/chat/callcenter/CallInterceptor;", "", "()V", "getIMType", "", "method", "Ljava/lang/reflect/Method;", "convert", "Lkotlin/Function1;", "Lcom/mogo/chat/callcenter/IMType;", "handler", "proxy", "Lcom/mogo/chat/callcenter/ICallControl;", "args", "", "(Lcom/mogo/chat/callcenter/ICallControl;Ljava/lang/reflect/Method;[Ljava/lang/Object;)V", "process", "", "mogo-module-chat_debug"}) +public final class CallInterceptor { + + /** + * 对实现[ICallControl]的接口对象在调用时进行拦截 + */ + public final boolean process(@org.jetbrains.annotations.NotNull() + java.lang.reflect.Method method) { + return false; + } + + /** + * 对拦截的方法进行处理 + */ + public final void handler(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallControl proxy, @org.jetbrains.annotations.NotNull() + java.lang.reflect.Method method, @org.jetbrains.annotations.Nullable() + java.lang.Object[] args) { + } + + private final void getIMType(java.lang.reflect.Method method, kotlin.jvm.functions.Function1 convert) { + } + + public CallInterceptor() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallInterceptor.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallInterceptor.kapt_metadata new file mode 100644 index 0000000000..be2ade928f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallInterceptor.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallProxy.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallProxy.java new file mode 100644 index 0000000000..0c991f6d4b --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallProxy.java @@ -0,0 +1,121 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +/** + * 主要处理消息下发,以及消息状态改变 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010%\n\u0002\u0010\u000e\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0016\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0018\u0010\r\u001a\u00020\u000e2\u0006\u0010\u000f\u001a\u00020\u00052\u0006\u0010\u0010\u001a\u00020\u0006H\u0017J\u0010\u0010\u0011\u001a\u00020\u000e2\u0006\u0010\u0012\u001a\u00020\u0013H\u0016J\u0010\u0010\u0014\u001a\u00020\u000e2\u0006\u0010\t\u001a\u00020\nH\u0016J\b\u0010\u0015\u001a\u00020\u000eH\u0016J\u0010\u0010\u0016\u001a\u00020\u000e2\u0006\u0010\t\u001a\u00020\nH\u0016J\u0010\u0010\u0017\u001a\u00020\u000e2\u0006\u0010\t\u001a\u00020\nH\u0016J\b\u0010\u0018\u001a\u00020\u000eH\u0016J$\u0010\u0019\u001a\u00020\u000e2\u0006\u0010\u0010\u001a\u00020\f2\b\u0010\t\u001a\u0004\u0018\u00010\n2\b\b\u0001\u0010\u001a\u001a\u00020\u0005H\u0003J\u001c\u0010\u001b\u001a\u00020\u000e2\b\u0010\t\u001a\u0004\u0018\u00010\n2\b\b\u0001\u0010\u001a\u001a\u00020\u0005H\u0002J\b\u0010\u001c\u001a\u00020\u000eH\u0002J\u0014\u0010\u001d\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00060\u0004H\u0016J\b\u0010\u001e\u001a\u00020\u000eH\u0016J\b\u0010\u001f\u001a\u00020\u000eH\u0016J\b\u0010 \u001a\u00020\u000eH\u0016J\b\u0010!\u001a\u00020\u000eH\u0016J\u0010\u0010\"\u001a\u00020\u000e2\u0006\u0010\t\u001a\u00020\nH\u0016J\b\u0010#\u001a\u00020\u000eH\u0016J\u0010\u0010$\u001a\u00020\u000e2\u0006\u0010\t\u001a\u00020\nH\u0016J\u0010\u0010%\u001a\u00020\u000e2\u0006\u0010\t\u001a\u00020\nH\u0016J\u0010\u0010&\u001a\u00020\u000e2\u0006\u0010\t\u001a\u00020\nH\u0016J\u0010\u0010\'\u001a\u00020\u000e2\u0006\u0010\u000f\u001a\u00020\u0005H\u0016J\u0012\u0010(\u001a\u00020\u000e2\b\u0010\t\u001a\u0004\u0018\u00010\nH\u0016R\u001a\u0010\u0003\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00060\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\t\u001a\u0004\u0018\u00010\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u000b\u001a\u00020\fX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006)"}, d2 = {"Lcom/mogo/chat/callcenter/CallProxy;", "Lcom/mogo/chat/callcenter/ICallControl;", "()V", "callBacks", "", "", "Lcom/mogo/chat/callcenter/ICallMessage;", "isInitiativeMatch", "", "message", "Lcom/mogo/chat/model/bean/Message;", "messageCallBack", "Lcom/mogo/chat/callcenter/MessageCallBack;", "addCallBack", "", "clzName", "callBack", "addFriend", "addFriendMsg", "Lcom/mogo/chat/model/bean/AddFriendMessage;", "callingMatch", "callingReceiver", "callingReceiverRefuse", "callingSender", "callingSenderWithoutMessage", "dispatch", "dispatchMethod", "dispatchMsg", "dispatchNotice", "getMsgCallBack", "initCall", "matchFailed", "matching", "newFocusAdd", "readyToCallReceiver", "readyToCallSender", "readyToMatchReceiver", "refreshMessage", "refuseCall", "removeCallBack", "updateExitRoomStatus", "mogo-module-chat_debug"}) +public final class CallProxy implements com.mogo.chat.callcenter.ICallControl { + private boolean isInitiativeMatch = false; + private java.util.Map callBacks; + private com.mogo.chat.callcenter.MessageCallBack messageCallBack; + private com.mogo.chat.model.bean.Message message; + + @java.lang.Override() + @com.mogo.chat.aspect.DebugLog() + public void addCallBack(@org.jetbrains.annotations.NotNull() + java.lang.String clzName, @org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage callBack) { + } + + @java.lang.Override() + public void removeCallBack(@org.jetbrains.annotations.NotNull() + java.lang.String clzName) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.util.Map getMsgCallBack() { + return null; + } + + @java.lang.Override() + public void refreshMessage(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void newFocusAdd() { + } + + private final void dispatchNotice() { + } + + @java.lang.Override() + public void initCall() { + } + + @java.lang.Override() + public void readyToCallSender() { + } + + @java.lang.Override() + public void refuseCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void readyToCallReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void callingSender(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void callingSenderWithoutMessage() { + } + + @java.lang.Override() + public void callingReceiver() { + } + + private final void dispatchMsg(com.mogo.chat.model.bean.Message message, @DispatchMsg() + java.lang.String dispatchMethod) { + } + + @com.mogo.chat.aspect.DebugLog() + private final void dispatch(com.mogo.chat.callcenter.MessageCallBack callBack, com.mogo.chat.model.bean.Message message, @DispatchMsg() + java.lang.String dispatchMethod) { + } + + @java.lang.Override() + public void matching() { + } + + @java.lang.Override() + public void callingMatch(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void readyToMatchReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void matchFailed() { + } + + @java.lang.Override() + public void updateExitRoomStatus(@org.jetbrains.annotations.Nullable() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void callingReceiverRefuse(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void addFriend(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.AddFriendMessage addFriendMsg) { + } + + public CallProxy() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallProxy.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallProxy.kapt_metadata new file mode 100644 index 0000000000..b6fd3f1d79 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallProxy.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallStatus.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallStatus.java new file mode 100644 index 0000000000..0648ddb8a3 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallStatus.java @@ -0,0 +1,12 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u001b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\b\u0087\u0002\u0018\u00002\u00020\u0001B\b\u0012\u0006\u0010\u0002\u001a\u00020\u0003R\u000f\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0006\u001a\u0004\b\u0002\u0010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/chat/callcenter/CallStatus;", "", "status", "Lcom/mogo/chat/callcenter/IMType;", "()Lcom/mogo/chat/callcenter/IMType;", "mogo-module-chat_debug"}) +@java.lang.annotation.Target(value = {java.lang.annotation.ElementType.TYPE, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.CONSTRUCTOR}) +@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) +@kotlin.annotation.Target(allowedTargets = {kotlin.annotation.AnnotationTarget.CLASS, kotlin.annotation.AnnotationTarget.FUNCTION, kotlin.annotation.AnnotationTarget.PROPERTY_GETTER, kotlin.annotation.AnnotationTarget.PROPERTY_SETTER, kotlin.annotation.AnnotationTarget.CONSTRUCTOR}) +public abstract @interface CallStatus { + + public abstract com.mogo.chat.callcenter.IMType status(); +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallStatus.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallStatus.kapt_metadata new file mode 100644 index 0000000000..0169a8ba9b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallStatus.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallTypeManager.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallTypeManager.java new file mode 100644 index 0000000000..f8dd0db296 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallTypeManager.java @@ -0,0 +1,56 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +/** + * 管理IMType,或者叫callType,即管理各种状态值 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0006\u0018\u0000 \u00182\u00020\u0001:\u0001\u0018B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\u0014\u001a\u00020\u00132\u0006\u0010\u0015\u001a\u00020\fJ\u000e\u0010\u0016\u001a\u00020\u00132\u0006\u0010\u0015\u001a\u00020\fJ)\u0010\u0017\u001a\u00020\u00132!\u0010\u0015\u001a\u001d\u0012\u0013\u0012\u00110\u0004\u00a2\u0006\f\b\u0010\u0012\b\b\u0011\u0012\u0004\b\b(\u0012\u0012\u0004\u0012\u00020\u00130\u000fR$\u0010\u0005\u001a\u00020\u00042\u0006\u0010\u0003\u001a\u00020\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0006\u0010\u0007\"\u0004\b\b\u0010\tR\u001e\u0010\n\u001a\u0012\u0012\u0004\u0012\u00020\f0\u000bj\b\u0012\u0004\u0012\u00020\f`\rX\u0082\u0004\u00a2\u0006\u0002\n\u0000R+\u0010\u000e\u001a\u001f\u0012\u0013\u0012\u00110\u0004\u00a2\u0006\f\b\u0010\u0012\b\b\u0011\u0012\u0004\b\b(\u0012\u0012\u0004\u0012\u00020\u0013\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0019"}, d2 = {"Lcom/mogo/chat/callcenter/CallTypeManager;", "", "()V", "value", "Lcom/mogo/chat/callcenter/IMType;", "callStatus", "getCallStatus", "()Lcom/mogo/chat/callcenter/IMType;", "setCallStatus", "(Lcom/mogo/chat/callcenter/IMType;)V", "typeChangeListenerList", "Ljava/util/ArrayList;", "Lcom/mogo/chat/callcenter/ICallTypeChangedListener;", "Lkotlin/collections/ArrayList;", "typeChangedListener", "Lkotlin/Function1;", "Lkotlin/ParameterName;", "name", "type", "", "addCallTypeChangedListener", "listener", "removeCallTypeChangedListener", "setCallTypeChangedListener", "Companion", "mogo-module-chat_debug"}) +public final class CallTypeManager { + private final java.util.ArrayList typeChangeListenerList = null; + @org.jetbrains.annotations.NotNull() + private com.mogo.chat.callcenter.IMType callStatus = com.mogo.chat.callcenter.IMType.INIT_CALL; + private kotlin.jvm.functions.Function1 typeChangedListener; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy callTypeManager$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.callcenter.CallTypeManager.Companion Companion = null; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.callcenter.IMType getCallStatus() { + return null; + } + + public final void setCallStatus(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType value) { + } + + public final void setCallTypeChangedListener(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 listener) { + } + + public final void addCallTypeChangedListener(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallTypeChangedListener listener) { + } + + public final void removeCallTypeChangedListener(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallTypeChangedListener listener) { + } + + private CallTypeManager() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/chat/callcenter/CallTypeManager$Companion;", "", "()V", "callTypeManager", "Lcom/mogo/chat/callcenter/CallTypeManager;", "getCallTypeManager", "()Lcom/mogo/chat/callcenter/CallTypeManager;", "callTypeManager$delegate", "Lkotlin/Lazy;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.callcenter.CallTypeManager getCallTypeManager() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallTypeManager.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallTypeManager.kapt_metadata new file mode 100644 index 0000000000..7a1cfe28c0 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/CallTypeManager.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ConvertFactory.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ConvertFactory.java new file mode 100644 index 0000000000..cc5d713172 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ConvertFactory.java @@ -0,0 +1,56 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +/** + * 解析WebSocket返回的数据 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000@\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010$\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u0000 \u00142\u00020\u0001:\u0001\u0014B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006J\u0012\u0010\u0007\u001a\u00020\b2\n\u0010\t\u001a\u00060\nj\u0002`\u000bJ\u000e\u0010\f\u001a\u00020\b2\u0006\u0010\r\u001a\u00020\u000eJ\u001c\u0010\u000f\u001a\u00020\b2\u0012\u0010\u0010\u001a\u000e\u0012\u0004\u0012\u00020\u000e\u0012\u0004\u0012\u00020\u00010\u0011H\u0003J\u000e\u0010\u0012\u001a\u00020\b2\u0006\u0010\r\u001a\u00020\u0013\u00a8\u0006\u0015"}, d2 = {"Lcom/mogo/chat/callcenter/ConvertFactory;", "", "()V", "parseAnnotationToIMType", "Lcom/mogo/chat/callcenter/IMType;", "method", "Ljava/lang/reflect/Method;", "parseLongConnMsgOnError", "", "ex", "Ljava/lang/Exception;", "Lkotlin/Exception;", "parseLongConnMsgToCallProxy", "message", "", "parseMapToCallProxy", "map", "", "parseMessageToCallProxy", "Lcom/mogo/chat/model/bean/Message;", "Companion", "mogo-module-chat_debug"}) +public final class ConvertFactory { + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy factory$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.callcenter.ConvertFactory.Companion Companion = null; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.callcenter.IMType parseAnnotationToIMType(@org.jetbrains.annotations.NotNull() + java.lang.reflect.Method method) { + return null; + } + + public final void parseLongConnMsgOnError(@org.jetbrains.annotations.NotNull() + java.lang.Exception ex) { + } + + public final void parseLongConnMsgToCallProxy(@org.jetbrains.annotations.NotNull() + java.lang.String message) { + } + + @java.lang.Deprecated() + private final void parseMapToCallProxy(java.util.Map map) { + } + + /** + * 解析服务端发来的Message消息,并对具体类型做消息下发 + */ + public final void parseMessageToCallProxy(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + private ConvertFactory() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/chat/callcenter/ConvertFactory$Companion;", "", "()V", "factory", "Lcom/mogo/chat/callcenter/ConvertFactory;", "getFactory", "()Lcom/mogo/chat/callcenter/ConvertFactory;", "factory$delegate", "Lkotlin/Lazy;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.callcenter.ConvertFactory getFactory() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ConvertFactory.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ConvertFactory.kapt_metadata new file mode 100644 index 0000000000..4975b2e542 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ConvertFactory.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsg.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsg.java new file mode 100644 index 0000000000..3ffa6a5fe6 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsg.java @@ -0,0 +1,9 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@androidx.annotation.StringDef(value = {"initCall", "callingReceiver", "callingSender", "callingSenderWithoutMessage", "callingMatch", "readyToMatchReceiver", "readyToCallReceiver", "refuseCall", "exitRoom", "callingReceiverRefuse"}) +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\n\n\u0002\u0018\u0002\n\u0002\u0010\u001b\n\u0000\b\u0087\u0002\u0018\u00002\u00020\u0001B\u0000\u00a8\u0006\u0002"}, d2 = {"Lcom/mogo/chat/callcenter/DispatchMsg;", "", "mogo-module-chat_debug"}) +@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.SOURCE) +public abstract @interface DispatchMsg { +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsg.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsg.kapt_metadata new file mode 100644 index 0000000000..d7768184cb Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsg.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsgKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsgKt.java new file mode 100644 index 0000000000..5afac6697e --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsgKt.java @@ -0,0 +1,27 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\n\n\u0000\n\u0002\u0010\u000e\n\u0002\b\n\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0002\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0003\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0004\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0005\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0006\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0007\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\b\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\t\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\n\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000b"}, d2 = {"MSG_CALL_MATCH", "", "MSG_CALL_READY_TO_MATCH_RECEIVER", "MSG_CALL_RECEIVER", "MSG_CALL_RECEIVER_REFUSE", "MSG_CALL_SENDER", "MSG_CALL_SENDER_WITHOUT_MSG", "MSG_EXIT_ROOM", "MSG_INIT_CALL", "MSG_READY_TO_CALL_RECEIVER", "MSG_REFUSE_CALL", "mogo-module-chat_debug"}) +public final class DispatchMsgKt { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_INIT_CALL = "initCall"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_CALL_RECEIVER = "callingReceiver"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_CALL_SENDER = "callingSender"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_CALL_SENDER_WITHOUT_MSG = "callingSenderWithoutMessage"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_CALL_MATCH = "callingMatch"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_CALL_READY_TO_MATCH_RECEIVER = "readyToMatchReceiver"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_READY_TO_CALL_RECEIVER = "readyToCallReceiver"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_REFUSE_CALL = "refuseCall"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_EXIT_ROOM = "exitRoom"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MSG_CALL_RECEIVER_REFUSE = "callingReceiverRefuse"; +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsgKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsgKt.kapt_metadata new file mode 100644 index 0000000000..ce761e868a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/DispatchMsgKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallControl.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallControl.java new file mode 100644 index 0000000000..950a81d1cc --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallControl.java @@ -0,0 +1,75 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010%\n\u0002\b\f\bf\u0018\u00002\u00020\u0001J\u0018\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u00052\u0006\u0010\u0006\u001a\u00020\u0007H&J\u0010\u0010\b\u001a\u00020\u00032\u0006\u0010\t\u001a\u00020\nH\'J\u0010\u0010\u000b\u001a\u00020\u00032\u0006\u0010\f\u001a\u00020\rH\'J\b\u0010\u000e\u001a\u00020\u0003H\'J\u0010\u0010\u000f\u001a\u00020\u00032\u0006\u0010\f\u001a\u00020\rH\'J\u0010\u0010\u0010\u001a\u00020\u00032\u0006\u0010\f\u001a\u00020\rH\'J\b\u0010\u0011\u001a\u00020\u0003H\'J\u0014\u0010\u0012\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00070\u0013H&J\b\u0010\u0014\u001a\u00020\u0003H\'J\b\u0010\u0015\u001a\u00020\u0003H\'J\b\u0010\u0016\u001a\u00020\u0003H\'J\b\u0010\u0017\u001a\u00020\u0003H&J\u0010\u0010\u0018\u001a\u00020\u00032\u0006\u0010\f\u001a\u00020\rH\'J\b\u0010\u0019\u001a\u00020\u0003H\'J\u0010\u0010\u001a\u001a\u00020\u00032\u0006\u0010\f\u001a\u00020\rH\'J\u0010\u0010\u001b\u001a\u00020\u00032\u0006\u0010\f\u001a\u00020\rH&J\u0010\u0010\u001c\u001a\u00020\u00032\u0006\u0010\f\u001a\u00020\rH&J\u0010\u0010\u001d\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&J\u0014\u0010\u001e\u001a\u00020\u00032\n\b\u0002\u0010\f\u001a\u0004\u0018\u00010\rH\'\u00a8\u0006\u001f"}, d2 = {"Lcom/mogo/chat/callcenter/ICallControl;", "", "addCallBack", "", "clzName", "", "callBack", "Lcom/mogo/chat/callcenter/ICallMessage;", "addFriend", "addFriendMsg", "Lcom/mogo/chat/model/bean/AddFriendMessage;", "callingMatch", "message", "Lcom/mogo/chat/model/bean/Message;", "callingReceiver", "callingReceiverRefuse", "callingSender", "callingSenderWithoutMessage", "getMsgCallBack", "", "initCall", "matchFailed", "matching", "newFocusAdd", "readyToCallReceiver", "readyToCallSender", "readyToMatchReceiver", "refreshMessage", "refuseCall", "removeCallBack", "updateExitRoomStatus", "mogo-module-chat_debug"}) +public abstract interface ICallControl { + + public abstract void addCallBack(@org.jetbrains.annotations.NotNull() + java.lang.String clzName, @org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage callBack); + + public abstract void removeCallBack(@org.jetbrains.annotations.NotNull() + java.lang.String clzName); + + @org.jetbrains.annotations.NotNull() + public abstract java.util.Map getMsgCallBack(); + + public abstract void refreshMessage(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void refuseCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void newFocusAdd(); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.INIT_CALL) + public abstract void initCall(); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.READY_TO_CALL_SENDER) + public abstract void readyToCallSender(); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.READY_TO_CALL_RECEIVER) + public abstract void readyToCallReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.CALLING_SENDER) + public abstract void callingSender(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.CALLING_SENDER) + public abstract void callingSenderWithoutMessage(); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.CALLING_RECEIVER) + public abstract void callingReceiver(); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.MATCHING) + public abstract void matching(); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.CALLING_MATCH) + public abstract void callingMatch(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.READY_TO_MATCH_RECEIVER) + public abstract void readyToMatchReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.MATCHING_FAILED) + public abstract void matchFailed(); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.INIT_CALL) + public abstract void updateExitRoomStatus(@org.jetbrains.annotations.Nullable() + com.mogo.chat.model.bean.Message message); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.CALLING_REFUSE) + public abstract void callingReceiverRefuse(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + @CallStatus(status = com.mogo.chat.callcenter.IMType.CALLING_ADD_FRIEND) + public abstract void addFriend(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.AddFriendMessage addFriendMsg); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallControl.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallControl.kapt_metadata new file mode 100644 index 0000000000..78677b5667 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallControl.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallMessage.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallMessage.java new file mode 100644 index 0000000000..1f1d32d65b --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallMessage.java @@ -0,0 +1,107 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +/** + * 对WebSocket消息进行下发处理 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0000\bf\u0018\u00002\u00020\u0001J\b\u0010\u0002\u001a\u00020\u0003H\u0016J\b\u0010\u0004\u001a\u00020\u0003H\u0016J\b\u0010\u0005\u001a\u00020\u0003H\u0016J\b\u0010\u0006\u001a\u00020\u0003H\u0016J\b\u0010\u0007\u001a\u00020\u0003H\u0016J\u0010\u0010\b\u001a\u00020\u00032\u0006\u0010\t\u001a\u00020\nH\u0016J\b\u0010\u000b\u001a\u00020\u0003H\u0016J\b\u0010\f\u001a\u00020\u0003H\u0016J\b\u0010\r\u001a\u00020\u0003H\u0016J\b\u0010\u000e\u001a\u00020\u0003H\u0016J\b\u0010\u000f\u001a\u00020\u0003H\u0016J\u0010\u0010\u0010\u001a\u00020\u00032\u0006\u0010\t\u001a\u00020\nH\u0016J\b\u0010\u0011\u001a\u00020\u0003H\u0016J\u0018\u0010\u0012\u001a\u00020\u00032\u000e\u0010\u0013\u001a\n\u0012\u0004\u0012\u00020\u0015\u0018\u00010\u0014H\u0016\u00a8\u0006\u0016"}, d2 = {"Lcom/mogo/chat/callcenter/ICallMessage;", "", "addNewFocus", "", "callSuccess", "initStatus", "matchSuccess", "receiverCallRefuse", "receiverCalling", "message", "Lcom/mogo/chat/model/bean/Message;", "receiverCallingAgree", "receiverHangUpInfo", "receiverSomeoneExitVehicleTeam", "receiverVehicleTeamInvitation", "receiverVehicleTeamInviteRefuse", "refuseMatchToShowCalling", "vehicleTeamEnterRoom", "vehicleTeamMemberChange", "teamMember", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "mogo-module-chat_debug"}) +public abstract interface ICallMessage { + + public abstract void initStatus(); + + public abstract void addNewFocus(); + + public abstract void receiverCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void receiverCallingAgree(); + + public abstract void refuseMatchToShowCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void callSuccess(); + + public abstract void vehicleTeamEnterRoom(); + + public abstract void receiverVehicleTeamInvitation(); + + public abstract void vehicleTeamMemberChange(@org.jetbrains.annotations.Nullable() + java.util.List teamMember); + + public abstract void matchSuccess(); + + public abstract void receiverCallRefuse(); + + public abstract void receiverVehicleTeamInviteRefuse(); + + public abstract void receiverSomeoneExitVehicleTeam(); + + public abstract void receiverHangUpInfo(); + + /** + * 对WebSocket消息进行下发处理 + */ + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + public static void initStatus(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void addNewFocus(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void receiverCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this, @org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + public static void receiverCallingAgree(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void refuseMatchToShowCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this, @org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + public static void callSuccess(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void vehicleTeamEnterRoom(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void receiverVehicleTeamInvitation(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void vehicleTeamMemberChange(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this, @org.jetbrains.annotations.Nullable() + java.util.List teamMember) { + } + + public static void matchSuccess(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void receiverCallRefuse(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void receiverVehicleTeamInviteRefuse(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void receiverSomeoneExitVehicleTeam(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + + public static void receiverHangUpInfo(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.ICallMessage $this) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallMessage.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallMessage.kapt_metadata new file mode 100644 index 0000000000..ffcd2e0167 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallMessage.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.java new file mode 100644 index 0000000000..c65b69eed3 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.java @@ -0,0 +1,10 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\bf\u0018\u00002\u00020\u0001J\u0010\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&\u00a8\u0006\u0006"}, d2 = {"Lcom/mogo/chat/callcenter/ICallTypeChangedListener;", "", "onCallTypeChanged", "", "callType", "Lcom/mogo/chat/callcenter/IMType;", "mogo-module-chat_debug"}) +public abstract interface ICallTypeChangedListener { + + public abstract void onCallTypeChanged(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType callType); +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.kapt_metadata new file mode 100644 index 0000000000..f11743335d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMType.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMType.java new file mode 100644 index 0000000000..7854491300 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMType.java @@ -0,0 +1,27 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0000\n\u0002\u0010\b\n\u0002\b\u0010\b\u0086\u0001\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u000f\b\u0002\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006j\u0002\b\u0007j\u0002\b\bj\u0002\b\tj\u0002\b\nj\u0002\b\u000bj\u0002\b\fj\u0002\b\rj\u0002\b\u000ej\u0002\b\u000fj\u0002\b\u0010j\u0002\b\u0011j\u0002\b\u0012\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/chat/callcenter/IMType;", "", "imType", "", "(Ljava/lang/String;II)V", "getImType", "()I", "NULL", "INIT_CALL", "READY_TO_CALL_SENDER", "READY_TO_CALL_RECEIVER", "CALLING_SENDER", "CALLING_RECEIVER", "MATCHING", "CALLING_MATCH", "READY_TO_MATCH_RECEIVER", "MATCHING_FAILED", "CALLING_ADD_FRIEND", "CALLING_REFUSE", "mogo-module-chat_debug"}) +public enum IMType { + /*public static final*/ NULL /* = new NULL(0) */, + /*public static final*/ INIT_CALL /* = new INIT_CALL(0) */, + /*public static final*/ READY_TO_CALL_SENDER /* = new READY_TO_CALL_SENDER(0) */, + /*public static final*/ READY_TO_CALL_RECEIVER /* = new READY_TO_CALL_RECEIVER(0) */, + /*public static final*/ CALLING_SENDER /* = new CALLING_SENDER(0) */, + /*public static final*/ CALLING_RECEIVER /* = new CALLING_RECEIVER(0) */, + /*public static final*/ MATCHING /* = new MATCHING(0) */, + /*public static final*/ CALLING_MATCH /* = new CALLING_MATCH(0) */, + /*public static final*/ READY_TO_MATCH_RECEIVER /* = new READY_TO_MATCH_RECEIVER(0) */, + /*public static final*/ MATCHING_FAILED /* = new MATCHING_FAILED(0) */, + /*public static final*/ CALLING_ADD_FRIEND /* = new CALLING_ADD_FRIEND(0) */, + /*public static final*/ CALLING_REFUSE /* = new CALLING_REFUSE(0) */; + private final int imType = 0; + + public final int getImType() { + return 0; + } + + IMType(int imType) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMType.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMType.kapt_metadata new file mode 100644 index 0000000000..2aaf85493b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMType.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMTypeKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMTypeKt.java new file mode 100644 index 0000000000..7256ab1b83 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMTypeKt.java @@ -0,0 +1,77 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0016\n\u0000\n\u0002\u0010\u000b\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\b\u001a\n\u0010\u0000\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u0003\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u0004\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u0005\u001a\u00020\u0006*\u00020\u0002\u001a\n\u0010\u0007\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\b\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\t\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\n\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u000b\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\f\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\r\u001a\u00020\u0001*\u00020\u0002\u00a8\u0006\u000e"}, d2 = {"canMatchTimeout", "", "Lcom/mogo/chat/callcenter/IMType;", "canMatched", "canStartCalling", "exchangeToCallType", "", "isCalling", "isInCallStatus", "isInit", "isMatchFailed", "isMatching", "isReadyCalling", "notInCall", "mogo-module-chat_debug"}) +public final class IMTypeKt { + + public static final boolean isMatching(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$isMatching) { + return false; + } + + public static final boolean isMatchFailed(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$isMatchFailed) { + return false; + } + + public static final boolean isInit(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$isInit) { + return false; + } + + public static final boolean canMatched(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$canMatched) { + return false; + } + + public static final boolean isCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$isCalling) { + return false; + } + + public static final boolean isReadyCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$isReadyCalling) { + return false; + } + + /** + * 判断是否可以开始通话 + */ + public static final boolean canStartCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$canStartCalling) { + return false; + } + + /** + * 用于判断是否可以向上通知匹配超时,如果本次匹配已经被外来直聊通话打断,则不能向上反馈匹配超时 + */ + public static final boolean canMatchTimeout(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$canMatchTimeout) { + return false; + } + + /** + * 未在通话中,在初始化或拨号中 + */ + public static final boolean notInCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$notInCall) { + return false; + } + + /** + * 将IMType转换成接口调用时传递的callType参数 + */ + public static final int exchangeToCallType(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$exchangeToCallType) { + return 0; + } + + /** + * 在通话状态,指的是在通话状态中,包括拨号中和通话中 + */ + public static final boolean isInCallStatus(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.IMType $this$isInCallStatus) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMTypeKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMTypeKt.kapt_metadata new file mode 100644 index 0000000000..daa8bd17f4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/IMTypeKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBack.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBack.java new file mode 100644 index 0000000000..a751ffdc36 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBack.java @@ -0,0 +1,56 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +/** + * Activity或者Service实现接口,实现方法注意切换为UI线程 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\bf\u0018\u00002\u00020\u0001J\b\u0010\u0002\u001a\u00020\u0003H&J\u0010\u0010\u0004\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H&J\b\u0010\u0007\u001a\u00020\u0003H&J\u0010\u0010\b\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H&J\u0010\u0010\t\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H&J\u0010\u0010\n\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H&J\b\u0010\u000b\u001a\u00020\u0003H\u0016J\u0014\u0010\f\u001a\u00020\u00032\n\u0010\r\u001a\u00060\u000ej\u0002`\u000fH\u0016J\u0010\u0010\u0010\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H&J\u0010\u0010\u0011\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u0006H&J\u0014\u0010\u0012\u001a\u00020\u00032\n\b\u0002\u0010\u0005\u001a\u0004\u0018\u00010\u0006H&\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/chat/callcenter/MessageCallBack;", "", "addNewFocus", "", "callingReceiverRefuse", "message", "Lcom/mogo/chat/model/bean/Message;", "initCall", "msgCallMatch", "msgCallingReceiver", "msgCallingSender", "msgCallingSenderWithoutMessage", "msgError", "socketException", "Ljava/lang/Exception;", "Lkotlin/Exception;", "msgReadyToCallReceiver", "msgRefuseCall", "updateExitRoomStatus", "mogo-module-chat_debug"}) +public abstract interface MessageCallBack { + + public abstract void initCall(); + + public abstract void addNewFocus(); + + public abstract void msgCallingReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void msgCallingSender(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void msgCallingSenderWithoutMessage(); + + public abstract void msgRefuseCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void msgCallMatch(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void msgReadyToCallReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void updateExitRoomStatus(@org.jetbrains.annotations.Nullable() + com.mogo.chat.model.bean.Message message); + + public abstract void callingReceiverRefuse(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message); + + public abstract void msgError(@org.jetbrains.annotations.NotNull() + java.lang.Exception socketException); + + /** + * Activity或者Service实现接口,实现方法注意切换为UI线程 + */ + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + public static void msgCallingSenderWithoutMessage(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.MessageCallBack $this) { + } + + public static void msgError(@org.jetbrains.annotations.NotNull() + com.mogo.chat.callcenter.MessageCallBack $this, @org.jetbrains.annotations.NotNull() + java.lang.Exception socketException) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBack.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBack.kapt_metadata new file mode 100644 index 0000000000..4c4a25701f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBack.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBackImpl.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBackImpl.java new file mode 100644 index 0000000000..b6d7ee3d43 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBackImpl.java @@ -0,0 +1,67 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\b\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0016J\u0010\u0010\u0005\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0016J\b\u0010\b\u001a\u00020\u0004H\u0016J\u0010\u0010\t\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0016J\u0010\u0010\n\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0016J\u0010\u0010\u000b\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0016J\u0010\u0010\f\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0016J\u0010\u0010\r\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0016J\u0012\u0010\u000e\u001a\u00020\u00042\b\u0010\u0006\u001a\u0004\u0018\u00010\u0007H\u0016\u00a8\u0006\u000f"}, d2 = {"Lcom/mogo/chat/callcenter/MessageCallBackImpl;", "Lcom/mogo/chat/callcenter/MessageCallBack;", "()V", "addNewFocus", "", "callingReceiverRefuse", "message", "Lcom/mogo/chat/model/bean/Message;", "initCall", "msgCallMatch", "msgCallingReceiver", "msgCallingSender", "msgReadyToCallReceiver", "msgRefuseCall", "updateExitRoomStatus", "mogo-module-chat_debug"}) +public final class MessageCallBackImpl implements com.mogo.chat.callcenter.MessageCallBack { + + /** + * 重置初始化状态 + */ + @java.lang.Override() + public void initCall() { + } + + @java.lang.Override() + public void addNewFocus() { + } + + /** + * 来电同意接听 + */ + @java.lang.Override() + public void msgCallingReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void msgCallingSender(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void msgRefuseCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void msgCallMatch(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void msgReadyToCallReceiver(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void updateExitRoomStatus(@org.jetbrains.annotations.Nullable() + com.mogo.chat.model.bean.Message message) { + } + + @java.lang.Override() + public void callingReceiverRefuse(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + public MessageCallBackImpl() { + super(); + } + + public void msgCallingSenderWithoutMessage() { + } + + public void msgError(@org.jetbrains.annotations.NotNull() + java.lang.Exception socketException) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBackImpl.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBackImpl.kapt_metadata new file mode 100644 index 0000000000..299b3c1326 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/MessageCallBackImpl.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/SocketClientFactory.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/SocketClientFactory.java new file mode 100644 index 0000000000..52f072726c --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/SocketClientFactory.java @@ -0,0 +1,28 @@ +package com.mogo.chat.callcenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\b\u0016\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/chat/callcenter/SocketClientFactory;", "", "()V", "Companion", "mogo-module-chat_debug"}) +public class SocketClientFactory { + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy socketClient$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.callcenter.SocketClientFactory.Companion Companion = null; + + public SocketClientFactory() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/chat/callcenter/SocketClientFactory$Companion;", "", "()V", "socketClient", "Lcom/mogo/websocket/SocketClient;", "getSocketClient", "()Lcom/mogo/websocket/SocketClient;", "socketClient$delegate", "Lkotlin/Lazy;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.websocket.SocketClient getSocketClient() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/SocketClientFactory.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/SocketClientFactory.kapt_metadata new file mode 100644 index 0000000000..b0ab53ce40 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/callcenter/SocketClientFactory.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/EnginePollHelper.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/EnginePollHelper.java new file mode 100644 index 0000000000..10ebfc662f --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/EnginePollHelper.java @@ -0,0 +1,43 @@ +package com.mogo.chat.common.gme; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u0000 \n2\u00020\u0001:\u0001\nB\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0007\u001a\u00020\bH\u0002J\b\u0010\t\u001a\u00020\bH\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/chat/common/gme/EnginePollHelper;", "", "()V", "mHandler", "Landroid/os/Handler;", "mRunnable", "Ljava/lang/Runnable;", "startTimer", "", "stopTimer", "Companion", "mogo-module-chat_debug"}) +public final class EnginePollHelper { + private final android.os.Handler mHandler = null; + private final java.lang.Runnable mRunnable = null; + private static com.mogo.chat.common.gme.EnginePollHelper s_enginePollHelper; + private static boolean s_pollEnabled = true; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.common.gme.EnginePollHelper.Companion Companion = null; + + private final void startTimer() { + } + + private final void stopTimer() { + } + + private EnginePollHelper() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0004\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0007\u001a\u00020\bJ\u0006\u0010\t\u001a\u00020\bJ\u0006\u0010\n\u001a\u00020\bJ\u0006\u0010\u000b\u001a\u00020\bR\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\f"}, d2 = {"Lcom/mogo/chat/common/gme/EnginePollHelper$Companion;", "", "()V", "s_enginePollHelper", "Lcom/mogo/chat/common/gme/EnginePollHelper;", "s_pollEnabled", "", "createEnginePollHelper", "", "destroyEnginePollHelper", "pauseEnginePollHelper", "resumeEnginePollHelper", "mogo-module-chat_debug"}) + public static final class Companion { + + public final void createEnginePollHelper() { + } + + public final void destroyEnginePollHelper() { + } + + public final void pauseEnginePollHelper() { + } + + public final void resumeEnginePollHelper() { + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/EnginePollHelper.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/EnginePollHelper.kapt_metadata new file mode 100644 index 0000000000..5fb3fbe003 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/EnginePollHelper.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEApi.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEApi.java new file mode 100644 index 0000000000..dd0e7d67f4 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEApi.java @@ -0,0 +1,135 @@ +package com.mogo.chat.common.gme; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000Z\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010#\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0012\n\u0002\b\n\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\b\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0011\n\u0002\b\u0013\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\u0005J\u0018\u0010\r\u001a\u00020\u000b2\u0006\u0010\u000e\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u0001H\u0002J\u0012\u0010\u0011\u001a\u0004\u0018\u00010\u00122\u0006\u0010\u0013\u001a\u00020\u0007H\u0002J\b\u0010\u0014\u001a\u00020\u000bH\u0002J\b\u0010\u0015\u001a\u00020\u000bH\u0002J\u0010\u0010\u0016\u001a\u00020\u000b2\u0006\u0010\u0017\u001a\u00020\tH\u0002J\u0010\u0010\u0018\u001a\u00020\u000b2\u0006\u0010\u0017\u001a\u00020\tH\u0002J\u000e\u0010\u0019\u001a\u00020\u000b2\u0006\u0010\u001a\u001a\u00020\u0007J\b\u0010\u001b\u001a\u00020\u000bH\u0002J\u0006\u0010\u001c\u001a\u00020\u001dJ\u0006\u0010\u001e\u001a\u00020\u001dJ\n\u0010\u001f\u001a\u0004\u0018\u00010 H\u0002J\u000e\u0010!\u001a\u00020\t2\u0006\u0010\u0006\u001a\u00020\u0007J\u0006\u0010\"\u001a\u00020\tJ\u0006\u0010#\u001a\u00020\tJ\u0006\u0010$\u001a\u00020\u000bJ\b\u0010%\u001a\u00020\u000bH\u0016J\u0018\u0010&\u001a\u00020\u000b2\u0006\u0010\'\u001a\u00020\u001d2\u0006\u0010(\u001a\u00020)H\u0016J#\u0010*\u001a\u00020\u000b2\u0006\u0010\'\u001a\u00020\u001d2\f\u0010+\u001a\b\u0012\u0004\u0012\u00020\u00070,H\u0002\u00a2\u0006\u0002\u0010-J\u0006\u0010.\u001a\u00020\u000bJ\u000e\u0010/\u001a\u00020\u000b2\u0006\u00100\u001a\u00020\u001dJ\u0010\u00101\u001a\u00020\u000b2\b\b\u0002\u00102\u001a\u00020\u001dJ \u00103\u001a\u00020\u000b2\u0006\u0010\u0013\u001a\u00020\u00072\u0006\u00104\u001a\u00020\u001d2\u0006\u00105\u001a\u00020\u0012H\u0002J\u0010\u00106\u001a\u00020\u000b2\u0006\u0010\u0010\u001a\u00020\u0001H\u0002J\u0016\u00106\u001a\u00020\u000b2\u0006\u0010\u000e\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u0001J\u0006\u00107\u001a\u00020\u000bJ\u001e\u00108\u001a\u00020\u000b2\u0006\u00100\u001a\u00020\u001d2\u0006\u00109\u001a\u00020\u00072\u0006\u0010:\u001a\u00020\tJ\u000e\u0010;\u001a\u00020\u000b2\u0006\u0010<\u001a\u00020\u001dJ\b\u0010\b\u001a\u00020\u000bH\u0002J\u0006\u0010=\u001a\u00020\u000bJ\u0012\u0010>\u001a\u00020\u000b2\n\b\u0002\u0010\f\u001a\u0004\u0018\u00010\u0005R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006?"}, d2 = {"Lcom/mogo/chat/common/gme/GMEApi;", "Lcom/mogo/chat/common/gme/IGMEEvent;", "()V", "igmCallBackList", "", "Lcom/mogo/chat/common/gme/IGMEEventCallBack;", "openID", "", "startSay", "", "addEnterRoomEventCall", "", "igmCallBack", "addEventCall", "type", "Lcom/tencent/TMG/ITMGContext$ITMG_MAIN_EVENT_TYPE;", "call", "auth", "", "roomID", "dealHangUpAfter", "enableAudio", "enableMic", "isEnable", "enableSpeaker", "enterRoom", "roomId", "exitRoom", "getMicState", "", "getRoomType", "getTmgContext", "Lcom/tencent/TMG/ITMGContext;", "init", "isMicMute", "isRoomEntered", "muteMic", "onEventExitRoom", "onEventUserUpdate", "eventId", "intent", "Landroid/content/Intent;", "onSubEvent", "userList", "", "(I[Ljava/lang/String;)V", "pause", "pausePlayEffect", "soundId", "reMuteMic", "micVolume", "realEnterRoom", "roomType", "authBuffer", "removeEventCall", "resume", "setPlayEffect", "filePath", "loop", "setVoiceType", "voiceType", "unInit", "updateExitRoomStatus", "mogo-module-chat_debug"}) +public final class GMEApi implements com.mogo.chat.common.gme.IGMEEvent { + private static java.lang.String openID = ""; + private static boolean startSay = false; + private static java.util.Set igmCallBackList; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.common.gme.GMEApi INSTANCE = null; + + public final boolean init(@org.jetbrains.annotations.NotNull() + java.lang.String openID) { + return false; + } + + private final com.tencent.TMG.ITMGContext getTmgContext() { + return null; + } + + public final void setVoiceType(int voiceType) { + } + + public final void setPlayEffect(int soundId, @org.jetbrains.annotations.NotNull() + java.lang.String filePath, boolean loop) { + } + + public final void pausePlayEffect(int soundId) { + } + + private final void enableAudio() { + } + + public final void enterRoom(@org.jetbrains.annotations.NotNull() + java.lang.String roomId) { + } + + private final byte[] auth(java.lang.String roomID) { + return null; + } + + private final void realEnterRoom(java.lang.String roomID, int roomType, byte[] authBuffer) { + } + + private final void enableMic(boolean isEnable) { + } + + private final void enableSpeaker(boolean isEnable) { + } + + private final void exitRoom() { + } + + public final void unInit() { + } + + public final void pause() { + } + + public final void resume() { + } + + public final void addEnterRoomEventCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEventCallBack igmCallBack) { + } + + private final void addEventCall(com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, com.mogo.chat.common.gme.IGMEEvent call) { + } + + public final void removeEventCall(@org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent call) { + } + + private final void removeEventCall(com.mogo.chat.common.gme.IGMEEvent call) { + } + + public final boolean isRoomEntered() { + return false; + } + + public final int getMicState() { + return 0; + } + + public final int getRoomType() { + return 0; + } + + public final void muteMic() { + } + + public final void reMuteMic(int micVolume) { + } + + public final boolean isMicMute() { + return false; + } + + @java.lang.Override() + public void onEventExitRoom() { + } + + @java.lang.Override() + public void onEventUserUpdate(int eventId, @org.jetbrains.annotations.NotNull() + android.content.Intent intent) { + } + + private final void onSubEvent(int eventId, java.lang.String[] userList) { + } + + private final void dealHangUpAfter() { + } + + private final void startSay() { + } + + public final void updateExitRoomStatus(@org.jetbrains.annotations.Nullable() + com.mogo.chat.common.gme.IGMEEventCallBack igmCallBack) { + } + + private GMEApi() { + super(); + } + + public void onEvent(@org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + android.content.Intent data) { + } + + public void onEventEnterRoom(int errorCode, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEApi.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEApi.kapt_metadata new file mode 100644 index 0000000000..88d9a1b7e0 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEApi.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEHelper.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEHelper.java new file mode 100644 index 0000000000..d6535db3e2 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEHelper.java @@ -0,0 +1,140 @@ +package com.mogo.chat.common.gme; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000J\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0012\n\u0002\b\u0006\n\u0002\u0010\b\n\u0002\b\b\n\u0002\u0018\u0002\n\u0002\b\u000e\u0018\u0000 /2\u00020\u0001:\u0001/B\u0007\b\u0012\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\u000b\u001a\u00020\f2\u0006\u0010\r\u001a\u00020\u000eJ\u0016\u0010\u000b\u001a\u00020\f2\u0006\u0010\u000f\u001a\u00020\u00102\u0006\u0010\r\u001a\u00020\u000eJ\u0010\u0010\u0011\u001a\u0004\u0018\u00010\u00122\u0006\u0010\u0013\u001a\u00020\u0006J\u000e\u0010\u0014\u001a\u00020\f2\u0006\u0010\u0015\u001a\u00020\u0004J\u000e\u0010\u0016\u001a\u00020\f2\u0006\u0010\u0015\u001a\u00020\u0004J\u001e\u0010\u0017\u001a\u00020\f2\u0006\u0010\u0013\u001a\u00020\u00062\u0006\u0010\u0018\u001a\u00020\u00192\u0006\u0010\u001a\u001a\u00020\u0012J\u0006\u0010\u001b\u001a\u00020\fJ\u0006\u0010\u001c\u001a\u00020\u0019J\u0006\u0010\u001d\u001a\u00020\u0019J\b\u0010\u001e\u001a\u0004\u0018\u00010\nJ\b\u0010\u001f\u001a\u0004\u0018\u00010\u0006J&\u0010 \u001a\u00020\u00042\u0006\u0010!\u001a\u00020\"2\u0006\u0010#\u001a\u00020\u00062\u0006\u0010$\u001a\u00020\u00062\u0006\u0010%\u001a\u00020\u0006J\u0006\u0010\u0003\u001a\u00020\u0004J\u0006\u0010&\u001a\u00020\u0004J\u0006\u0010\'\u001a\u00020\u0004J\u0006\u0010(\u001a\u00020\fJ\u0006\u0010)\u001a\u00020\fJ\u0010\u0010*\u001a\u00020\f2\b\b\u0002\u0010+\u001a\u00020\u0019J\u000e\u0010,\u001a\u00020\f2\u0006\u0010\r\u001a\u00020\u000eJ\u0016\u0010,\u001a\u00020\f2\u0006\u0010\u000f\u001a\u00020\u00102\u0006\u0010\r\u001a\u00020\u000eJ\u0006\u0010-\u001a\u00020\fJ\u0006\u0010.\u001a\u00020\fR\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\b\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\t\u001a\u0004\u0018\u00010\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u00060"}, d2 = {"Lcom/mogo/chat/common/gme/GMEHelper;", "", "()V", "initFinish", "", "mSdkAppID", "", "mSdkKey", "mUserID", "tmgContext", "Lcom/tencent/TMG/ITMGContext;", "addEventCall", "", "call", "Lcom/mogo/chat/common/gme/IGMEEvent;", "type", "Lcom/tencent/TMG/ITMGContext$ITMG_MAIN_EVENT_TYPE;", "auth", "", "roomID", "enableMic", "isEnable", "enableSpeaker", "enterRoom", "roomType", "", "authBuffer", "exitRoom", "getMicState", "getRoomType", "getTmgContext", "getUserId", "init", "context", "Landroid/content/Context;", "sdkAppId", "sdkKey", "openID", "isMicMute", "isRoomEntered", "muteMic", "pause", "reMuteMic", "micVolume", "removeEventCall", "resume", "unInit", "Companion", "mogo-module-chat_debug"}) +public final class GMEHelper { + private com.tencent.TMG.ITMGContext tmgContext; + private java.lang.String mSdkAppID; + private java.lang.String mSdkKey; + private java.lang.String mUserID; + private boolean initFinish = false; + private static volatile com.mogo.chat.common.gme.GMEHelper instance; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.common.gme.GMEHelper.Companion Companion = null; + + public final boolean init(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String sdkAppId, @org.jetbrains.annotations.NotNull() + java.lang.String sdkKey, @org.jetbrains.annotations.NotNull() + java.lang.String openID) { + return false; + } + + public final boolean initFinish() { + return false; + } + + @org.jetbrains.annotations.Nullable() + public final com.tencent.TMG.ITMGContext getTmgContext() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final byte[] auth(@org.jetbrains.annotations.NotNull() + java.lang.String roomID) { + return null; + } + + public final void enterRoom(@org.jetbrains.annotations.NotNull() + java.lang.String roomID, int roomType, @org.jetbrains.annotations.NotNull() + byte[] authBuffer) { + } + + /** + * 麦克风静音 + */ + public final void muteMic() { + } + + /** + * 解除麦克风静音 + */ + public final void reMuteMic(int micVolume) { + } + + /** + * 麦克风是否静音,之所以判断101是因为文档中写,如果获取音量值返回值为101则代表没有调用过设置音量接口,说明从未静音 + * @return true- 处于静音状态 false-处于非静音状态 + */ + public final boolean isMicMute() { + return false; + } + + public final boolean isRoomEntered() { + return false; + } + + public final int getMicState() { + return 0; + } + + public final int getRoomType() { + return 0; + } + + public final void enableMic(boolean isEnable) { + } + + /** + * 开启扬声器 + * 扬声器状态 + * 0:关闭 + * 1:打开 + * 2:扬声器正在操作 + */ + public final void enableSpeaker(boolean isEnable) { + } + + public final void exitRoom() { + } + + public final void unInit() { + } + + public final void pause() { + } + + public final void resume() { + } + + public final void addEventCall(@org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent call) { + } + + public final void removeEventCall(@org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent call) { + } + + public final void addEventCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent call) { + } + + public final void removeEventCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent call) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getUserId() { + return null; + } + + private GMEHelper() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0005\u001a\u00020\u0004R\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0006"}, d2 = {"Lcom/mogo/chat/common/gme/GMEHelper$Companion;", "", "()V", "instance", "Lcom/mogo/chat/common/gme/GMEHelper;", "getInstance", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.common.gme.GMEHelper getInstance() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEHelper.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEHelper.kapt_metadata new file mode 100644 index 0000000000..2e82669b4d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/GMEHelper.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEvent.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEvent.java new file mode 100644 index 0000000000..c0104fed7a --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEvent.java @@ -0,0 +1,40 @@ +package com.mogo.chat.common.gme; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000@\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0006\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J\u0018\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u00052\u0006\u0010\u0006\u001a\u00020\u0007H\u0016J\u0018\u0010\b\u001a\u00020\u00032\u0006\u0010\t\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\fH\u0016J\b\u0010\r\u001a\u00020\u0003H&J\u0018\u0010\u000e\u001a\u00020\u00032\u0006\u0010\u000f\u001a\u00020\n2\u0006\u0010\u0010\u001a\u00020\u0007H&JH\u0010\u0011\u001a\u00020\u00032\u0006\u0010\u0006\u001a\u00020\u000726\u0010\u0012\u001a2\u0012\u0013\u0012\u00110\n\u00a2\u0006\f\b\u0014\u0012\b\b\u0015\u0012\u0004\b\b(\u0016\u0012\u0013\u0012\u00110\f\u00a2\u0006\f\b\u0014\u0012\b\b\u0015\u0012\u0004\b\b(\u000b\u0012\u0004\u0012\u00020\u00030\u0013H\u0002J3\u0010\u0017\u001a\u00020\u00032\u0006\u0010\u0006\u001a\u00020\u00072!\u0010\u0012\u001a\u001d\u0012\u0013\u0012\u00110\n\u00a2\u0006\f\b\u0014\u0012\b\b\u0015\u0012\u0004\b\b(\u0019\u0012\u0004\u0012\u00020\u00030\u0018H\u0002\u00a8\u0006\u001a"}, d2 = {"Lcom/mogo/chat/common/gme/IGMEEvent;", "", "onEvent", "", "type", "Lcom/tencent/TMG/ITMGContext$ITMG_MAIN_EVENT_TYPE;", "data", "Landroid/content/Intent;", "onEventEnterRoom", "errorCode", "", "msg", "", "onEventExitRoom", "onEventUserUpdate", "eventId", "intent", "parseErrorInfo", "parse", "Lkotlin/Function2;", "Lkotlin/ParameterName;", "name", "code", "parseSubEvent", "Lkotlin/Function1;", "subEvent", "mogo-module-chat_debug"}) +public abstract interface IGMEEvent { + + public abstract void onEvent(@org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + android.content.Intent data); + + public abstract void onEventEnterRoom(int errorCode, @org.jetbrains.annotations.NotNull() + java.lang.String msg); + + public abstract void onEventExitRoom(); + + public abstract void onEventUserUpdate(int eventId, @org.jetbrains.annotations.NotNull() + android.content.Intent intent); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + public static void onEvent(@org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent $this, @org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + android.content.Intent data) { + } + + public static void onEventEnterRoom(@org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent $this, int errorCode, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } + + private static void parseErrorInfo(com.mogo.chat.common.gme.IGMEEvent $this, android.content.Intent data, kotlin.jvm.functions.Function2 parse) { + } + + private static void parseSubEvent(com.mogo.chat.common.gme.IGMEEvent $this, android.content.Intent data, kotlin.jvm.functions.Function1 parse) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEvent.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEvent.kapt_metadata new file mode 100644 index 0000000000..2e7b5ee480 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEvent.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEventCallBack.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEventCallBack.java new file mode 100644 index 0000000000..c57d8777bf --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEventCallBack.java @@ -0,0 +1,9 @@ +package com.mogo.chat.common.gme; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\bf\u0018\u00002\u00020\u0001J\b\u0010\u0002\u001a\u00020\u0003H&\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/chat/common/gme/IGMEEventCallBack;", "", "gmeHangUp", "", "mogo-module-chat_debug"}) +public abstract interface IGMEEventCallBack { + + public abstract void gmeHangUp(); +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEventCallBack.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEventCallBack.kapt_metadata new file mode 100644 index 0000000000..296ccc4596 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/IGMEEventCallBack.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.java new file mode 100644 index 0000000000..e0df995986 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.java @@ -0,0 +1,49 @@ +package com.mogo.chat.common.gme; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0005\u0018\u0000 \u00132\u00020\u0001:\u0001\u0013B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0016\u0010\u000e\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u000b2\u0006\u0010\u0011\u001a\u00020\rJ\u0016\u0010\u0012\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u000b2\u0006\u0010\u0011\u001a\u00020\rR\u001c\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\bR \u0010\t\u001a\u0014\u0012\u0004\u0012\u00020\u000b\u0012\n\u0012\b\u0012\u0004\u0012\u00020\r0\f0\nX\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0014"}, d2 = {"Lcom/mogo/chat/common/gme/TMGCallbackDispatcher;", "", "()V", "itmgDelegate", "Lcom/tencent/TMG/ITMGContext$ITMGDelegate;", "getItmgDelegate", "()Lcom/tencent/TMG/ITMGContext$ITMGDelegate;", "setItmgDelegate", "(Lcom/tencent/TMG/ITMGContext$ITMGDelegate;)V", "mapCallbacks", "Ljava/util/HashMap;", "Lcom/tencent/TMG/ITMGContext$ITMG_MAIN_EVENT_TYPE;", "Ljava/util/ArrayList;", "Lcom/mogo/chat/common/gme/IGMEEvent;", "addDelegate", "", "type", "dispatcher", "removeDelegate", "Companion", "mogo-module-chat_debug"}) +public final class TMGCallbackDispatcher { + private final java.util.HashMap> mapCallbacks = null; + @org.jetbrains.annotations.Nullable() + private com.tencent.TMG.ITMGContext.ITMGDelegate itmgDelegate; + private static com.mogo.chat.common.gme.TMGCallbackDispatcher s_dispatcher; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.common.gme.TMGCallbackDispatcher.Companion Companion = null; + + @org.jetbrains.annotations.Nullable() + public final com.tencent.TMG.ITMGContext.ITMGDelegate getItmgDelegate() { + return null; + } + + public final void setItmgDelegate(@org.jetbrains.annotations.Nullable() + com.tencent.TMG.ITMGContext.ITMGDelegate p0) { + } + + public final void addDelegate(@org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent dispatcher) { + } + + public final void removeDelegate(@org.jetbrains.annotations.NotNull() + com.tencent.TMG.ITMGContext.ITMG_MAIN_EVENT_TYPE type, @org.jetbrains.annotations.NotNull() + com.mogo.chat.common.gme.IGMEEvent dispatcher) { + } + + private TMGCallbackDispatcher() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0005\u001a\u00020\u0004R\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0006"}, d2 = {"Lcom/mogo/chat/common/gme/TMGCallbackDispatcher$Companion;", "", "()V", "s_dispatcher", "Lcom/mogo/chat/common/gme/TMGCallbackDispatcher;", "getInstance", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.common.gme.TMGCallbackDispatcher getInstance() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.kapt_metadata new file mode 100644 index 0000000000..58f108445a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/ConstKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/ConstKt.java new file mode 100644 index 0000000000..c341dfa7d6 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/ConstKt.java @@ -0,0 +1,66 @@ +package com.mogo.chat.constant; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0010\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\u0017\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0002\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0004\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0005\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0006\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0007\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\b\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\t\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\n\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u000b\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\f\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\r\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u000e\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u000f\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0010\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0011\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0012\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0013\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0014\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0015\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0016\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0017\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0018\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0019\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001a"}, d2 = {"ADD_FRIEND_MESSAGE", "", "CALL_TYPE_DEFAULT", "", "CALL_TYPE_MATCHING", "CALL_TYPE_VEHICLE_TEAM", "CALL_TYPE_VIDEO", "CALL_TYPE_VOICE", "HAS_FOCUS", "NOT_FOCUS", "NO_FOCUS_STATUS", "NO_LINE_STATUS", "OFFLINE_STATUS", "ONLINE_STATUS", "PUSH_MSG_ADD_FRIEND", "PUSH_MSG_AGREE_ENTER", "PUSH_MSG_CANCEL_MATCH", "PUSH_MSG_CREATE_ROOM", "PUSH_MSG_DENY_ENTER", "PUSH_MSG_HANG_UP", "ROOM_TYPE", "SDKID", "SDKKEY", "SOCKET_HAND_SHAKE", "SOCKET_HEART_BEAT", "TAG", "mogo-module-chat_debug"}) +public final class ConstKt { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "CALL_CHAT"; + + /** + * 服务端下发消息状态为0存在三种场景: + * 1.语音聊天创建房间成功,给拨打方发送创建房间消息。 + * 2.有匹配过的车机,表示愿意聊天,如果有人匹配不到,会给有愿意聊天的用户发来打电话邀请 + * 3.接收车队邀请消息 + */ + public static final int PUSH_MSG_CREATE_ROOM = 0; + + /** + * 服务端下发消息状态为1存在三种场景: + * 1.语音聊天对方同意,下发同意消息 + * 2.匹配成功消息 + * 3.车队邀请对方同意,下发同意消息 + */ + public static final int PUSH_MSG_AGREE_ENTER = 1; + + /** + * 服务端下发消息状态为2存在三种场景: + * 1.语音邀请被拒绝 + * 2.被动匹配接收到来电邀请,被拒绝 + * 3.车队邀请被拒绝 + */ + public static final int PUSH_MSG_DENY_ENTER = 2; + + /** + * 服务端下发消息状态为3存在两种场景: + * 1.语音和匹配接收到消息下发,挂断电话 + * 2.车队接收到消息下发,如果消息中有队员,则接收到队员退房消息,若无队员,则挂断车队电话 + */ + public static final int PUSH_MSG_HANG_UP = 3; + + /** + * 表示超时取消匹配 + */ + public static final int PUSH_MSG_CANCEL_MATCH = 4; + public static final int PUSH_MSG_ADD_FRIEND = 5; + public static final int ROOM_TYPE = 1; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String SDKID = "1400280276"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String SDKKEY = "I0USylN9YQq0CAiq"; + public static final int CALL_TYPE_DEFAULT = -1; + public static final int CALL_TYPE_VOICE = 0; + public static final int CALL_TYPE_MATCHING = 1; + public static final int CALL_TYPE_VIDEO = 2; + public static final int CALL_TYPE_VEHICLE_TEAM = 3; + public static final int SOCKET_HAND_SHAKE = 0; + public static final int SOCKET_HEART_BEAT = 1; + public static final int NOT_FOCUS = 0; + public static final int HAS_FOCUS = 1; + public static final int NO_FOCUS_STATUS = -1; + public static final int ONLINE_STATUS = 0; + public static final int OFFLINE_STATUS = 1; + public static final int NO_LINE_STATUS = -1; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String ADD_FRIEND_MESSAGE = "ADD_FRIEND_MESSAGE"; +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/ConstKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/ConstKt.kapt_metadata new file mode 100644 index 0000000000..fbd4d3a0fa Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/ConstKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/HttpConstants.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/HttpConstants.java new file mode 100644 index 0000000000..9748380731 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/HttpConstants.java @@ -0,0 +1,41 @@ +package com.mogo.chat.constant; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/chat/constant/HttpConstants;", "", "()V", "Companion", "mogo-module-chat_debug"}) +public final class HttpConstants { + private static final java.lang.String DEV_BASE_URL_OWNER = "http://dzt-show.zhidaohulian.com/"; + private static final java.lang.String DEV_CONFIG_URL = "http://dzt-test.zhidaohulian.com/"; + private static final java.lang.String RELEASE_BASE_URL_OWNER = "http://dzt.zhidaohulian.com/"; + private static final java.lang.String SOCKET_SERVER = "ws://62.234.196.121:4001/ws"; + private static final java.lang.String DEV_SOCKET_SERVER = "ws://dzt-test.zhidaohulian.com/ws"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.constant.HttpConstants.Companion Companion = null; + + public HttpConstants() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\b\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\t\u001a\u00020\u0004J\u0006\u0010\n\u001a\u00020\u0004J\u0006\u0010\u000b\u001a\u00020\u0004R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\f"}, d2 = {"Lcom/mogo/chat/constant/HttpConstants$Companion;", "", "()V", "DEV_BASE_URL_OWNER", "", "DEV_CONFIG_URL", "DEV_SOCKET_SERVER", "RELEASE_BASE_URL_OWNER", "SOCKET_SERVER", "getBaseUrl", "getConfig", "getSocketServer", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getBaseUrl() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSocketServer() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getConfig() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/HttpConstants.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/HttpConstants.kapt_metadata new file mode 100644 index 0000000000..e0f2be4199 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/constant/HttpConstants.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CallApiException.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CallApiException.java new file mode 100644 index 0000000000..d8400625f9 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CallApiException.java @@ -0,0 +1,34 @@ +package com.mogo.chat.exception; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0004\u0018\u0000 \b2\u00020\u0001:\u0001\bB\u0017\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u0006\u0010\u0007\u001a\u00020\u0005\u00a8\u0006\t"}, d2 = {"Lcom/mogo/chat/exception/CallApiException;", "Lcom/mogo/chat/exception/CommonException;", "code", "", "msg", "", "(ILjava/lang/String;)V", "getErrorMsg", "Companion", "mogo-module-chat_debug"}) +public final class CallApiException extends com.mogo.chat.exception.CommonException { + @org.jetbrains.annotations.NotNull() + private static final com.mogo.chat.exception.CallApiException ENTER_ROOM_API_EXCEPTION = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.exception.CallApiException.Companion Companion = null; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getErrorMsg() { + return null; + } + + public CallApiException(int code, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + super(0, null); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u0011\u0010\u0003\u001a\u00020\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\u0007"}, d2 = {"Lcom/mogo/chat/exception/CallApiException$Companion;", "", "()V", "ENTER_ROOM_API_EXCEPTION", "Lcom/mogo/chat/exception/CallApiException;", "getENTER_ROOM_API_EXCEPTION", "()Lcom/mogo/chat/exception/CallApiException;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.exception.CallApiException getENTER_ROOM_API_EXCEPTION() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CallApiException.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CallApiException.kapt_metadata new file mode 100644 index 0000000000..488a57118a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CallApiException.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CommonException.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CommonException.java new file mode 100644 index 0000000000..9f9798a992 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CommonException.java @@ -0,0 +1,62 @@ +package com.mogo.chat.exception; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u000b\b\u0016\u0018\u0000 \u00102\u00060\u0001j\u0002`\u0002:\u0001\u0010B\u0017\b\u0016\u0012\u0006\u0010\u0003\u001a\u00020\u0004\u0012\u0006\u0010\u0005\u001a\u00020\u0006\u00a2\u0006\u0002\u0010\u0007R\u001a\u0010\u0003\u001a\u00020\u0004X\u0084\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\b\u0010\t\"\u0004\b\n\u0010\u000bR\u001a\u0010\u0005\u001a\u00020\u0006X\u0084\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000f\u00a8\u0006\u0011"}, d2 = {"Lcom/mogo/chat/exception/CommonException;", "Ljava/lang/Exception;", "Lkotlin/Exception;", "code", "", "msg", "", "(ILjava/lang/String;)V", "getCode", "()I", "setCode", "(I)V", "getMsg", "()Ljava/lang/String;", "setMsg", "(Ljava/lang/String;)V", "Companion", "mogo-module-chat_debug"}) +public class CommonException extends java.lang.Exception { + private int code = 0; + @org.jetbrains.annotations.NotNull() + private java.lang.String msg = ""; + @org.jetbrains.annotations.NotNull() + private static final com.mogo.chat.exception.CommonException NETWORK_EXCEPTION = null; + @org.jetbrains.annotations.NotNull() + private static final com.mogo.chat.exception.CommonException NULL_EXCEPTION = null; + @org.jetbrains.annotations.NotNull() + private static final com.mogo.chat.exception.CommonException NULL_REQUEST_DATA_API_EXCEPTION = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.exception.CommonException.Companion Companion = null; + + protected final int getCode() { + return 0; + } + + protected final void setCode(int p0) { + } + + @org.jetbrains.annotations.NotNull() + protected final java.lang.String getMsg() { + return null; + } + + protected final void setMsg(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public CommonException(int code, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0007\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u0011\u0010\u0003\u001a\u00020\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006R\u0011\u0010\u0007\u001a\u00020\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\b\u0010\u0006R\u0011\u0010\t\u001a\u00020\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u0006\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/chat/exception/CommonException$Companion;", "", "()V", "NETWORK_EXCEPTION", "Lcom/mogo/chat/exception/CommonException;", "getNETWORK_EXCEPTION", "()Lcom/mogo/chat/exception/CommonException;", "NULL_EXCEPTION", "getNULL_EXCEPTION", "NULL_REQUEST_DATA_API_EXCEPTION", "getNULL_REQUEST_DATA_API_EXCEPTION", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.exception.CommonException getNETWORK_EXCEPTION() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.exception.CommonException getNULL_EXCEPTION() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.exception.CommonException getNULL_REQUEST_DATA_API_EXCEPTION() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CommonException.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CommonException.kapt_metadata new file mode 100644 index 0000000000..bd9ab5c480 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/exception/CommonException.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/ChatServiceModel.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/ChatServiceModel.java new file mode 100644 index 0000000000..cc2c21b942 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/ChatServiceModel.java @@ -0,0 +1,25 @@ +package com.mogo.chat.model; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u001f\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\bJ\u001f\u0010\t\u001a\b\u0012\u0004\u0012\u00020\n0\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\b\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/chat/model/ChatServiceModel;", "Lcom/mogo/chat/base/BaseRepository;", "()V", "isOnLine", "Lcom/mogo/eagle/core/data/BaseResponse;", "Lcom/mogo/chat/model/bean/OnLineStatus;", "sn", "", "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "queryUserInfo", "Lcom/mogo/chat/model/bean/UserInfoBySns;", "mogo-module-chat_debug"}) +public final class ChatServiceModel extends com.mogo.chat.base.BaseRepository { + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object isOnLine(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object queryUserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + public ChatServiceModel() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/ChatServiceModel.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/ChatServiceModel.kapt_metadata new file mode 100644 index 0000000000..a0187b4d2d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/ChatServiceModel.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FocusModel.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FocusModel.java new file mode 100644 index 0000000000..bab7a93f7c --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FocusModel.java @@ -0,0 +1,40 @@ +package com.mogo.chat.model; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\u0018\u0000 \u000f2\u00020\u0001:\u0001\u000fB\u0005\u00a2\u0006\u0002\u0010\u0002J\'\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\u0006\u0010\u0006\u001a\u00020\u00072\u0006\u0010\b\u001a\u00020\tH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ\u001f\u0010\u000b\u001a\b\u0012\u0004\u0012\u00020\f0\u00042\u0006\u0010\r\u001a\u00020\tH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000e\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u0010"}, d2 = {"Lcom/mogo/chat/model/FocusModel;", "Lcom/mogo/chat/base/BaseRepository;", "()V", "dealBlackList", "Lcom/mogo/eagle/core/data/BaseResponse;", "", "targetSn", "", "operate", "", "(Ljava/lang/String;ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getFocusPage", "Lcom/mogo/chat/model/bean/FocusData;", "pageIndex", "(ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "Companion", "mogo-module-chat_debug"}) +public final class FocusModel extends com.mogo.chat.base.BaseRepository { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "FocusModel"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.FocusModel.Companion Companion = null; + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getFocusPage(int pageIndex, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + /** + * targetSn:要操作的目标SN + * operate: 2:拉黑 3:取消拉黑 + */ + @org.jetbrains.annotations.Nullable() + public final java.lang.Object dealBlackList(@org.jetbrains.annotations.NotNull() + java.lang.String targetSn, int operate, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p2) { + return null; + } + + public FocusModel() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/chat/model/FocusModel$Companion;", "", "()V", "TAG", "", "mogo-module-chat_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FocusModel.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FocusModel.kapt_metadata new file mode 100644 index 0000000000..6f8e9c17b5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FocusModel.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FriendModel.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FriendModel.java new file mode 100644 index 0000000000..d970994124 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FriendModel.java @@ -0,0 +1,36 @@ +package com.mogo.chat.model; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0003\u0018\u0000 \u000e2\u00020\u0001:\u0001\u000eB\u0005\u00a2\u0006\u0002\u0010\u0002J\u001f\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u00042\u0006\u0010\u0006\u001a\u00020\u0007H\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\bJ\u001f\u0010\t\u001a\b\u0012\u0004\u0012\u00020\n0\u00042\u0006\u0010\u000b\u001a\u00020\fH\u0086@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\r\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u000f"}, d2 = {"Lcom/mogo/chat/model/FriendModel;", "Lcom/mogo/chat/base/BaseRepository;", "()V", "canCallToFocus", "Lcom/mogo/eagle/core/data/BaseResponse;", "", "snReceiver", "", "(Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getFriendPage", "Lcom/mogo/chat/model/bean/FriendData;", "pageIndex", "", "(ILkotlin/coroutines/Continuation;)Ljava/lang/Object;", "Companion", "mogo-module-chat_debug"}) +public final class FriendModel extends com.mogo.chat.base.BaseRepository { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "FriendModel"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.FriendModel.Companion Companion = null; + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object getFriendPage(int pageIndex, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Object canCallToFocus(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1) { + return null; + } + + public FriendModel() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/chat/model/FriendModel$Companion;", "", "()V", "TAG", "", "mogo-module-chat_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FriendModel.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FriendModel.kapt_metadata new file mode 100644 index 0000000000..fb788cef5d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/FriendModel.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AddFriendMessage.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AddFriendMessage.java new file mode 100644 index 0000000000..0b3dbe09e7 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AddFriendMessage.java @@ -0,0 +1,113 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +/** + * 添加好友的push消息内容 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0004\n\u0002\u0010\b\n\u0002\b\u000f\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B-\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u0012\u0006\u0010\u0007\u001a\u00020\b\u00a2\u0006\u0002\u0010\tJ\t\u0010\u0011\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0012\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0013\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0014\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0015\u001a\u00020\bH\u00c6\u0003J;\u0010\u0016\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u00032\b\b\u0002\u0010\u0007\u001a\u00020\bH\u00c6\u0001J\u0013\u0010\u0017\u001a\u00020\u00182\b\u0010\u0019\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u001a\u001a\u00020\bH\u00d6\u0001J\t\u0010\u001b\u001a\u00020\u0003H\u00d6\u0001R\u0011\u0010\u0007\u001a\u00020\b\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0011\u0010\u0005\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\f\u0010\rR\u0011\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\rR\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\rR\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\r\u00a8\u0006\u001c"}, d2 = {"Lcom/mogo/chat/model/bean/AddFriendMessage;", "", "sn", "", "nickName", "headImgUrl", "message", "alertType", "", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V", "getAlertType", "()I", "getHeadImgUrl", "()Ljava/lang/String;", "getMessage", "getNickName", "getSn", "component1", "component2", "component3", "component4", "component5", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class AddFriendMessage { + @org.jetbrains.annotations.NotNull() + private final java.lang.String sn = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String nickName = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String headImgUrl = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String message = null; + private final int alertType = 0; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNickName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHeadImgUrl() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getMessage() { + return null; + } + + public final int getAlertType() { + return 0; + } + + public AddFriendMessage(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, @org.jetbrains.annotations.NotNull() + java.lang.String message, int alertType) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component3() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component4() { + return null; + } + + public final int component5() { + return 0; + } + + /** + * 添加好友的push消息内容 + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.AddFriendMessage copy(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, @org.jetbrains.annotations.NotNull() + java.lang.String message, int alertType) { + return null; + } + + /** + * 添加好友的push消息内容 + */ + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + /** + * 添加好友的push消息内容 + */ + @java.lang.Override() + public int hashCode() { + return 0; + } + + /** + * 添加好友的push消息内容 + */ + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AddFriendMessage.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AddFriendMessage.kapt_metadata new file mode 100644 index 0000000000..be58caa215 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AddFriendMessage.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnit.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnit.java new file mode 100644 index 0000000000..a8e9d55a3d --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnit.java @@ -0,0 +1,171 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b$\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001BK\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0005\u0012\u0006\u0010\u0007\u001a\u00020\u0005\u0012\f\u0010\b\u001a\b\u0012\u0004\u0012\u00020\n0\t\u0012\u0006\u0010\u000b\u001a\u00020\u0005\u0012\u0006\u0010\f\u001a\u00020\u0005\u0012\u0006\u0010\r\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u000eJ\t\u0010%\u001a\u00020\u0003H\u00c6\u0003J\t\u0010&\u001a\u00020\u0005H\u00c6\u0003J\t\u0010\'\u001a\u00020\u0005H\u00c6\u0003J\t\u0010(\u001a\u00020\u0005H\u00c6\u0003J\u000f\u0010)\u001a\b\u0012\u0004\u0012\u00020\n0\tH\u00c6\u0003J\t\u0010*\u001a\u00020\u0005H\u00c6\u0003J\t\u0010+\u001a\u00020\u0005H\u00c6\u0003J\t\u0010,\u001a\u00020\u0005H\u00c6\u0003J_\u0010-\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00052\b\b\u0002\u0010\u0007\u001a\u00020\u00052\u000e\b\u0002\u0010\b\u001a\b\u0012\u0004\u0012\u00020\n0\t2\b\b\u0002\u0010\u000b\u001a\u00020\u00052\b\b\u0002\u0010\f\u001a\u00020\u00052\b\b\u0002\u0010\r\u001a\u00020\u0005H\u00c6\u0001J\u0013\u0010.\u001a\u00020/2\b\u00100\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u00101\u001a\u00020\u0003H\u00d6\u0001J\t\u00102\u001a\u00020\u0005H\u00d6\u0001R\u001a\u0010\u000b\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000f\u0010\u0010\"\u0004\b\u0011\u0010\u0012R\u001a\u0010\r\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0013\u0010\u0010\"\u0004\b\u0014\u0010\u0012R\u001a\u0010\f\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0015\u0010\u0010\"\u0004\b\u0016\u0010\u0012R\u001a\u0010\u0007\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0017\u0010\u0010\"\u0004\b\u0018\u0010\u0012R\u001a\u0010\u0006\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0019\u0010\u0010\"\u0004\b\u001a\u0010\u0012R\u001a\u0010\u0004\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001b\u0010\u0010\"\u0004\b\u001c\u0010\u0012R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001d\u0010\u001e\"\u0004\b\u001f\u0010 R \u0010\b\u001a\b\u0012\u0004\u0012\u00020\n0\tX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b!\u0010\"\"\u0004\b#\u0010$\u00a8\u00063"}, d2 = {"Lcom/mogo/chat/model/bean/AllUnit;", "", "localUserId", "", "localNickName", "", "localHeadImgUrl", "localCarInfo", "sns", "", "Lcom/mogo/chat/model/bean/Sns;", "cardIdAge", "cityName", "cardIdSex", "(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "getCardIdAge", "()Ljava/lang/String;", "setCardIdAge", "(Ljava/lang/String;)V", "getCardIdSex", "setCardIdSex", "getCityName", "setCityName", "getLocalCarInfo", "setLocalCarInfo", "getLocalHeadImgUrl", "setLocalHeadImgUrl", "getLocalNickName", "setLocalNickName", "getLocalUserId", "()I", "setLocalUserId", "(I)V", "getSns", "()Ljava/util/List;", "setSns", "(Ljava/util/List;)V", "component1", "component2", "component3", "component4", "component5", "component6", "component7", "component8", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class AllUnit { + private int localUserId; + @org.jetbrains.annotations.NotNull() + private java.lang.String localNickName; + @org.jetbrains.annotations.NotNull() + private java.lang.String localHeadImgUrl; + @org.jetbrains.annotations.NotNull() + private java.lang.String localCarInfo; + @org.jetbrains.annotations.NotNull() + private java.util.List sns; + @org.jetbrains.annotations.NotNull() + private java.lang.String cardIdAge; + @org.jetbrains.annotations.NotNull() + private java.lang.String cityName; + @org.jetbrains.annotations.NotNull() + private java.lang.String cardIdSex; + + public final int getLocalUserId() { + return 0; + } + + public final void setLocalUserId(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getLocalNickName() { + return null; + } + + public final void setLocalNickName(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getLocalHeadImgUrl() { + return null; + } + + public final void setLocalHeadImgUrl(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getLocalCarInfo() { + return null; + } + + public final void setLocalCarInfo(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.util.List getSns() { + return null; + } + + public final void setSns(@org.jetbrains.annotations.NotNull() + java.util.List p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCardIdAge() { + return null; + } + + public final void setCardIdAge(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCityName() { + return null; + } + + public final void setCityName(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCardIdSex() { + return null; + } + + public final void setCardIdSex(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public AllUnit(int localUserId, @org.jetbrains.annotations.NotNull() + java.lang.String localNickName, @org.jetbrains.annotations.NotNull() + java.lang.String localHeadImgUrl, @org.jetbrains.annotations.NotNull() + java.lang.String localCarInfo, @org.jetbrains.annotations.NotNull() + java.util.List sns, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex) { + super(); + } + + public final int component1() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component3() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component4() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.List component5() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component6() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component7() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component8() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.AllUnit copy(int localUserId, @org.jetbrains.annotations.NotNull() + java.lang.String localNickName, @org.jetbrains.annotations.NotNull() + java.lang.String localHeadImgUrl, @org.jetbrains.annotations.NotNull() + java.lang.String localCarInfo, @org.jetbrains.annotations.NotNull() + java.util.List sns, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnit.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnit.kapt_metadata new file mode 100644 index 0000000000..46ef6f0d01 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnit.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnitKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnitKt.java new file mode 100644 index 0000000000..5f39f85984 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnitKt.java @@ -0,0 +1,13 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\f\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\u001a\n\u0010\u0000\u001a\u00020\u0001*\u00020\u0002\u00a8\u0006\u0003"}, d2 = {"toSns", "Lcom/mogo/chat/model/bean/Sns;", "Lcom/mogo/chat/model/bean/AllUnit;", "mogo-module-chat_debug"}) +public final class AllUnitKt { + + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.bean.Sns toSns(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.AllUnit $this$toSns) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnitKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnitKt.kapt_metadata new file mode 100644 index 0000000000..091e485051 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/AllUnitKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CallRequestParam.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CallRequestParam.java new file mode 100644 index 0000000000..c911d22445 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CallRequestParam.java @@ -0,0 +1,109 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0005\n\u0002\u0010\u0006\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u001b\u0018\u00002\u00020\u0001BK\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u0012\u0006\u0010\u0007\u001a\u00020\u0003\u0012\b\u0010\b\u001a\u0004\u0018\u00010\t\u0012\b\u0010\n\u001a\u0004\u0018\u00010\t\u0012\b\b\u0002\u0010\u000b\u001a\u00020\f\u00a2\u0006\u0002\u0010\rJ\b\u0010&\u001a\u00020\u0003H\u0016R\u001a\u0010\u0007\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000e\u0010\u000f\"\u0004\b\u0010\u0010\u0011R\u001a\u0010\u0006\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0012\u0010\u000f\"\u0004\b\u0013\u0010\u0011R\u001e\u0010\b\u001a\u0004\u0018\u00010\tX\u0086\u000e\u00a2\u0006\u0010\n\u0002\u0010\u0018\u001a\u0004\b\u0014\u0010\u0015\"\u0004\b\u0016\u0010\u0017R\u001e\u0010\n\u001a\u0004\u0018\u00010\tX\u0086\u000e\u00a2\u0006\u0010\n\u0002\u0010\u0018\u001a\u0004\b\u0019\u0010\u0015\"\u0004\b\u001a\u0010\u0017R\u001a\u0010\u0005\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001b\u0010\u000f\"\u0004\b\u001c\u0010\u0011R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001d\u0010\u000f\"\u0004\b\u001e\u0010\u0011R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001f\u0010\u000f\"\u0004\b \u0010\u0011R\u001a\u0010!\u001a\u00020\fX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\"\u0010#\"\u0004\b$\u0010%\u00a8\u0006\'"}, d2 = {"Lcom/mogo/chat/model/bean/CallRequestParam;", "", "snSender", "", "snReceiver", "nickName", "headImgUrl", "carInfo", "lat", "", "lon", "callType", "", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Double;Ljava/lang/Double;I)V", "getCarInfo", "()Ljava/lang/String;", "setCarInfo", "(Ljava/lang/String;)V", "getHeadImgUrl", "setHeadImgUrl", "getLat", "()Ljava/lang/Double;", "setLat", "(Ljava/lang/Double;)V", "Ljava/lang/Double;", "getLon", "setLon", "getNickName", "setNickName", "getSnReceiver", "setSnReceiver", "getSnSender", "setSnSender", "type", "getType", "()I", "setType", "(I)V", "toString", "mogo-module-chat_debug"}) +public final class CallRequestParam { + private int type; + @org.jetbrains.annotations.NotNull() + private java.lang.String snSender; + @org.jetbrains.annotations.NotNull() + private java.lang.String snReceiver; + @org.jetbrains.annotations.NotNull() + private java.lang.String nickName; + @org.jetbrains.annotations.NotNull() + private java.lang.String headImgUrl; + @org.jetbrains.annotations.NotNull() + private java.lang.String carInfo; + @org.jetbrains.annotations.Nullable() + private java.lang.Double lat; + @org.jetbrains.annotations.Nullable() + private java.lang.Double lon; + + public final int getType() { + return 0; + } + + public final void setType(int p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnSender() { + return null; + } + + public final void setSnSender(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnReceiver() { + return null; + } + + public final void setSnReceiver(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNickName() { + return null; + } + + public final void setNickName(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHeadImgUrl() { + return null; + } + + public final void setHeadImgUrl(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCarInfo() { + return null; + } + + public final void setCarInfo(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Double getLat() { + return null; + } + + public final void setLat(@org.jetbrains.annotations.Nullable() + java.lang.Double p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Double getLon() { + return null; + } + + public final void setLon(@org.jetbrains.annotations.Nullable() + java.lang.Double p0) { + } + + public CallRequestParam(@org.jetbrains.annotations.NotNull() + java.lang.String snSender, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo, @org.jetbrains.annotations.Nullable() + java.lang.Double lat, @org.jetbrains.annotations.Nullable() + java.lang.Double lon, int callType) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CallRequestParam.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CallRequestParam.kapt_metadata new file mode 100644 index 0000000000..f3b97cd8bf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CallRequestParam.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.java new file mode 100644 index 0000000000..6d3cf581cb --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.java @@ -0,0 +1,131 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0018\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001BK\u0012\b\u0010\u0002\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u0005\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u0006\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u0007\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\b\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\t\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\u0002\u0010\nJ\u000b\u0010\u0013\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\u000b\u0010\u0014\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\u000b\u0010\u0015\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\u000b\u0010\u0016\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\u000b\u0010\u0017\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\u000b\u0010\u0018\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\u000b\u0010\u0019\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J]\u0010\u001a\u001a\u00020\u00002\n\b\u0002\u0010\u0002\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\u0005\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\u0006\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\u0007\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\b\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\t\u001a\u0004\u0018\u00010\u0003H\u00c6\u0001J\u0013\u0010\u001b\u001a\u00020\u001c2\b\u0010\u001d\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u001e\u001a\u00020\u001fH\u00d6\u0001J\t\u0010 \u001a\u00020\u0003H\u00d6\u0001R\u0013\u0010\u0007\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u0013\u0010\u0006\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\fR\u0013\u0010\u0005\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\fR\u0013\u0010\t\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\fR\u0013\u0010\b\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\fR\u0013\u0010\u0002\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\fR\u0013\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0012\u0010\f\u00a8\u0006!"}, d2 = {"Lcom/mogo/chat/model/bean/CarAndUserInfoRedisVo;", "", "sn", "", "userNickName", "headImgUrl", "cardIdSex", "cardIdAge", "lastBrandName", "lastActiveCity", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "getCardIdAge", "()Ljava/lang/String;", "getCardIdSex", "getHeadImgUrl", "getLastActiveCity", "getLastBrandName", "getSn", "getUserNickName", "component1", "component2", "component3", "component4", "component5", "component6", "component7", "copy", "equals", "", "other", "hashCode", "", "toString", "mogo-module-chat_debug"}) +public final class CarAndUserInfoRedisVo { + @org.jetbrains.annotations.Nullable() + private final java.lang.String sn = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String userNickName = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String headImgUrl = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String cardIdSex = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String cardIdAge = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String lastBrandName = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String lastActiveCity = null; + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getSn() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getUserNickName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getHeadImgUrl() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdSex() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdAge() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getLastBrandName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getLastActiveCity() { + return null; + } + + public CarAndUserInfoRedisVo(@org.jetbrains.annotations.Nullable() + java.lang.String sn, @org.jetbrains.annotations.Nullable() + java.lang.String userNickName, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdSex, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdAge, @org.jetbrains.annotations.Nullable() + java.lang.String lastBrandName, @org.jetbrains.annotations.Nullable() + java.lang.String lastActiveCity) { + super(); + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component3() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component4() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component5() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component6() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component7() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.CarAndUserInfoRedisVo copy(@org.jetbrains.annotations.Nullable() + java.lang.String sn, @org.jetbrains.annotations.Nullable() + java.lang.String userNickName, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdSex, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdAge, @org.jetbrains.annotations.Nullable() + java.lang.String lastBrandName, @org.jetbrains.annotations.Nullable() + java.lang.String lastActiveCity) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.kapt_metadata new file mode 100644 index 0000000000..b28e912e66 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarMessage.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarMessage.java new file mode 100644 index 0000000000..b978edb2fd --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarMessage.java @@ -0,0 +1,93 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0011\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B-\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u0012\u0006\u0010\u0007\u001a\u00020\b\u0012\u0006\u0010\t\u001a\u00020\b\u00a2\u0006\u0002\u0010\nJ\t\u0010\u0013\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0014\u001a\u00020\u0005H\u00c6\u0003J\t\u0010\u0015\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0016\u001a\u00020\bH\u00c6\u0003J\t\u0010\u0017\u001a\u00020\bH\u00c6\u0003J;\u0010\u0018\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00032\b\b\u0002\u0010\u0007\u001a\u00020\b2\b\b\u0002\u0010\t\u001a\u00020\bH\u00c6\u0001J\u0013\u0010\u0019\u001a\u00020\u001a2\b\u0010\u001b\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u001c\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u001d\u001a\u00020\bH\u00d6\u0001R\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u0011\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000eR\u0011\u0010\u0007\u001a\u00020\b\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u0010R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u000eR\u0011\u0010\t\u001a\u00020\b\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0012\u0010\u0010\u00a8\u0006\u001e"}, d2 = {"Lcom/mogo/chat/model/bean/CarMessage;", "", "receiver", "", "message", "Lcom/mogo/chat/model/bean/Message;", "msgType", "pkgName", "", "title", "(ILcom/mogo/chat/model/bean/Message;ILjava/lang/String;Ljava/lang/String;)V", "getMessage", "()Lcom/mogo/chat/model/bean/Message;", "getMsgType", "()I", "getPkgName", "()Ljava/lang/String;", "getReceiver", "getTitle", "component1", "component2", "component3", "component4", "component5", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class CarMessage { + private final int receiver = 0; + @org.jetbrains.annotations.NotNull() + private final com.mogo.chat.model.bean.Message message = null; + private final int msgType = 0; + @org.jetbrains.annotations.NotNull() + private final java.lang.String pkgName = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String title = null; + + public final int getReceiver() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Message getMessage() { + return null; + } + + public final int getMsgType() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getPkgName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getTitle() { + return null; + } + + public CarMessage(int receiver, @org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message, int msgType, @org.jetbrains.annotations.NotNull() + java.lang.String pkgName, @org.jetbrains.annotations.NotNull() + java.lang.String title) { + super(); + } + + public final int component1() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Message component2() { + return null; + } + + public final int component3() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component4() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component5() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.CarMessage copy(int receiver, @org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message, int msgType, @org.jetbrains.annotations.NotNull() + java.lang.String pkgName, @org.jetbrains.annotations.NotNull() + java.lang.String title) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarMessage.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarMessage.kapt_metadata new file mode 100644 index 0000000000..7be1866d67 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarMessage.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarSwitchStatus.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarSwitchStatus.java new file mode 100644 index 0000000000..f0cf4c3679 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarSwitchStatus.java @@ -0,0 +1,31 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\n\u0018\u00002\u00020\u0001B\u0017\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\nR\u001a\u0010\u0004\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\f\"\u0004\b\r\u0010\u000e\u00a8\u0006\u000f"}, d2 = {"Lcom/mogo/chat/model/bean/CarSwitchStatus;", "", "sn", "", "status", "", "(Ljava/lang/String;I)V", "getSn", "()Ljava/lang/String;", "setSn", "(Ljava/lang/String;)V", "getStatus", "()I", "setStatus", "(I)V", "mogo-module-chat_debug"}) +public final class CarSwitchStatus { + @org.jetbrains.annotations.NotNull() + private java.lang.String sn; + private int status; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + public final void setSn(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final int getStatus() { + return 0; + } + + public final void setStatus(int p0) { + } + + public CarSwitchStatus(@org.jetbrains.annotations.NotNull() + java.lang.String sn, int status) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarSwitchStatus.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarSwitchStatus.kapt_metadata new file mode 100644 index 0000000000..da25911c9c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/CarSwitchStatus.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/ConnectStatusParam.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/ConnectStatusParam.java new file mode 100644 index 0000000000..50bd57ff5a --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/ConnectStatusParam.java @@ -0,0 +1,153 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0015\n\u0002\u0010\u0006\n\u0002\b\u0019\u0018\u00002\u00020\u0001B/\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0006\u0012\u0006\u0010\u0007\u001a\u00020\u0006\u0012\u0006\u0010\b\u001a\u00020\u0006\u00a2\u0006\u0002\u0010\tJ\b\u00104\u001a\u00020\u0003H\u0016R\u001c\u0010\n\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\f\"\u0004\b\r\u0010\u000eR\u001c\u0010\u000f\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0010\u0010\f\"\u0004\b\u0011\u0010\u000eR\u001c\u0010\u0012\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0013\u0010\f\"\u0004\b\u0014\u0010\u000eR\u001c\u0010\u0015\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0016\u0010\f\"\u0004\b\u0017\u0010\u000eR\u001c\u0010\u0018\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0019\u0010\f\"\u0004\b\u001a\u0010\u000eR\u001e\u0010\u001b\u001a\u0004\u0018\u00010\u001cX\u0086\u000e\u00a2\u0006\u0010\n\u0002\u0010!\u001a\u0004\b\u001d\u0010\u001e\"\u0004\b\u001f\u0010 R\u001e\u0010\"\u001a\u0004\u0018\u00010\u001cX\u0086\u000e\u00a2\u0006\u0010\n\u0002\u0010!\u001a\u0004\b#\u0010\u001e\"\u0004\b$\u0010 R\u001c\u0010%\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b&\u0010\f\"\u0004\b\'\u0010\u000eR\u001a\u0010\u0005\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b(\u0010)\"\u0004\b*\u0010+R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b,\u0010\f\"\u0004\b-\u0010\u000eR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b.\u0010\f\"\u0004\b/\u0010\u000eR\u001a\u0010\u0007\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b0\u0010)\"\u0004\b1\u0010+R\u001a\u0010\b\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b2\u0010)\"\u0004\b3\u0010+\u00a8\u00065"}, d2 = {"Lcom/mogo/chat/model/bean/ConnectStatusParam;", "", "snSender", "", "snReceiver", "roomId", "", "status", "type", "(Ljava/lang/String;Ljava/lang/String;III)V", "carInfo", "getCarInfo", "()Ljava/lang/String;", "setCarInfo", "(Ljava/lang/String;)V", "cardIdAge", "getCardIdAge", "setCardIdAge", "cardIdSex", "getCardIdSex", "setCardIdSex", "cityName", "getCityName", "setCityName", "headImgUrl", "getHeadImgUrl", "setHeadImgUrl", "lat", "", "getLat", "()Ljava/lang/Double;", "setLat", "(Ljava/lang/Double;)V", "Ljava/lang/Double;", "lon", "getLon", "setLon", "nickName", "getNickName", "setNickName", "getRoomId", "()I", "setRoomId", "(I)V", "getSnReceiver", "setSnReceiver", "getSnSender", "setSnSender", "getStatus", "setStatus", "getType", "setType", "toString", "mogo-module-chat_debug"}) +public final class ConnectStatusParam { + @org.jetbrains.annotations.NotNull() + private java.lang.String snSender; + @org.jetbrains.annotations.NotNull() + private java.lang.String snReceiver; + private int roomId; + private int status; + private int type; + @org.jetbrains.annotations.Nullable() + private java.lang.Double lat; + @org.jetbrains.annotations.Nullable() + private java.lang.Double lon; + @org.jetbrains.annotations.Nullable() + private java.lang.String nickName; + @org.jetbrains.annotations.Nullable() + private java.lang.String headImgUrl; + @org.jetbrains.annotations.Nullable() + private java.lang.String carInfo; + @org.jetbrains.annotations.Nullable() + private java.lang.String cardIdAge; + @org.jetbrains.annotations.Nullable() + private java.lang.String cardIdSex; + @org.jetbrains.annotations.Nullable() + private java.lang.String cityName; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnSender() { + return null; + } + + public final void setSnSender(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnReceiver() { + return null; + } + + public final void setSnReceiver(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final int getRoomId() { + return 0; + } + + public final void setRoomId(int p0) { + } + + public final int getStatus() { + return 0; + } + + public final void setStatus(int p0) { + } + + public final int getType() { + return 0; + } + + public final void setType(int p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Double getLat() { + return null; + } + + public final void setLat(@org.jetbrains.annotations.Nullable() + java.lang.Double p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.Double getLon() { + return null; + } + + public final void setLon(@org.jetbrains.annotations.Nullable() + java.lang.Double p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getNickName() { + return null; + } + + public final void setNickName(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getHeadImgUrl() { + return null; + } + + public final void setHeadImgUrl(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCarInfo() { + return null; + } + + public final void setCarInfo(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdAge() { + return null; + } + + public final void setCardIdAge(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdSex() { + return null; + } + + public final void setCardIdSex(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCityName() { + return null; + } + + public final void setCityName(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + public ConnectStatusParam(@org.jetbrains.annotations.NotNull() + java.lang.String snSender, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, int roomId, int status, int type) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/ConnectStatusParam.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/ConnectStatusParam.kapt_metadata new file mode 100644 index 0000000000..56e45641b7 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/ConnectStatusParam.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusBlackListRequest.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusBlackListRequest.java new file mode 100644 index 0000000000..118338304b --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusBlackListRequest.java @@ -0,0 +1,31 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\n\u0018\u00002\u00020\u0001B\u0017\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\nR\u001a\u0010\u0004\u001a\u00020\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\f\"\u0004\b\r\u0010\u000e\u00a8\u0006\u000f"}, d2 = {"Lcom/mogo/chat/model/bean/FocusBlackListRequest;", "", "focusSn", "", "operate", "", "(Ljava/lang/String;I)V", "getFocusSn", "()Ljava/lang/String;", "setFocusSn", "(Ljava/lang/String;)V", "getOperate", "()I", "setOperate", "(I)V", "mogo-module-chat_debug"}) +public final class FocusBlackListRequest { + @org.jetbrains.annotations.NotNull() + private java.lang.String focusSn; + private int operate; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getFocusSn() { + return null; + } + + public final void setFocusSn(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final int getOperate() { + return 0; + } + + public final void setOperate(int p0) { + } + + public FocusBlackListRequest(@org.jetbrains.annotations.NotNull() + java.lang.String focusSn, int operate) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusBlackListRequest.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusBlackListRequest.kapt_metadata new file mode 100644 index 0000000000..64214b4282 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusBlackListRequest.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusData.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusData.java new file mode 100644 index 0000000000..66b160f021 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusData.java @@ -0,0 +1,83 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0004\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u000f\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B3\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u0012\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\b\u00a2\u0006\u0002\u0010\nJ\t\u0010\u0012\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0013\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0014\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0015\u001a\u00020\u0003H\u00c6\u0003J\u000f\u0010\u0016\u001a\b\u0012\u0004\u0012\u00020\t0\bH\u00c6\u0003JA\u0010\u0017\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u00032\u000e\b\u0002\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\bH\u00c6\u0001J\u0013\u0010\u0018\u001a\u00020\u00192\b\u0010\u001a\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u001b\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u001c\u001a\u00020\u001dH\u00d6\u0001R\u0017\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\b\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000eR\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u000eR\u0011\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\u000eR\u0011\u0010\u0005\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u000e\u00a8\u0006\u001e"}, d2 = {"Lcom/mogo/chat/model/bean/FocusData;", "", "pageIndex", "", "pageSize", "totalPages", "totalElements", "friendList", "", "Lcom/mogo/chat/model/bean/FocusList;", "(IIIILjava/util/List;)V", "getFriendList", "()Ljava/util/List;", "getPageIndex", "()I", "getPageSize", "getTotalElements", "getTotalPages", "component1", "component2", "component3", "component4", "component5", "copy", "equals", "", "other", "hashCode", "toString", "", "mogo-module-chat_debug"}) +public final class FocusData { + private final int pageIndex = 0; + private final int pageSize = 0; + private final int totalPages = 0; + private final int totalElements = 0; + @org.jetbrains.annotations.NotNull() + private final java.util.List friendList = null; + + public final int getPageIndex() { + return 0; + } + + public final int getPageSize() { + return 0; + } + + public final int getTotalPages() { + return 0; + } + + public final int getTotalElements() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.List getFriendList() { + return null; + } + + public FocusData(int pageIndex, int pageSize, int totalPages, int totalElements, @org.jetbrains.annotations.NotNull() + java.util.List friendList) { + super(); + } + + public final int component1() { + return 0; + } + + public final int component2() { + return 0; + } + + public final int component3() { + return 0; + } + + public final int component4() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.List component5() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.FocusData copy(int pageIndex, int pageSize, int totalPages, int totalElements, @org.jetbrains.annotations.NotNull() + java.util.List friendList) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusData.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusData.kapt_metadata new file mode 100644 index 0000000000..9a32a86e19 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusData.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusList.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusList.java new file mode 100644 index 0000000000..ce27afd8d5 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusList.java @@ -0,0 +1,167 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0002\b$\b\u0086\b\u0018\u00002\u00020\u0001BU\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0003\u0012\u0006\u0010\t\u001a\u00020\u0003\u0012\u0006\u0010\n\u001a\u00020\u0003\u0012\u0006\u0010\u000b\u001a\u00020\u0003\u0012\u0006\u0010\f\u001a\u00020\r\u0012\u0006\u0010\u000e\u001a\u00020\u0007\u00a2\u0006\u0002\u0010\u000fJ\t\u0010\"\u001a\u00020\u0003H\u00c6\u0003J\t\u0010#\u001a\u00020\u0007H\u00c6\u0003J\t\u0010$\u001a\u00020\u0003H\u00c6\u0003J\t\u0010%\u001a\u00020\u0003H\u00c6\u0003J\t\u0010&\u001a\u00020\u0007H\u00c6\u0003J\t\u0010\'\u001a\u00020\u0003H\u00c6\u0003J\t\u0010(\u001a\u00020\u0003H\u00c6\u0003J\t\u0010)\u001a\u00020\u0003H\u00c6\u0003J\t\u0010*\u001a\u00020\u0003H\u00c6\u0003J\t\u0010+\u001a\u00020\rH\u00c6\u0003Jm\u0010,\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u00032\b\b\u0002\u0010\t\u001a\u00020\u00032\b\b\u0002\u0010\n\u001a\u00020\u00032\b\b\u0002\u0010\u000b\u001a\u00020\u00032\b\b\u0002\u0010\f\u001a\u00020\r2\b\b\u0002\u0010\u000e\u001a\u00020\u0007H\u00c6\u0001J\u0013\u0010-\u001a\u00020\r2\b\u0010.\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010/\u001a\u00020\u0007H\u00d6\u0001J\t\u00100\u001a\u00020\u0003H\u00d6\u0001R\u001a\u0010\u000e\u001a\u00020\u0007X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0010\u0010\u0011\"\u0004\b\u0012\u0010\u0013R\u0011\u0010\u000b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0014\u0010\u0015R\u001a\u0010\u0006\u001a\u00020\u0007X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0016\u0010\u0011\"\u0004\b\u0017\u0010\u0013R\u0011\u0010\n\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0018\u0010\u0015R\u0011\u0010\b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0019\u0010\u0015R\u0011\u0010\t\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001a\u0010\u0015R\u001a\u0010\f\u001a\u00020\rX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001b\u0010\u001c\"\u0004\b\u001d\u0010\u001eR\u0011\u0010\u0005\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001f\u0010\u0015R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b \u0010\u0015R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b!\u0010\u0015\u00a8\u00061"}, d2 = {"Lcom/mogo/chat/model/bean/FocusList;", "", "sn", "", "nickName", "headImgUrl", "carStatus", "", "cardIdSex", "cityName", "cardIdAge", "carInfo", "eachFocusFlag", "", "blackFlag", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZI)V", "getBlackFlag", "()I", "setBlackFlag", "(I)V", "getCarInfo", "()Ljava/lang/String;", "getCarStatus", "setCarStatus", "getCardIdAge", "getCardIdSex", "getCityName", "getEachFocusFlag", "()Z", "setEachFocusFlag", "(Z)V", "getHeadImgUrl", "getNickName", "getSn", "component1", "component10", "component2", "component3", "component4", "component5", "component6", "component7", "component8", "component9", "copy", "equals", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class FocusList { + @org.jetbrains.annotations.NotNull() + private final java.lang.String sn = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String nickName = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String headImgUrl = null; + private int carStatus; + @org.jetbrains.annotations.NotNull() + private final java.lang.String cardIdSex = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String cityName = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String cardIdAge = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String carInfo = null; + private boolean eachFocusFlag; + private int blackFlag; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNickName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHeadImgUrl() { + return null; + } + + public final int getCarStatus() { + return 0; + } + + public final void setCarStatus(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCardIdSex() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCityName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCardIdAge() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCarInfo() { + return null; + } + + public final boolean getEachFocusFlag() { + return false; + } + + public final void setEachFocusFlag(boolean p0) { + } + + public final int getBlackFlag() { + return 0; + } + + public final void setBlackFlag(int p0) { + } + + public FocusList(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, int carStatus, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo, boolean eachFocusFlag, int blackFlag) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component3() { + return null; + } + + public final int component4() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component5() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component6() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component7() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component8() { + return null; + } + + public final boolean component9() { + return false; + } + + public final int component10() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.FocusList copy(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, int carStatus, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo, boolean eachFocusFlag, int blackFlag) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusList.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusList.kapt_metadata new file mode 100644 index 0000000000..aa225c10f3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusList.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusStatus.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusStatus.java new file mode 100644 index 0000000000..4c59e68641 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusStatus.java @@ -0,0 +1,42 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\t\u0010\u0006\u001a\u00020\u0003H\u00c6\u0003J\u0013\u0010\u0007\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\b\u001a\u00020\t2\b\u0010\n\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u000b\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\f\u001a\u00020\rH\u00d6\u0001R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0002\u0010\u0005\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/chat/model/bean/FocusStatus;", "", "isFocus", "", "(I)V", "()I", "component1", "copy", "equals", "", "other", "hashCode", "toString", "", "mogo-module-chat_debug"}) +public final class FocusStatus { + private final int isFocus = 0; + + public final int isFocus() { + return 0; + } + + public FocusStatus(int isFocus) { + super(); + } + + public final int component1() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.FocusStatus copy(int isFocus) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusStatus.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusStatus.kapt_metadata new file mode 100644 index 0000000000..02b0ddc813 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FocusStatus.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendData.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendData.java new file mode 100644 index 0000000000..ce9cd9ed28 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendData.java @@ -0,0 +1,83 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0004\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u000f\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B3\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u0012\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\b\u00a2\u0006\u0002\u0010\nJ\t\u0010\u0012\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0013\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0014\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0015\u001a\u00020\u0003H\u00c6\u0003J\u000f\u0010\u0016\u001a\b\u0012\u0004\u0012\u00020\t0\bH\u00c6\u0003JA\u0010\u0017\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u00032\u000e\b\u0002\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\bH\u00c6\u0001J\u0013\u0010\u0018\u001a\u00020\u00192\b\u0010\u001a\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u001b\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u001c\u001a\u00020\u001dH\u00d6\u0001R\u0017\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\b\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000eR\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u000eR\u0011\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\u000eR\u0011\u0010\u0005\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u000e\u00a8\u0006\u001e"}, d2 = {"Lcom/mogo/chat/model/bean/FriendData;", "", "pageIndex", "", "pageSize", "totalPages", "totalElements", "friendList", "", "Lcom/mogo/chat/model/bean/FriendList;", "(IIIILjava/util/List;)V", "getFriendList", "()Ljava/util/List;", "getPageIndex", "()I", "getPageSize", "getTotalElements", "getTotalPages", "component1", "component2", "component3", "component4", "component5", "copy", "equals", "", "other", "hashCode", "toString", "", "mogo-module-chat_debug"}) +public final class FriendData { + private final int pageIndex = 0; + private final int pageSize = 0; + private final int totalPages = 0; + private final int totalElements = 0; + @org.jetbrains.annotations.NotNull() + private final java.util.List friendList = null; + + public final int getPageIndex() { + return 0; + } + + public final int getPageSize() { + return 0; + } + + public final int getTotalPages() { + return 0; + } + + public final int getTotalElements() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.List getFriendList() { + return null; + } + + public FriendData(int pageIndex, int pageSize, int totalPages, int totalElements, @org.jetbrains.annotations.NotNull() + java.util.List friendList) { + super(); + } + + public final int component1() { + return 0; + } + + public final int component2() { + return 0; + } + + public final int component3() { + return 0; + } + + public final int component4() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.List component5() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.FriendData copy(int pageIndex, int pageSize, int totalPages, int totalElements, @org.jetbrains.annotations.NotNull() + java.util.List friendList) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendData.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendData.kapt_metadata new file mode 100644 index 0000000000..bb16355bf8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendData.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendDataKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendDataKt.java new file mode 100644 index 0000000000..9b67b0d2e4 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendDataKt.java @@ -0,0 +1,27 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0018\n\u0000\n\u0002\u0010\u000b\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\u001a\n\u0010\u0000\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u0003\u001a\u00020\u0001*\u00020\u0004\u001a\n\u0010\u0005\u001a\u00020\u0006*\u00020\u0002\u00a8\u0006\u0007"}, d2 = {"canCall", "", "Lcom/mogo/chat/model/bean/FriendList;", "isInBlackList", "Lcom/mogo/chat/model/bean/FocusList;", "toSns", "Lcom/mogo/chat/model/bean/Sns;", "mogo-module-chat_debug"}) +public final class FriendDataKt { + + /** + * carStatus == 1 可拨打 + * carStatus == 0 不可拨打 + */ + public static final boolean canCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.FriendList $this$canCall) { + return false; + } + + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.bean.Sns toSns(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.FriendList $this$toSns) { + return null; + } + + public static final boolean isInBlackList(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.FocusList $this$isInBlackList) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendDataKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendDataKt.kapt_metadata new file mode 100644 index 0000000000..e0ef2cd283 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendDataKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendList.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendList.java new file mode 100644 index 0000000000..f02dee75fb --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendList.java @@ -0,0 +1,140 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0019\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001BG\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\b\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0003\u0012\u0006\u0010\t\u001a\u00020\u0003\u0012\u0006\u0010\n\u001a\u00020\u0003\u0012\u0006\u0010\u000b\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\fJ\t\u0010\u0017\u001a\u00020\u0003H\u00c6\u0003J\u000b\u0010\u0018\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\t\u0010\u0019\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u001a\u001a\u00020\u0007H\u00c6\u0003J\t\u0010\u001b\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u001c\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u001d\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u001e\u001a\u00020\u0003H\u00c6\u0003J[\u0010\u001f\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u00032\b\b\u0002\u0010\t\u001a\u00020\u00032\b\b\u0002\u0010\n\u001a\u00020\u00032\b\b\u0002\u0010\u000b\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010 \u001a\u00020!2\b\u0010\"\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010#\u001a\u00020\u0007H\u00d6\u0001J\t\u0010$\u001a\u00020\u0003H\u00d6\u0001R\u0011\u0010\u000b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000eR\u0011\u0010\u0006\u001a\u00020\u0007\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u0010R\u0011\u0010\n\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u000eR\u0011\u0010\b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0012\u0010\u000eR\u0011\u0010\t\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0013\u0010\u000eR\u0011\u0010\u0005\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0014\u0010\u000eR\u0013\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0015\u0010\u000eR\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0016\u0010\u000e\u00a8\u0006%"}, d2 = {"Lcom/mogo/chat/model/bean/FriendList;", "", "sn", "", "nickName", "headImgUrl", "carStatus", "", "cardIdSex", "cityName", "cardIdAge", "carInfo", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "getCarInfo", "()Ljava/lang/String;", "getCarStatus", "()I", "getCardIdAge", "getCardIdSex", "getCityName", "getHeadImgUrl", "getNickName", "getSn", "component1", "component2", "component3", "component4", "component5", "component6", "component7", "component8", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class FriendList { + @org.jetbrains.annotations.NotNull() + private final java.lang.String sn = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String nickName = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String headImgUrl = null; + private final int carStatus = 0; + @org.jetbrains.annotations.NotNull() + private final java.lang.String cardIdSex = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String cityName = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String cardIdAge = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String carInfo = null; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getNickName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHeadImgUrl() { + return null; + } + + public final int getCarStatus() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCardIdSex() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCityName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCardIdAge() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCarInfo() { + return null; + } + + public FriendList(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, int carStatus, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component3() { + return null; + } + + public final int component4() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component5() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component6() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component7() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component8() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.FriendList copy(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, int carStatus, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendList.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendList.kapt_metadata new file mode 100644 index 0000000000..8d7686bd9f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendList.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.java new file mode 100644 index 0000000000..2754311d38 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.java @@ -0,0 +1,35 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\t\u0018\u00002\u00020\u0001B\u0017\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0006\u0010\u0007\"\u0004\b\b\u0010\tR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\n\u0010\u0007\"\u0004\b\u000b\u0010\t\u00a8\u0006\f"}, d2 = {"Lcom/mogo/chat/model/bean/FriendOrSelfOnLine;", "", "snSender", "", "snReceiver", "(Ljava/lang/String;Ljava/lang/String;)V", "getSnReceiver", "()Ljava/lang/String;", "setSnReceiver", "(Ljava/lang/String;)V", "getSnSender", "setSnSender", "mogo-module-chat_debug"}) +public final class FriendOrSelfOnLine { + @org.jetbrains.annotations.NotNull() + private java.lang.String snSender; + @org.jetbrains.annotations.NotNull() + private java.lang.String snReceiver; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnSender() { + return null; + } + + public final void setSnSender(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnReceiver() { + return null; + } + + public final void setSnReceiver(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public FriendOrSelfOnLine(@org.jetbrains.annotations.NotNull() + java.lang.String snSender, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.kapt_metadata new file mode 100644 index 0000000000..2dcd71fa46 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendRequest.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendRequest.java new file mode 100644 index 0000000000..66128add91 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendRequest.java @@ -0,0 +1,27 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\t\u0018\u00002\u00020\u0001B\u0017\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0006\u0010\u0007\"\u0004\b\b\u0010\tR\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\n\u0010\u0007\"\u0004\b\u000b\u0010\t\u00a8\u0006\f"}, d2 = {"Lcom/mogo/chat/model/bean/FriendRequest;", "", "pageIndex", "", "pageSize", "(II)V", "getPageIndex", "()I", "setPageIndex", "(I)V", "getPageSize", "setPageSize", "mogo-module-chat_debug"}) +public final class FriendRequest { + private int pageIndex; + private int pageSize; + + public final int getPageIndex() { + return 0; + } + + public final void setPageIndex(int p0) { + } + + public final int getPageSize() { + return 0; + } + + public final void setPageSize(int p0) { + } + + public FriendRequest(int pageIndex, int pageSize) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendRequest.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendRequest.kapt_metadata new file mode 100644 index 0000000000..bd821ad49b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/FriendRequest.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Header.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Header.java new file mode 100644 index 0000000000..4bc74c0f9f --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Header.java @@ -0,0 +1,69 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u000f\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B%\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0007J\t\u0010\r\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u000e\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u000f\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0010\u001a\u00020\u0003H\u00c6\u0003J1\u0010\u0011\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\u0012\u001a\u00020\u00132\b\u0010\u0014\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0015\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u0016\u001a\u00020\u0017H\u00d6\u0001R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\tR\u0011\u0010\u0005\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\tR\u0011\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\f\u0010\t\u00a8\u0006\u0018"}, d2 = {"Lcom/mogo/chat/model/bean/Header;", "", "delayTime", "", "maxSpeed", "stayTime", "type", "(IIII)V", "getDelayTime", "()I", "getMaxSpeed", "getStayTime", "getType", "component1", "component2", "component3", "component4", "copy", "equals", "", "other", "hashCode", "toString", "", "mogo-module-chat_debug"}) +public final class Header { + private final int delayTime = 0; + private final int maxSpeed = 0; + private final int stayTime = 0; + private final int type = 0; + + public final int getDelayTime() { + return 0; + } + + public final int getMaxSpeed() { + return 0; + } + + public final int getStayTime() { + return 0; + } + + public final int getType() { + return 0; + } + + public Header(int delayTime, int maxSpeed, int stayTime, int type) { + super(); + } + + public final int component1() { + return 0; + } + + public final int component2() { + return 0; + } + + public final int component3() { + return 0; + } + + public final int component4() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Header copy(int delayTime, int maxSpeed, int stayTime, int type) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Header.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Header.kapt_metadata new file mode 100644 index 0000000000..8c7e0c3428 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Header.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InflectionBean.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InflectionBean.java new file mode 100644 index 0000000000..93a93fb71c --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InflectionBean.java @@ -0,0 +1,83 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0012\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B-\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u0012\u0006\u0010\u0007\u001a\u00020\u0003\u0012\u0006\u0010\b\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\tJ\t\u0010\u0011\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0012\u001a\u00020\u0005H\u00c6\u0003J\t\u0010\u0013\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0014\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0015\u001a\u00020\u0003H\u00c6\u0003J;\u0010\u0016\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00032\b\b\u0002\u0010\u0007\u001a\u00020\u00032\b\b\u0002\u0010\b\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\u0017\u001a\u00020\u00182\b\u0010\u0019\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u001a\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u001b\u001a\u00020\u0005H\u00d6\u0001R\u0011\u0010\u0007\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0011\u0010\b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\f\u0010\u000bR\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000bR\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\u000fR\u0011\u0010\u0006\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\u000b\u00a8\u0006\u001c"}, d2 = {"Lcom/mogo/chat/model/bean/InflectionBean;", "", "inflectionId", "", "inflectionName", "", "normalRes", "checkedRes", "exampleVoiceRaw", "(ILjava/lang/String;III)V", "getCheckedRes", "()I", "getExampleVoiceRaw", "getInflectionId", "getInflectionName", "()Ljava/lang/String;", "getNormalRes", "component1", "component2", "component3", "component4", "component5", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class InflectionBean { + private final int inflectionId = 0; + @org.jetbrains.annotations.NotNull() + private final java.lang.String inflectionName = null; + private final int normalRes = 0; + private final int checkedRes = 0; + private final int exampleVoiceRaw = 0; + + public final int getInflectionId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getInflectionName() { + return null; + } + + public final int getNormalRes() { + return 0; + } + + public final int getCheckedRes() { + return 0; + } + + public final int getExampleVoiceRaw() { + return 0; + } + + public InflectionBean(int inflectionId, @org.jetbrains.annotations.NotNull() + java.lang.String inflectionName, int normalRes, int checkedRes, int exampleVoiceRaw) { + super(); + } + + public final int component1() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + public final int component3() { + return 0; + } + + public final int component4() { + return 0; + } + + public final int component5() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.InflectionBean copy(int inflectionId, @org.jetbrains.annotations.NotNull() + java.lang.String inflectionName, int normalRes, int checkedRes, int exampleVoiceRaw) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InflectionBean.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InflectionBean.kapt_metadata new file mode 100644 index 0000000000..6027742a6f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InflectionBean.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Info.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Info.java new file mode 100644 index 0000000000..bf9c7818b1 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Info.java @@ -0,0 +1,61 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\t\u0010\u000b\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\f\u001a\u00020\u0005H\u00c6\u0003J\u001d\u0010\r\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005H\u00c6\u0001J\u0013\u0010\u000e\u001a\u00020\u000f2\b\u0010\u0010\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0011\u001a\u00020\u0012H\u00d6\u0001J\t\u0010\u0013\u001a\u00020\u0014H\u00d6\u0001R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\t\u0010\n\u00a8\u0006\u0015"}, d2 = {"Lcom/mogo/chat/model/bean/Info;", "", "carAndUserInfoRedisVo", "Lcom/mogo/chat/model/bean/CarAndUserInfoRedisVo;", "realTimeLocationVo", "Lcom/mogo/chat/model/bean/RealTimeLocationVo;", "(Lcom/mogo/chat/model/bean/CarAndUserInfoRedisVo;Lcom/mogo/chat/model/bean/RealTimeLocationVo;)V", "getCarAndUserInfoRedisVo", "()Lcom/mogo/chat/model/bean/CarAndUserInfoRedisVo;", "getRealTimeLocationVo", "()Lcom/mogo/chat/model/bean/RealTimeLocationVo;", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "mogo-module-chat_debug"}) +public final class Info { + @org.jetbrains.annotations.NotNull() + private final com.mogo.chat.model.bean.CarAndUserInfoRedisVo carAndUserInfoRedisVo = null; + @org.jetbrains.annotations.NotNull() + private final com.mogo.chat.model.bean.RealTimeLocationVo realTimeLocationVo = null; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.CarAndUserInfoRedisVo getCarAndUserInfoRedisVo() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.RealTimeLocationVo getRealTimeLocationVo() { + return null; + } + + public Info(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.CarAndUserInfoRedisVo carAndUserInfoRedisVo, @org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.RealTimeLocationVo realTimeLocationVo) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.CarAndUserInfoRedisVo component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.RealTimeLocationVo component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Info copy(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.CarAndUserInfoRedisVo carAndUserInfoRedisVo, @org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.RealTimeLocationVo realTimeLocationVo) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Info.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Info.kapt_metadata new file mode 100644 index 0000000000..3ab002149b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Info.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InitMessage.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InitMessage.java new file mode 100644 index 0000000000..d14503af09 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InitMessage.java @@ -0,0 +1,85 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +/** + * 长连接初步建立时的初始化信息封装 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u000b\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B\u001d\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0006\u00a2\u0006\u0002\u0010\u0007J\t\u0010\r\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u000e\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u000f\u001a\u00020\u0006H\u00c6\u0003J\'\u0010\u0010\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u0006H\u00c6\u0001J\u0013\u0010\u0011\u001a\u00020\u00122\b\u0010\u0013\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0014\u001a\u00020\u0006H\u00d6\u0001J\t\u0010\u0015\u001a\u00020\u0003H\u00d6\u0001R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0011\u0010\u0005\u001a\u00020\u0006\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\f\u0010\t\u00a8\u0006\u0016"}, d2 = {"Lcom/mogo/chat/model/bean/InitMessage;", "", "nickName", "", "headImg", "localUserId", "", "(Ljava/lang/String;Ljava/lang/String;I)V", "getHeadImg", "()Ljava/lang/String;", "getLocalUserId", "()I", "getNickName", "component1", "component2", "component3", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class InitMessage { + @org.jetbrains.annotations.NotNull() + private final java.lang.String nickName = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String headImg = null; + private final int localUserId = 0; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNickName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHeadImg() { + return null; + } + + public final int getLocalUserId() { + return 0; + } + + public InitMessage(@org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImg, int localUserId) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + public final int component3() { + return 0; + } + + /** + * 长连接初步建立时的初始化信息封装 + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.InitMessage copy(@org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImg, int localUserId) { + return null; + } + + /** + * 长连接初步建立时的初始化信息封装 + */ + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + /** + * 长连接初步建立时的初始化信息封装 + */ + @java.lang.Override() + public int hashCode() { + return 0; + } + + /** + * 长连接初步建立时的初始化信息封装 + */ + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InitMessage.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InitMessage.kapt_metadata new file mode 100644 index 0000000000..963ca44959 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/InitMessage.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcast.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcast.java new file mode 100644 index 0000000000..7b0abf7850 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcast.java @@ -0,0 +1,61 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0004\n\u0002\u0010\b\n\u0002\b\u000e\u0018\u00002\u00020\u0001B\u0017\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005B\'\b\u0016\u0012\u0006\u0010\u0006\u001a\u00020\u0003\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0007\u001a\u00020\b\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\tR\u001c\u0010\u0006\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\n\u0010\u000b\"\u0004\b\f\u0010\rR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000e\u0010\u000b\"\u0004\b\u000f\u0010\rR\u001a\u0010\u0007\u001a\u00020\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0010\u0010\u0011\"\u0004\b\u0012\u0010\u0013R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0014\u0010\u000b\"\u0004\b\u0015\u0010\r\u00a8\u0006\u0016"}, d2 = {"Lcom/mogo/chat/model/bean/LiveBroadcast;", "", "sn", "", "videoChannel", "(Ljava/lang/String;Ljava/lang/String;)V", "eventId", "type", "", "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;)V", "getEventId", "()Ljava/lang/String;", "setEventId", "(Ljava/lang/String;)V", "getSn", "setSn", "getType", "()I", "setType", "(I)V", "getVideoChannel", "setVideoChannel", "mogo-module-chat_debug"}) +public final class LiveBroadcast { + @org.jetbrains.annotations.Nullable() + private java.lang.String eventId; + @org.jetbrains.annotations.NotNull() + private java.lang.String sn; + private int type = 0; + @org.jetbrains.annotations.NotNull() + private java.lang.String videoChannel; + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getEventId() { + return null; + } + + public final void setEventId(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + public final void setSn(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final int getType() { + return 0; + } + + public final void setType(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getVideoChannel() { + return null; + } + + public final void setVideoChannel(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public LiveBroadcast(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + java.lang.String videoChannel) { + super(); + } + + public LiveBroadcast(@org.jetbrains.annotations.NotNull() + java.lang.String eventId, @org.jetbrains.annotations.NotNull() + java.lang.String sn, int type, @org.jetbrains.annotations.NotNull() + java.lang.String videoChannel) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcast.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcast.kapt_metadata new file mode 100644 index 0000000000..6025ac3df5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcast.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcastResult.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcastResult.java new file mode 100644 index 0000000000..d91f433100 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcastResult.java @@ -0,0 +1,47 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\f\u0018\u00002\u00020\u0001B\u001f\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0006\u00a2\u0006\u0002\u0010\u0007R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\b\u0010\t\"\u0004\b\n\u0010\u000bR\u001a\u0010\u0005\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000fR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0010\u0010\t\"\u0004\b\u0011\u0010\u000b\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/chat/model/bean/LiveBroadcastResult;", "", "videoChannel", "", "livePlayUrl", "playUrl", "Lcom/mogo/chat/model/bean/PlayUrl;", "(Ljava/lang/String;Ljava/lang/String;Lcom/mogo/chat/model/bean/PlayUrl;)V", "getLivePlayUrl", "()Ljava/lang/String;", "setLivePlayUrl", "(Ljava/lang/String;)V", "getPlayUrl", "()Lcom/mogo/chat/model/bean/PlayUrl;", "setPlayUrl", "(Lcom/mogo/chat/model/bean/PlayUrl;)V", "getVideoChannel", "setVideoChannel", "mogo-module-chat_debug"}) +public final class LiveBroadcastResult { + @org.jetbrains.annotations.NotNull() + private java.lang.String videoChannel; + @org.jetbrains.annotations.NotNull() + private java.lang.String livePlayUrl; + @org.jetbrains.annotations.NotNull() + private com.mogo.chat.model.bean.PlayUrl playUrl; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getVideoChannel() { + return null; + } + + public final void setVideoChannel(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getLivePlayUrl() { + return null; + } + + public final void setLivePlayUrl(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.PlayUrl getPlayUrl() { + return null; + } + + public final void setPlayUrl(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.PlayUrl p0) { + } + + public LiveBroadcastResult(@org.jetbrains.annotations.NotNull() + java.lang.String videoChannel, @org.jetbrains.annotations.NotNull() + java.lang.String livePlayUrl, @org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.PlayUrl playUrl) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcastResult.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcastResult.kapt_metadata new file mode 100644 index 0000000000..42342ae961 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LiveBroadcastResult.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.java new file mode 100644 index 0000000000..80b310ff84 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.java @@ -0,0 +1,54 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0010\u0006\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0011\u0018\u00002\u00020\u0001B%\b\u0016\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0006\u0012\u0006\u0010\u0007\u001a\u00020\b\u00a2\u0006\u0002\u0010\tR \u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\n\u0010\u000b\"\u0004\b\f\u0010\rR\u001c\u0010\u000e\u001a\u0004\u0018\u00010\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000f\u0010\u0010\"\u0004\b\u0011\u0010\u0012R\u001a\u0010\u0005\u001a\u00020\u0006X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0013\u0010\u0014\"\u0004\b\u0015\u0010\u0016R\u001a\u0010\u0007\u001a\u00020\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0017\u0010\u0010\"\u0004\b\u0018\u0010\u0012\u00a8\u0006\u0019"}, d2 = {"Lcom/mogo/chat/model/bean/LocationCarsWithRadius;", "", "coordinates", "", "", "radius", "", "type", "", "(Ljava/util/List;ILjava/lang/String;)V", "getCoordinates", "()Ljava/util/List;", "setCoordinates", "(Ljava/util/List;)V", "keyWord", "getKeyWord", "()Ljava/lang/String;", "setKeyWord", "(Ljava/lang/String;)V", "getRadius", "()I", "setRadius", "(I)V", "getType", "setType", "mogo-module-chat_debug"}) +public final class LocationCarsWithRadius { + @org.jetbrains.annotations.NotNull() + private java.util.List coordinates; + private int radius; + @org.jetbrains.annotations.NotNull() + private java.lang.String type; + @org.jetbrains.annotations.Nullable() + private java.lang.String keyWord; + + @org.jetbrains.annotations.NotNull() + public final java.util.List getCoordinates() { + return null; + } + + public final void setCoordinates(@org.jetbrains.annotations.NotNull() + java.util.List p0) { + } + + public final int getRadius() { + return 0; + } + + public final void setRadius(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getType() { + return null; + } + + public final void setType(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getKeyWord() { + return null; + } + + public final void setKeyWord(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + public LocationCarsWithRadius(@org.jetbrains.annotations.NotNull() + java.util.List coordinates, int radius, @org.jetbrains.annotations.NotNull() + java.lang.String type) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.kapt_metadata new file mode 100644 index 0000000000..e5a7d56850 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MatchRequestParam.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MatchRequestParam.java new file mode 100644 index 0000000000..f3e1b4c342 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MatchRequestParam.java @@ -0,0 +1,159 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010\u0006\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b#\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001BM\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0007\u0012\u0006\u0010\t\u001a\u00020\n\u0012\n\b\u0002\u0010\u000b\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\f\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\u0002\u0010\rJ\t\u0010$\u001a\u00020\u0003H\u00c6\u0003J\t\u0010%\u001a\u00020\u0003H\u00c6\u0003J\t\u0010&\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\'\u001a\u00020\u0007H\u00c6\u0003J\t\u0010(\u001a\u00020\u0007H\u00c6\u0003J\t\u0010)\u001a\u00020\nH\u00c6\u0003J\u000b\u0010*\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J\u000b\u0010+\u001a\u0004\u0018\u00010\u0003H\u00c6\u0003J]\u0010,\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u00072\b\b\u0002\u0010\t\u001a\u00020\n2\n\b\u0002\u0010\u000b\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\f\u001a\u0004\u0018\u00010\u0003H\u00c6\u0001J\u0013\u0010-\u001a\u00020.2\b\u0010/\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u00100\u001a\u00020\nH\u00d6\u0001J\t\u00101\u001a\u00020\u0003H\u00d6\u0001R\u001a\u0010\t\u001a\u00020\nX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000e\u0010\u000f\"\u0004\b\u0010\u0010\u0011R\u001a\u0010\u0005\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0012\u0010\u0013\"\u0004\b\u0014\u0010\u0015R\u001c\u0010\u000b\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0016\u0010\u0013\"\u0004\b\u0017\u0010\u0015R\u001c\u0010\f\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0018\u0010\u0013\"\u0004\b\u0019\u0010\u0015R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001a\u0010\u0013\"\u0004\b\u001b\u0010\u0015R\u001a\u0010\u0006\u001a\u00020\u0007X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001c\u0010\u001d\"\u0004\b\u001e\u0010\u001fR\u001a\u0010\b\u001a\u00020\u0007X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b \u0010\u001d\"\u0004\b!\u0010\u001fR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\"\u0010\u0013\"\u0004\b#\u0010\u0015\u00a8\u00062"}, d2 = {"Lcom/mogo/chat/model/bean/MatchRequestParam;", "", "nickName", "", "headImgUrl", "carInfo", "lat", "", "lon", "age", "", "cardIdSex", "cityName", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;DDILjava/lang/String;Ljava/lang/String;)V", "getAge", "()I", "setAge", "(I)V", "getCarInfo", "()Ljava/lang/String;", "setCarInfo", "(Ljava/lang/String;)V", "getCardIdSex", "setCardIdSex", "getCityName", "setCityName", "getHeadImgUrl", "setHeadImgUrl", "getLat", "()D", "setLat", "(D)V", "getLon", "setLon", "getNickName", "setNickName", "component1", "component2", "component3", "component4", "component5", "component6", "component7", "component8", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class MatchRequestParam { + @org.jetbrains.annotations.NotNull() + private java.lang.String nickName; + @org.jetbrains.annotations.NotNull() + private java.lang.String headImgUrl; + @org.jetbrains.annotations.NotNull() + private java.lang.String carInfo; + private double lat; + private double lon; + private int age; + @org.jetbrains.annotations.Nullable() + private java.lang.String cardIdSex; + @org.jetbrains.annotations.Nullable() + private java.lang.String cityName; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNickName() { + return null; + } + + public final void setNickName(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHeadImgUrl() { + return null; + } + + public final void setHeadImgUrl(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCarInfo() { + return null; + } + + public final void setCarInfo(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final double getLat() { + return 0.0; + } + + public final void setLat(double p0) { + } + + public final double getLon() { + return 0.0; + } + + public final void setLon(double p0) { + } + + public final int getAge() { + return 0; + } + + public final void setAge(int p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdSex() { + return null; + } + + public final void setCardIdSex(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCityName() { + return null; + } + + public final void setCityName(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + public MatchRequestParam(@org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo, double lat, double lon, int age, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdSex, @org.jetbrains.annotations.Nullable() + java.lang.String cityName) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component3() { + return null; + } + + public final double component4() { + return 0.0; + } + + public final double component5() { + return 0.0; + } + + public final int component6() { + return 0; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component7() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component8() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.MatchRequestParam copy(@org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo, double lat, double lon, int age, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdSex, @org.jetbrains.annotations.Nullable() + java.lang.String cityName) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MatchRequestParam.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MatchRequestParam.kapt_metadata new file mode 100644 index 0000000000..76688d47db Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MatchRequestParam.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Message.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Message.java new file mode 100644 index 0000000000..c2eace89db --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Message.java @@ -0,0 +1,204 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000:\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0007\n\u0002\u0010\u0006\n\u0002\b\u0005\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b#\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0003\b\u0086\b\u0018\u00002\u00020\u0001B\u0089\u0001\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0005\u0012\u0006\u0010\u0007\u001a\u00020\u0003\u0012\u0006\u0010\b\u001a\u00020\u0003\u0012\b\u0010\t\u001a\u0004\u0018\u00010\u0005\u0012\b\u0010\n\u001a\u0004\u0018\u00010\u0005\u0012\b\u0010\u000b\u001a\u0004\u0018\u00010\u0005\u0012\u0006\u0010\f\u001a\u00020\r\u0012\u0006\u0010\u000e\u001a\u00020\r\u0012\b\u0010\u000f\u001a\u0004\u0018\u00010\u0005\u0012\b\u0010\u0010\u001a\u0004\u0018\u00010\u0005\u0012\b\u0010\u0011\u001a\u0004\u0018\u00010\u0005\u0012\u000e\u0010\u0012\u001a\n\u0012\u0004\u0012\u00020\u0014\u0018\u00010\u0013\u00a2\u0006\u0002\u0010\u0015J\t\u0010(\u001a\u00020\u0003H\u00c6\u0003J\t\u0010)\u001a\u00020\rH\u00c6\u0003J\u000b\u0010*\u001a\u0004\u0018\u00010\u0005H\u00c6\u0003J\u000b\u0010+\u001a\u0004\u0018\u00010\u0005H\u00c6\u0003J\u000b\u0010,\u001a\u0004\u0018\u00010\u0005H\u00c6\u0003J\u0011\u0010-\u001a\n\u0012\u0004\u0012\u00020\u0014\u0018\u00010\u0013H\u00c6\u0003J\t\u0010.\u001a\u00020\u0005H\u00c6\u0003J\t\u0010/\u001a\u00020\u0005H\u00c6\u0003J\t\u00100\u001a\u00020\u0003H\u00c6\u0003J\t\u00101\u001a\u00020\u0003H\u00c6\u0003J\u000b\u00102\u001a\u0004\u0018\u00010\u0005H\u00c6\u0003J\u000b\u00103\u001a\u0004\u0018\u00010\u0005H\u00c6\u0003J\u000b\u00104\u001a\u0004\u0018\u00010\u0005H\u00c6\u0003J\t\u00105\u001a\u00020\rH\u00c6\u0003J\u00a9\u0001\u00106\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00052\b\b\u0002\u0010\u0007\u001a\u00020\u00032\b\b\u0002\u0010\b\u001a\u00020\u00032\n\b\u0002\u0010\t\u001a\u0004\u0018\u00010\u00052\n\b\u0002\u0010\n\u001a\u0004\u0018\u00010\u00052\n\b\u0002\u0010\u000b\u001a\u0004\u0018\u00010\u00052\b\b\u0002\u0010\f\u001a\u00020\r2\b\b\u0002\u0010\u000e\u001a\u00020\r2\n\b\u0002\u0010\u000f\u001a\u0004\u0018\u00010\u00052\n\b\u0002\u0010\u0010\u001a\u0004\u0018\u00010\u00052\n\b\u0002\u0010\u0011\u001a\u0004\u0018\u00010\u00052\u0010\b\u0002\u0010\u0012\u001a\n\u0012\u0004\u0012\u00020\u0014\u0018\u00010\u0013H\u00c6\u0001J\u0013\u00107\u001a\u0002082\b\u00109\u001a\u0004\u0018\u00010:H\u00d6\u0003J\t\u0010;\u001a\u00020\u0003H\u00d6\u0001J\t\u0010<\u001a\u00020\u0005H\u00d6\u0001R\u0013\u0010\u000b\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0016\u0010\u0017R\u0013\u0010\u0011\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0018\u0010\u0017R\u0013\u0010\u000f\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0019\u0010\u0017R\u0013\u0010\u0010\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001a\u0010\u0017R\u0013\u0010\n\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001b\u0010\u0017R\u0011\u0010\f\u001a\u00020\r\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001c\u0010\u001dR\u0011\u0010\u000e\u001a\u00020\r\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001e\u0010\u001dR\u0013\u0010\t\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\u001f\u0010\u0017R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b \u0010!R\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\"\u0010\u0017R\u0011\u0010\u0006\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b#\u0010\u0017R\u0011\u0010\u0007\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b$\u0010!R\u0019\u0010\u0012\u001a\n\u0012\u0004\u0012\u00020\u0014\u0018\u00010\u0013\u00a2\u0006\b\n\u0000\u001a\u0004\b%\u0010&R\u0011\u0010\b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\'\u0010!\u00a8\u0006="}, d2 = {"Lcom/mogo/chat/model/bean/Message;", "Ljava/io/Serializable;", "roomId", "", "snReceiver", "", "snSender", "status", "type", "nickName", "headImgUrl", "carInfo", "lat", "", "lon", "cardIdSex", "cityName", "cardIdAge", "teamMember", "", "Lcom/mogo/chat/model/bean/TeammateInfo;", "(ILjava/lang/String;Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;DDLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;)V", "getCarInfo", "()Ljava/lang/String;", "getCardIdAge", "getCardIdSex", "getCityName", "getHeadImgUrl", "getLat", "()D", "getLon", "getNickName", "getRoomId", "()I", "getSnReceiver", "getSnSender", "getStatus", "getTeamMember", "()Ljava/util/List;", "getType", "component1", "component10", "component11", "component12", "component13", "component14", "component2", "component3", "component4", "component5", "component6", "component7", "component8", "component9", "copy", "equals", "", "other", "", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class Message implements java.io.Serializable { + private final int roomId = 0; + @org.jetbrains.annotations.NotNull() + private final java.lang.String snReceiver = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String snSender = null; + private final int status = 0; + private final int type = 0; + @org.jetbrains.annotations.Nullable() + private final java.lang.String nickName = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String headImgUrl = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String carInfo = null; + private final double lat = 0.0; + private final double lon = 0.0; + @org.jetbrains.annotations.Nullable() + private final java.lang.String cardIdSex = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String cityName = null; + @org.jetbrains.annotations.Nullable() + private final java.lang.String cardIdAge = null; + @org.jetbrains.annotations.Nullable() + private final java.util.List teamMember = null; + + public final int getRoomId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnReceiver() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSnSender() { + return null; + } + + public final int getStatus() { + return 0; + } + + public final int getType() { + return 0; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getNickName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getHeadImgUrl() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCarInfo() { + return null; + } + + public final double getLat() { + return 0.0; + } + + public final double getLon() { + return 0.0; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdSex() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCityName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdAge() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.util.List getTeamMember() { + return null; + } + + public Message(int roomId, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + java.lang.String snSender, int status, int type, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl, @org.jetbrains.annotations.Nullable() + java.lang.String carInfo, double lat, double lon, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdSex, @org.jetbrains.annotations.Nullable() + java.lang.String cityName, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdAge, @org.jetbrains.annotations.Nullable() + java.util.List teamMember) { + super(); + } + + public final int component1() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component3() { + return null; + } + + public final int component4() { + return 0; + } + + public final int component5() { + return 0; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component6() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component7() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component8() { + return null; + } + + public final double component9() { + return 0.0; + } + + public final double component10() { + return 0.0; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component11() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component12() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String component13() { + return null; + } + + @org.jetbrains.annotations.Nullable() + public final java.util.List component14() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Message copy(int roomId, @org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + java.lang.String snSender, int status, int type, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl, @org.jetbrains.annotations.Nullable() + java.lang.String carInfo, double lat, double lon, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdSex, @org.jetbrains.annotations.Nullable() + java.lang.String cityName, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdAge, @org.jetbrains.annotations.Nullable() + java.util.List teamMember) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Message.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Message.kapt_metadata new file mode 100644 index 0000000000..b55e2bc4c5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Message.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MessageKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MessageKt.java new file mode 100644 index 0000000000..54d57692f5 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MessageKt.java @@ -0,0 +1,28 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0014\n\u0000\n\u0002\u0010\u000b\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\u001a\n\u0010\u0000\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u0003\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u0004\u001a\u00020\u0001*\u00020\u0002\u001a\n\u0010\u0005\u001a\u00020\u0006*\u00020\u0002\u00a8\u0006\u0007"}, d2 = {"isCall", "", "Lcom/mogo/chat/model/bean/Message;", "isMatch", "isVehicleTeam", "toSns", "Lcom/mogo/chat/model/bean/Sns;", "mogo-module-chat_debug"}) +public final class MessageKt { + + public static final boolean isMatch(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message $this$isMatch) { + return false; + } + + public static final boolean isCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message $this$isCall) { + return false; + } + + public static final boolean isVehicleTeam(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message $this$isVehicleTeam) { + return false; + } + + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.bean.Sns toSns(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message $this$toSns) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MessageKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MessageKt.kapt_metadata new file mode 100644 index 0000000000..9b28ab534f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/MessageKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/OnLineStatus.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/OnLineStatus.java new file mode 100644 index 0000000000..1cdb73b635 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/OnLineStatus.java @@ -0,0 +1,71 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +/** + * carOnLine:ACC ON状态 1:在线 2:不在线 + * onLine:是否隐身 1:在线 2:隐身 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005J\t\u0010\t\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\n\u001a\u00020\u0003H\u00c6\u0003J\u001d\u0010\u000b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\f\u001a\u00020\r2\b\u0010\u000e\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u000f\u001a\u00020\u0003H\u00d6\u0001J\t\u0010\u0010\u001a\u00020\u0011H\u00d6\u0001R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\b\u0010\u0007\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/chat/model/bean/OnLineStatus;", "", "carOnLine", "", "onLine", "(II)V", "getCarOnLine", "()I", "getOnLine", "component1", "component2", "copy", "equals", "", "other", "hashCode", "toString", "", "mogo-module-chat_debug"}) +public final class OnLineStatus { + private final int carOnLine = 0; + private final int onLine = 0; + + public final int getCarOnLine() { + return 0; + } + + public final int getOnLine() { + return 0; + } + + public OnLineStatus(int carOnLine, int onLine) { + super(); + } + + public final int component1() { + return 0; + } + + public final int component2() { + return 0; + } + + /** + * carOnLine:ACC ON状态 1:在线 2:不在线 + * onLine:是否隐身 1:在线 2:隐身 + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.OnLineStatus copy(int carOnLine, int onLine) { + return null; + } + + /** + * carOnLine:ACC ON状态 1:在线 2:不在线 + * onLine:是否隐身 1:在线 2:隐身 + */ + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + /** + * carOnLine:ACC ON状态 1:在线 2:不在线 + * onLine:是否隐身 1:在线 2:隐身 + */ + @java.lang.Override() + public int hashCode() { + return 0; + } + + /** + * carOnLine:ACC ON状态 1:在线 2:不在线 + * onLine:是否隐身 1:在线 2:隐身 + */ + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/OnLineStatus.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/OnLineStatus.kapt_metadata new file mode 100644 index 0000000000..f4aade9de4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/OnLineStatus.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/PlayUrl.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/PlayUrl.java new file mode 100644 index 0000000000..afac13b992 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/PlayUrl.java @@ -0,0 +1,47 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\f\u0018\u00002\u00020\u0001B\u001f\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0006R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\nR\u001a\u0010\u0005\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\b\"\u0004\b\f\u0010\nR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\r\u0010\b\"\u0004\b\u000e\u0010\n\u00a8\u0006\u000f"}, d2 = {"Lcom/mogo/chat/model/bean/PlayUrl;", "", "rtmp", "", "flv", "hls", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "getFlv", "()Ljava/lang/String;", "setFlv", "(Ljava/lang/String;)V", "getHls", "setHls", "getRtmp", "setRtmp", "mogo-module-chat_debug"}) +public final class PlayUrl { + @org.jetbrains.annotations.NotNull() + private java.lang.String rtmp; + @org.jetbrains.annotations.NotNull() + private java.lang.String flv; + @org.jetbrains.annotations.NotNull() + private java.lang.String hls; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getRtmp() { + return null; + } + + public final void setRtmp(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getFlv() { + return null; + } + + public final void setFlv(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHls() { + return null; + } + + public final void setHls(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public PlayUrl(@org.jetbrains.annotations.NotNull() + java.lang.String rtmp, @org.jetbrains.annotations.NotNull() + java.lang.String flv, @org.jetbrains.annotations.NotNull() + java.lang.String hls) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/PlayUrl.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/PlayUrl.kapt_metadata new file mode 100644 index 0000000000..21a485c3e8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/PlayUrl.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RealTimeLocationVo.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RealTimeLocationVo.java new file mode 100644 index 0000000000..b3a0a19a56 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RealTimeLocationVo.java @@ -0,0 +1,51 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0006\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005J\t\u0010\t\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\n\u001a\u00020\u0003H\u00c6\u0003J\u001d\u0010\u000b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\f\u001a\u00020\r2\b\u0010\u000e\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u000f\u001a\u00020\u0010H\u00d6\u0001J\t\u0010\u0011\u001a\u00020\u0012H\u00d6\u0001R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\b\u0010\u0007\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/chat/model/bean/RealTimeLocationVo;", "", "lon", "", "lat", "(DD)V", "getLat", "()D", "getLon", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "mogo-module-chat_debug"}) +public final class RealTimeLocationVo { + private final double lon = 0.0; + private final double lat = 0.0; + + public final double getLon() { + return 0.0; + } + + public final double getLat() { + return 0.0; + } + + public RealTimeLocationVo(double lon, double lat) { + super(); + } + + public final double component1() { + return 0.0; + } + + public final double component2() { + return 0.0; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.RealTimeLocationVo copy(double lon, double lat) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RealTimeLocationVo.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RealTimeLocationVo.kapt_metadata new file mode 100644 index 0000000000..49dd788e08 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RealTimeLocationVo.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Results.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Results.java new file mode 100644 index 0000000000..7925222cde --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Results.java @@ -0,0 +1,16 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u000e\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0006\u0018\u0000*\u0006\b\u0000\u0010\u0001 \u00012\u00020\u0002B\r\u0012\u0006\u0010\u0003\u001a\u00028\u0000\u00a2\u0006\u0002\u0010\u0004R\u0013\u0010\u0003\u001a\u00028\u0000\u00a2\u0006\n\n\u0002\u0010\u0007\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\b"}, d2 = {"Lcom/mogo/chat/model/bean/Results;", "T", "", "t", "(Ljava/lang/Object;)V", "getT", "()Ljava/lang/Object;", "Ljava/lang/Object;", "mogo-module-chat_debug"}) +public final class Results { + private final T t = null; + + public final T getT() { + return null; + } + + public Results(T t) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Results.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Results.kapt_metadata new file mode 100644 index 0000000000..22fa39525b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Results.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RoomInfo.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RoomInfo.java new file mode 100644 index 0000000000..1db06d0402 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RoomInfo.java @@ -0,0 +1,19 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0005\u0018\u00002\u00020\u0001B\u000f\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\u0004\u00a8\u0006\b"}, d2 = {"Lcom/mogo/chat/model/bean/RoomInfo;", "", "roomId", "", "(I)V", "getRoomId", "()I", "setRoomId", "mogo-module-chat_debug"}) +public final class RoomInfo { + private int roomId; + + public final int getRoomId() { + return 0; + } + + public final void setRoomId(int p0) { + } + + public RoomInfo(int roomId) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RoomInfo.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RoomInfo.kapt_metadata new file mode 100644 index 0000000000..00a48d219c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/RoomInfo.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Sns.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Sns.java new file mode 100644 index 0000000000..77235ab238 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Sns.java @@ -0,0 +1,178 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0004\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u0006\n\u0002\b0\u0018\u00002\u00020\u0001B#\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\b\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u0005\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\u0002\u0010\u0006BE\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0007\u001a\u00020\b\u0012\b\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\t\u001a\u0004\u0018\u00010\u0003\u0012\b\u0010\u0005\u001a\u0004\u0018\u00010\u0003\u0012\u0006\u0010\n\u001a\u00020\u000b\u0012\u0006\u0010\f\u001a\u00020\u000b\u00a2\u0006\u0002\u0010\rBY\b\u0016\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u0005\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\t\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u000e\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u000f\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u0010\u001a\u0004\u0018\u00010\u0003\u00a2\u0006\u0002\u0010\u0011Bq\b\u0016\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0012\u001a\u00020\b\u0012\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u0005\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\t\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u0013\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u000f\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u0014\u001a\u0004\u0018\u00010\u0003\u0012\u0006\u0010\n\u001a\u00020\u000b\u0012\u0006\u0010\f\u001a\u00020\u000b\u00a2\u0006\u0002\u0010\u0015J\b\u0010:\u001a\u00020\u0003H\u0016R\u001a\u0010\u0016\u001a\u00020\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0017\u0010\u0018\"\u0004\b\u0019\u0010\u001aR\u001a\u0010\u001b\u001a\u00020\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001c\u0010\u0018\"\u0004\b\u001d\u0010\u001aR\u001c\u0010\t\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001e\u0010\u001f\"\u0004\b \u0010!R\u001c\u0010\u0014\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\"\u0010\u001f\"\u0004\b#\u0010!R\u001c\u0010\u0013\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b$\u0010\u001f\"\u0004\b%\u0010!R\u001c\u0010\u000f\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b&\u0010\u001f\"\u0004\b\'\u0010!R\u001a\u0010(\u001a\u00020\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b)\u0010\u0018\"\u0004\b*\u0010\u001aR\u001c\u0010\u0005\u001a\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b+\u0010\u001f\"\u0004\b,\u0010!R\u001a\u0010\n\u001a\u00020\u000bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b-\u0010.\"\u0004\b/\u00100R\u001a\u0010\f\u001a\u00020\u000bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b1\u0010.\"\u0004\b2\u00100R(\u0010\u0004\u001a\u0004\u0018\u00010\u00032\b\u00103\u001a\u0004\u0018\u00010\u0003@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b4\u0010\u001f\"\u0004\b5\u0010!R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b6\u0010\u001f\"\u0004\b7\u0010!R\u001a\u0010\u0007\u001a\u00020\bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b8\u0010\u0018\"\u0004\b9\u0010\u001a\u00a8\u0006;"}, d2 = {"Lcom/mogo/chat/model/bean/Sns;", "Ljava/io/Serializable;", "sn", "", "nickName", "headImgUrl", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "userId", "", "carInfo", "lat", "", "lon", "(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;DD)V", "gender", "cityName", "userAge", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "roomId", "cardIdSex", "cardIdAge", "(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;DD)V", "canLive", "getCanLive", "()I", "setCanLive", "(I)V", "canVoice", "getCanVoice", "setCanVoice", "getCarInfo", "()Ljava/lang/String;", "setCarInfo", "(Ljava/lang/String;)V", "getCardIdAge", "setCardIdAge", "getCardIdSex", "setCardIdSex", "getCityName", "setCityName", "direction", "getDirection", "setDirection", "getHeadImgUrl", "setHeadImgUrl", "getLat", "()D", "setLat", "(D)V", "getLon", "setLon", "value", "getNickName", "setNickName", "getSn", "setSn", "getUserId", "setUserId", "toString", "mogo-module-chat_debug"}) +public final class Sns implements java.io.Serializable { + @org.jetbrains.annotations.NotNull() + private java.lang.String sn = ""; + private double lat = 0.0; + private double lon = 0.0; + private int direction = 0; + private int canLive = 0; + private int canVoice = 1; + @org.jetbrains.annotations.Nullable() + private java.lang.String nickName; + private int userId = 0; + @org.jetbrains.annotations.Nullable() + private java.lang.String headImgUrl; + @org.jetbrains.annotations.Nullable() + private java.lang.String carInfo; + @org.jetbrains.annotations.Nullable() + private java.lang.String cardIdSex; + @org.jetbrains.annotations.Nullable() + private java.lang.String cityName; + @org.jetbrains.annotations.Nullable() + private java.lang.String cardIdAge; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + public final void setSn(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final double getLat() { + return 0.0; + } + + public final void setLat(double p0) { + } + + public final double getLon() { + return 0.0; + } + + public final void setLon(double p0) { + } + + public final int getDirection() { + return 0; + } + + public final void setDirection(int p0) { + } + + public final int getCanLive() { + return 0; + } + + public final void setCanLive(int p0) { + } + + public final int getCanVoice() { + return 0; + } + + public final void setCanVoice(int p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getNickName() { + return null; + } + + public final void setNickName(@org.jetbrains.annotations.Nullable() + java.lang.String value) { + } + + public final int getUserId() { + return 0; + } + + public final void setUserId(int p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getHeadImgUrl() { + return null; + } + + public final void setHeadImgUrl(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCarInfo() { + return null; + } + + public final void setCarInfo(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdSex() { + return null; + } + + public final void setCardIdSex(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCityName() { + return null; + } + + public final void setCityName(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getCardIdAge() { + return null; + } + + public final void setCardIdAge(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + public Sns(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl) { + super(); + } + + public Sns(@org.jetbrains.annotations.NotNull() + java.lang.String sn, int userId, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.Nullable() + java.lang.String carInfo, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl, double lat, double lon) { + super(); + } + + /** + * 可能会创建空sns,在ChatService的onReceive里面的有此需求 + */ + public Sns(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl, @org.jetbrains.annotations.Nullable() + java.lang.String carInfo, @org.jetbrains.annotations.Nullable() + java.lang.String gender, @org.jetbrains.annotations.Nullable() + java.lang.String cityName, @org.jetbrains.annotations.Nullable() + java.lang.String userAge) { + super(); + } + + public Sns(@org.jetbrains.annotations.NotNull() + java.lang.String sn, int roomId, @org.jetbrains.annotations.Nullable() + java.lang.String nickName, @org.jetbrains.annotations.Nullable() + java.lang.String headImgUrl, @org.jetbrains.annotations.Nullable() + java.lang.String carInfo, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdSex, @org.jetbrains.annotations.Nullable() + java.lang.String cityName, @org.jetbrains.annotations.Nullable() + java.lang.String cardIdAge, double lat, double lon) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Sns.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Sns.kapt_metadata new file mode 100644 index 0000000000..0c4489ce71 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/Sns.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SocketMsg.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SocketMsg.java new file mode 100644 index 0000000000..b27e545fd9 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SocketMsg.java @@ -0,0 +1,44 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u000e\u0018\u00002\u00020\u0001B\u0019\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\b\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u00a2\u0006\u0002\u0010\u0006B\u001f\b\u0016\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0007\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\bR\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\t\u0010\n\"\u0004\b\u000b\u0010\fR\u001a\u0010\u0007\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\r\u0010\n\"\u0004\b\u000e\u0010\fR\u001c\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000f\u0010\u0010\"\u0004\b\u0011\u0010\u0012\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/chat/model/bean/SocketMsg;", "", "msgType", "", "sn", "", "(ILjava/lang/String;)V", "roomId", "(ILjava/lang/String;I)V", "getMsgType", "()I", "setMsgType", "(I)V", "getRoomId", "setRoomId", "getSn", "()Ljava/lang/String;", "setSn", "(Ljava/lang/String;)V", "mogo-module-chat_debug"}) +public final class SocketMsg { + private int msgType = 0; + @org.jetbrains.annotations.Nullable() + private java.lang.String sn; + private int roomId = 0; + + public final int getMsgType() { + return 0; + } + + public final void setMsgType(int p0) { + } + + @org.jetbrains.annotations.Nullable() + public final java.lang.String getSn() { + return null; + } + + public final void setSn(@org.jetbrains.annotations.Nullable() + java.lang.String p0) { + } + + public final int getRoomId() { + return 0; + } + + public final void setRoomId(int p0) { + } + + public SocketMsg(int msgType, @org.jetbrains.annotations.Nullable() + java.lang.String sn) { + super(); + } + + public SocketMsg(int msgType, @org.jetbrains.annotations.NotNull() + java.lang.String sn, int roomId) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SocketMsg.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SocketMsg.kapt_metadata new file mode 100644 index 0000000000..ca399b8bd8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SocketMsg.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfig.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfig.java new file mode 100644 index 0000000000..13194bb88d --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfig.java @@ -0,0 +1,109 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +/** + * image: String //图片地址 + * displayTime: Int //Splash页面图片显示时间 + * effectiveFlag: Long //授权配置 + * content: String //语音内容 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\t\n\u0002\b\u000f\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\b\u0018\u00002\u00020\u0001B%\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\tJ\t\u0010\u0011\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0012\u001a\u00020\u0005H\u00c6\u0003J\t\u0010\u0013\u001a\u00020\u0007H\u00c6\u0003J\t\u0010\u0014\u001a\u00020\u0003H\u00c6\u0003J1\u0010\u0015\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\u0016\u001a\u00020\u00172\b\u0010\u0018\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0019\u001a\u00020\u0005H\u00d6\u0001J\t\u0010\u001a\u001a\u00020\u0003H\u00d6\u0001R\u0011\u0010\b\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0011\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\b\n\u0000\u001a\u0004\b\f\u0010\rR\u0011\u0010\u0006\u001a\u00020\u0007\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\u000fR\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\u000b\u00a8\u0006\u001b"}, d2 = {"Lcom/mogo/chat/model/bean/SplashConfig;", "", "image", "", "displayTime", "", "effectiveFlag", "", "content", "(Ljava/lang/String;IJLjava/lang/String;)V", "getContent", "()Ljava/lang/String;", "getDisplayTime", "()I", "getEffectiveFlag", "()J", "getImage", "component1", "component2", "component3", "component4", "copy", "equals", "", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class SplashConfig { + @org.jetbrains.annotations.NotNull() + private final java.lang.String image = null; + private final int displayTime = 0; + private final long effectiveFlag = 0L; + @org.jetbrains.annotations.NotNull() + private final java.lang.String content = null; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getImage() { + return null; + } + + public final int getDisplayTime() { + return 0; + } + + public final long getEffectiveFlag() { + return 0L; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getContent() { + return null; + } + + public SplashConfig(@org.jetbrains.annotations.NotNull() + java.lang.String image, int displayTime, long effectiveFlag, @org.jetbrains.annotations.NotNull() + java.lang.String content) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + public final int component2() { + return 0; + } + + public final long component3() { + return 0L; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component4() { + return null; + } + + /** + * image: String //图片地址 + * displayTime: Int //Splash页面图片显示时间 + * effectiveFlag: Long //授权配置 + * content: String //语音内容 + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.SplashConfig copy(@org.jetbrains.annotations.NotNull() + java.lang.String image, int displayTime, long effectiveFlag, @org.jetbrains.annotations.NotNull() + java.lang.String content) { + return null; + } + + /** + * image: String //图片地址 + * displayTime: Int //Splash页面图片显示时间 + * effectiveFlag: Long //授权配置 + * content: String //语音内容 + */ + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + /** + * image: String //图片地址 + * displayTime: Int //Splash页面图片显示时间 + * effectiveFlag: Long //授权配置 + * content: String //语音内容 + */ + @java.lang.Override() + public int hashCode() { + return 0; + } + + /** + * image: String //图片地址 + * displayTime: Int //Splash页面图片显示时间 + * effectiveFlag: Long //授权配置 + * content: String //语音内容 + */ + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfig.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfig.kapt_metadata new file mode 100644 index 0000000000..953b2f4da9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfig.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfigRequest.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfigRequest.java new file mode 100644 index 0000000000..8d7011cca5 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfigRequest.java @@ -0,0 +1,61 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0005J\t\u0010\t\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\n\u001a\u00020\u0003H\u00c6\u0003J\u001d\u0010\u000b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\f\u001a\u00020\r2\b\u0010\u000e\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u000f\u001a\u00020\u0010H\u00d6\u0001J\t\u0010\u0011\u001a\u00020\u0003H\u00d6\u0001R\u0011\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007R\u0011\u0010\u0004\u001a\u00020\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\b\u0010\u0007\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/chat/model/bean/SplashConfigRequest;", "", "dataSource", "", "serverType", "(Ljava/lang/String;Ljava/lang/String;)V", "getDataSource", "()Ljava/lang/String;", "getServerType", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "mogo-module-chat_debug"}) +public final class SplashConfigRequest { + @org.jetbrains.annotations.NotNull() + private final java.lang.String dataSource = null; + @org.jetbrains.annotations.NotNull() + private final java.lang.String serverType = null; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getDataSource() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getServerType() { + return null; + } + + public SplashConfigRequest(@org.jetbrains.annotations.NotNull() + java.lang.String dataSource, @org.jetbrains.annotations.NotNull() + java.lang.String serverType) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.SplashConfigRequest copy(@org.jetbrains.annotations.NotNull() + java.lang.String dataSource, @org.jetbrains.annotations.NotNull() + java.lang.String serverType) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfigRequest.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfigRequest.kapt_metadata new file mode 100644 index 0000000000..b8e25e1ccd Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/SplashConfigRequest.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TeammateInfo.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TeammateInfo.java new file mode 100644 index 0000000000..99a0261ccc --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TeammateInfo.java @@ -0,0 +1,209 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +/** + * created by wujifei on 2020/11/17 11:43 + * describe:队员信息 + */ +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0003\n\u0002\u0010\u0006\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0002\b-\b\u0086\b\u0018\u00002\u00020\u0001BU\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0003\u0012\u0006\u0010\t\u001a\u00020\u0003\u0012\u0006\u0010\n\u001a\u00020\u000b\u0012\u0006\u0010\f\u001a\u00020\u000b\u0012\u0006\u0010\r\u001a\u00020\u0003\u0012\u0006\u0010\u000e\u001a\u00020\u000f\u00a2\u0006\u0002\u0010\u0010J\t\u0010-\u001a\u00020\u0003H\u00c6\u0003J\t\u0010.\u001a\u00020\u000fH\u00c6\u0003J\t\u0010/\u001a\u00020\u0003H\u00c6\u0003J\t\u00100\u001a\u00020\u0003H\u00c6\u0003J\t\u00101\u001a\u00020\u0007H\u00c6\u0003J\t\u00102\u001a\u00020\u0003H\u00c6\u0003J\t\u00103\u001a\u00020\u0003H\u00c6\u0003J\t\u00104\u001a\u00020\u000bH\u00c6\u0003J\t\u00105\u001a\u00020\u000bH\u00c6\u0003J\t\u00106\u001a\u00020\u0003H\u00c6\u0003Jm\u00107\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u00032\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u00032\b\b\u0002\u0010\t\u001a\u00020\u00032\b\b\u0002\u0010\n\u001a\u00020\u000b2\b\b\u0002\u0010\f\u001a\u00020\u000b2\b\b\u0002\u0010\r\u001a\u00020\u00032\b\b\u0002\u0010\u000e\u001a\u00020\u000fH\u00c6\u0001J\u0013\u00108\u001a\u00020\u000f2\b\u00109\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010:\u001a\u00020\u0007H\u00d6\u0001J\t\u0010;\u001a\u00020\u0003H\u00d6\u0001R\u001a\u0010\r\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0011\u0010\u0012\"\u0004\b\u0013\u0010\u0014R\u001a\u0010\u0006\u001a\u00020\u0007X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0015\u0010\u0016\"\u0004\b\u0017\u0010\u0018R\u001a\u0010\b\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0019\u0010\u0012\"\u0004\b\u001a\u0010\u0014R\u001a\u0010\t\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001b\u0010\u0012\"\u0004\b\u001c\u0010\u0014R\u001a\u0010\u0005\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001d\u0010\u0012\"\u0004\b\u001e\u0010\u0014R\u001a\u0010\n\u001a\u00020\u000bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u001f\u0010 \"\u0004\b!\u0010\"R\u001a\u0010\f\u001a\u00020\u000bX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b#\u0010 \"\u0004\b$\u0010\"R\u001a\u0010\u0004\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b%\u0010\u0012\"\u0004\b&\u0010\u0014R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\'\u0010\u0012\"\u0004\b(\u0010\u0014R\u001a\u0010\u000e\u001a\u00020\u000fX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b)\u0010*\"\u0004\b+\u0010,\u00a8\u0006<"}, d2 = {"Lcom/mogo/chat/model/bean/TeammateInfo;", "", "sn", "", "nickName", "headImgUrl", "cardIdAge", "", "cardIdSex", "cityName", "lat", "", "lon", "carInfo", "vehicleTeamLeader", "", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;DDLjava/lang/String;Z)V", "getCarInfo", "()Ljava/lang/String;", "setCarInfo", "(Ljava/lang/String;)V", "getCardIdAge", "()I", "setCardIdAge", "(I)V", "getCardIdSex", "setCardIdSex", "getCityName", "setCityName", "getHeadImgUrl", "setHeadImgUrl", "getLat", "()D", "setLat", "(D)V", "getLon", "setLon", "getNickName", "setNickName", "getSn", "setSn", "getVehicleTeamLeader", "()Z", "setVehicleTeamLeader", "(Z)V", "component1", "component10", "component2", "component3", "component4", "component5", "component6", "component7", "component8", "component9", "copy", "equals", "other", "hashCode", "toString", "mogo-module-chat_debug"}) +public final class TeammateInfo { + @org.jetbrains.annotations.NotNull() + private java.lang.String sn; + @org.jetbrains.annotations.NotNull() + private java.lang.String nickName; + @org.jetbrains.annotations.NotNull() + private java.lang.String headImgUrl; + private int cardIdAge; + @org.jetbrains.annotations.NotNull() + private java.lang.String cardIdSex; + @org.jetbrains.annotations.NotNull() + private java.lang.String cityName; + private double lat; + private double lon; + @org.jetbrains.annotations.NotNull() + private java.lang.String carInfo; + private boolean vehicleTeamLeader; + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getSn() { + return null; + } + + public final void setSn(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getNickName() { + return null; + } + + public final void setNickName(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getHeadImgUrl() { + return null; + } + + public final void setHeadImgUrl(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final int getCardIdAge() { + return 0; + } + + public final void setCardIdAge(int p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCardIdSex() { + return null; + } + + public final void setCardIdSex(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCityName() { + return null; + } + + public final void setCityName(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final double getLat() { + return 0.0; + } + + public final void setLat(double p0) { + } + + public final double getLon() { + return 0.0; + } + + public final void setLon(double p0) { + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getCarInfo() { + return null; + } + + public final void setCarInfo(@org.jetbrains.annotations.NotNull() + java.lang.String p0) { + } + + public final boolean getVehicleTeamLeader() { + return false; + } + + public final void setVehicleTeamLeader(boolean p0) { + } + + public TeammateInfo(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, int cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, double lat, double lon, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo, boolean vehicleTeamLeader) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component2() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component3() { + return null; + } + + public final int component4() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component5() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component6() { + return null; + } + + public final double component7() { + return 0.0; + } + + public final double component8() { + return 0.0; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component9() { + return null; + } + + public final boolean component10() { + return false; + } + + /** + * created by wujifei on 2020/11/17 11:43 + * describe:队员信息 + */ + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.TeammateInfo copy(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + java.lang.String nickName, @org.jetbrains.annotations.NotNull() + java.lang.String headImgUrl, int cardIdAge, @org.jetbrains.annotations.NotNull() + java.lang.String cardIdSex, @org.jetbrains.annotations.NotNull() + java.lang.String cityName, double lat, double lon, @org.jetbrains.annotations.NotNull() + java.lang.String carInfo, boolean vehicleTeamLeader) { + return null; + } + + /** + * created by wujifei on 2020/11/17 11:43 + * describe:队员信息 + */ + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + /** + * created by wujifei on 2020/11/17 11:43 + * describe:队员信息 + */ + @java.lang.Override() + public int hashCode() { + return 0; + } + + /** + * created by wujifei on 2020/11/17 11:43 + * describe:队员信息 + */ + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TeammateInfo.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TeammateInfo.kapt_metadata new file mode 100644 index 0000000000..a849641fe4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TeammateInfo.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicGuide.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicGuide.java new file mode 100644 index 0000000000..ed2783c7d3 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicGuide.java @@ -0,0 +1,51 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001B\u001d\u0012\u0016\u0010\u0002\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005\u00a2\u0006\u0002\u0010\u0006J\u0019\u0010\n\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005H\u00c6\u0003J#\u0010\u000b\u001a\u00020\u00002\u0018\b\u0002\u0010\u0002\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005H\u00c6\u0001J\u0013\u0010\f\u001a\u00020\r2\b\u0010\u000e\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u000f\u001a\u00020\u0010H\u00d6\u0001J\t\u0010\u0011\u001a\u00020\u0004H\u00d6\u0001R*\u0010\u0002\u001a\u0012\u0012\u0004\u0012\u00020\u00040\u0003j\b\u0012\u0004\u0012\u00020\u0004`\u0005X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0007\u0010\b\"\u0004\b\t\u0010\u0006\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/chat/model/bean/TopicGuide;", "", "topicContent", "Ljava/util/ArrayList;", "", "Lkotlin/collections/ArrayList;", "(Ljava/util/ArrayList;)V", "getTopicContent", "()Ljava/util/ArrayList;", "setTopicContent", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "mogo-module-chat_debug"}) +public final class TopicGuide { + @org.jetbrains.annotations.NotNull() + private java.util.ArrayList topicContent; + + @org.jetbrains.annotations.NotNull() + public final java.util.ArrayList getTopicContent() { + return null; + } + + public final void setTopicContent(@org.jetbrains.annotations.NotNull() + java.util.ArrayList p0) { + } + + public TopicGuide(@org.jetbrains.annotations.NotNull() + java.util.ArrayList topicContent) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.util.ArrayList component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.TopicGuide copy(@org.jetbrains.annotations.NotNull() + java.util.ArrayList topicContent) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicGuide.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicGuide.kapt_metadata new file mode 100644 index 0000000000..2b449940bb Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicGuide.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicRequest.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicRequest.java new file mode 100644 index 0000000000..9b4ba67414 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicRequest.java @@ -0,0 +1,51 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\t\u0010\b\u001a\u00020\u0003H\u00c6\u0003J\u0013\u0010\t\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u0003H\u00c6\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\r\u001a\u00020\u000eH\u00d6\u0001J\t\u0010\u000f\u001a\u00020\u0010H\u00d6\u0001R\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0005\u0010\u0006\"\u0004\b\u0007\u0010\u0004\u00a8\u0006\u0011"}, d2 = {"Lcom/mogo/chat/model/bean/TopicRequest;", "", "topicGuide", "Lcom/mogo/chat/model/bean/TopicGuide;", "(Lcom/mogo/chat/model/bean/TopicGuide;)V", "getTopicGuide", "()Lcom/mogo/chat/model/bean/TopicGuide;", "setTopicGuide", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "", "mogo-module-chat_debug"}) +public final class TopicRequest { + @org.jetbrains.annotations.NotNull() + private com.mogo.chat.model.bean.TopicGuide topicGuide; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.TopicGuide getTopicGuide() { + return null; + } + + public final void setTopicGuide(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.TopicGuide p0) { + } + + public TopicRequest(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.TopicGuide topicGuide) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.TopicGuide component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.TopicRequest copy(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.TopicGuide topicGuide) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicRequest.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicRequest.kapt_metadata new file mode 100644 index 0000000000..a78f5b2036 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/TopicRequest.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySns.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySns.java new file mode 100644 index 0000000000..c580d2b30d --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySns.java @@ -0,0 +1,47 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0013\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003\u00a2\u0006\u0002\u0010\u0005J\u000f\u0010\b\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003H\u00c6\u0003J\u0019\u0010\t\u001a\u00020\u00002\u000e\b\u0002\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003H\u00c6\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\r\u001a\u00020\u000eH\u00d6\u0001J\t\u0010\u000f\u001a\u00020\u0010H\u00d6\u0001R\u0017\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003\u00a2\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007\u00a8\u0006\u0011"}, d2 = {"Lcom/mogo/chat/model/bean/UserInfoBySns;", "", "info", "", "Lcom/mogo/chat/model/bean/Info;", "(Ljava/util/List;)V", "getInfo", "()Ljava/util/List;", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "", "mogo-module-chat_debug"}) +public final class UserInfoBySns { + @org.jetbrains.annotations.NotNull() + private final java.util.List info = null; + + @org.jetbrains.annotations.NotNull() + public final java.util.List getInfo() { + return null; + } + + public UserInfoBySns(@org.jetbrains.annotations.NotNull() + java.util.List info) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.util.List component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.UserInfoBySns copy(@org.jetbrains.annotations.NotNull() + java.util.List info) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object p0) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySns.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySns.kapt_metadata new file mode 100644 index 0000000000..3b70c0044b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySns.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.java new file mode 100644 index 0000000000..dfd1af4a84 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.java @@ -0,0 +1,23 @@ +package com.mogo.chat.model.bean; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0010\u000e\n\u0002\b\u0005\u0018\u00002\u00020\u0001B\u0017\b\u0016\u0012\u000e\u0010\u0002\u001a\n\u0012\u0004\u0012\u00020\u0004\u0018\u00010\u0003\u00a2\u0006\u0002\u0010\u0005R\"\u0010\u0002\u001a\n\u0012\u0004\u0012\u00020\u0004\u0018\u00010\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0006\u0010\u0007\"\u0004\b\b\u0010\u0005\u00a8\u0006\t"}, d2 = {"Lcom/mogo/chat/model/bean/UserInfoBySnsRequest;", "", "sns", "", "", "(Ljava/util/List;)V", "getSns", "()Ljava/util/List;", "setSns", "mogo-module-chat_debug"}) +public final class UserInfoBySnsRequest { + @org.jetbrains.annotations.Nullable() + private java.util.List sns; + + @org.jetbrains.annotations.Nullable() + public final java.util.List getSns() { + return null; + } + + public final void setSns(@org.jetbrains.annotations.Nullable() + java.util.List p0) { + } + + public UserInfoBySnsRequest(@org.jetbrains.annotations.Nullable() + java.util.List sns) { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.kapt_metadata new file mode 100644 index 0000000000..c7b6e77167 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/ChatController.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/ChatController.java new file mode 100644 index 0000000000..c493b903d1 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/ChatController.java @@ -0,0 +1,49 @@ +package com.mogo.chat.model.control; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000J\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u00c6\u0002\u0018\u00002\u00020\u00012\u00020\u0002B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0003JQ\u0010\b\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\u00072!\u0010\r\u001a\u001d\u0012\u0013\u0012\u00110\u0007\u00a2\u0006\f\b\u000f\u0012\b\b\u0010\u0012\u0004\b\b(\u0006\u0012\u0004\u0012\u00020\t0\u000e2\u0016\u0010\u0011\u001a\u0012\u0012\b\u0012\u00060\u0012j\u0002`\u0013\u0012\u0004\u0012\u00020\t0\u000eJ\u000e\u0010\u0014\u001a\u00020\t2\u0006\u0010\u0015\u001a\u00020\u0007J\b\u0010\u0016\u001a\u00020\tH\u0016J\b\u0010\u0017\u001a\u00020\tH\u0002J\b\u0010\u0018\u001a\u00020\tH\u0002JN\u0010\u0019\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u000b2\u0006\u0010\u001a\u001a\u00020\u00072\u0010\b\u0002\u0010\r\u001a\n\u0012\u0004\u0012\u00020\t\u0018\u00010\u001b2\u001a\b\u0002\u0010\u0011\u001a\u0014\u0012\b\u0012\u00060\u0012j\u0002`\u0013\u0012\u0004\u0012\u00020\t\u0018\u00010\u000e2\b\b\u0002\u0010\u001c\u001a\u00020\u0007JK\u0010\u001d\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u000b2!\u0010\r\u001a\u001d\u0012\u0013\u0012\u00110\u0007\u00a2\u0006\f\b\u000f\u0012\b\b\u0010\u0012\u0004\b\b(\u0006\u0012\u0004\u0012\u00020\t0\u000e2\u0016\u0010\u0011\u001a\u0012\u0012\b\u0012\u00060\u0012j\u0002`\u0013\u0012\u0004\u0012\u00020\t0\u000eH\u0002J\b\u0010\u001e\u001a\u00020\tH\u0002J\u0006\u0010\u001f\u001a\u00020\tR\u000e\u0010\u0004\u001a\u00020\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006 "}, d2 = {"Lcom/mogo/chat/model/control/ChatController;", "Lcom/mogo/chat/base/BaseController;", "Lcom/mogo/chat/common/gme/IGMEEventCallBack;", "()V", "isPlayingCallingAudio", "", "roomId", "", "call", "", "snReceiver", "", "mRoomID", "onSuccess", "Lkotlin/Function1;", "Lkotlin/ParameterName;", "name", "onError", "Ljava/lang/Exception;", "Lkotlin/Exception;", "enterRoom", "mRoomId", "gmeHangUp", "playCallingAudio", "requestAudioFocus", "requestConnectStatus", "status", "Lkotlin/Function0;", "_roomId", "requestRoomInfo", "stopCallingAudio", "updateExitRoomStatus", "mogo-module-chat_debug"}) +public final class ChatController extends com.mogo.chat.base.BaseController implements com.mogo.chat.common.gme.IGMEEventCallBack { + private static int roomId = 0; + private static boolean isPlayingCallingAudio = false; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.control.ChatController INSTANCE = null; + + public final void call(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, int mRoomID, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + private final void requestRoomInfo(java.lang.String snReceiver, kotlin.jvm.functions.Function1 onSuccess, kotlin.jvm.functions.Function1 onError) { + } + + private final void playCallingAudio() { + } + + private final void stopCallingAudio() { + } + + public final void enterRoom(int mRoomId) { + } + + private final void requestAudioFocus() { + } + + @java.lang.Override() + public void gmeHangUp() { + } + + public final void requestConnectStatus(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, int status, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError, int _roomId) { + } + + public final void updateExitRoomStatus() { + } + + private ChatController() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/ChatController.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/ChatController.kapt_metadata new file mode 100644 index 0000000000..b47e062338 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/ChatController.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/MatchController.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/MatchController.java new file mode 100644 index 0000000000..6b6f06b5eb --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/MatchController.java @@ -0,0 +1,57 @@ +package com.mogo.chat.model.control; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000R\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0015\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\b\b\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0018\u0010\u0015\u001a\u00020\u00132\u0010\b\u0002\u0010\u0016\u001a\n\u0012\u0004\u0012\u00020\u0013\u0018\u00010\u0012J\u0006\u0010\u0017\u001a\u00020\u0013J\b\u0010\u0018\u001a\u00020\u0013H\u0002J\u0006\u0010\u0019\u001a\u00020\u0013JD\u0010\u001a\u001a\u00020\u00132\b\u0010\u001b\u001a\u0004\u0018\u00010\u001c2\f\u0010\u0016\u001a\b\u0012\u0004\u0012\u00020\u00130\u00122\u0016\u0010\u001d\u001a\u0012\u0012\b\u0012\u00060\u001fj\u0002` \u0012\u0004\u0012\u00020\u00130\u001e2\f\u0010\u0011\u001a\b\u0012\u0004\u0012\u00020\u00130\u0012J\b\u0010!\u001a\u00020\u0013H\u0002J\b\u0010\"\u001a\u00020\u0013H\u0002J\b\u0010#\u001a\u00020\u0013H\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\f\u001a\u00020\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\r\u001a\u00020\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u000e\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0010\u001a\u00020\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0011\u001a\n\u0012\u0004\u0012\u00020\u0013\u0018\u00010\u0012X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0014\u001a\u0004\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006$"}, d2 = {"Lcom/mogo/chat/model/control/MatchController;", "Lcom/mogo/chat/base/BaseController;", "()V", "DEFAULT_MATCH_TIME_OUT_TIME", "", "MAX_AMOUNT_OF_CANCEL_MATCHING", "", "arrayOfVoiceSources", "", "cancelMatchCount", "isMatching", "", "isPlayingMatchingAudio", "isRecordingTimeOut", "retryJob", "Lkotlinx/coroutines/Job;", "startMatchTime", "timeOut", "Lkotlin/Function0;", "", "timeOutJob", "cancelMatch", "onSuccess", "matchTimeOutFromNet", "playMatchingAudio", "resetMatchStatus", "startMatch", "invokeFlag", "", "onError", "Lkotlin/Function1;", "Ljava/lang/Exception;", "Lkotlin/Exception;", "startTimeOutRecord", "stopMatchingAudio", "stopTimeOutRecord", "mogo-module-chat_debug"}) +public final class MatchController extends com.mogo.chat.base.BaseController { + private static final int MAX_AMOUNT_OF_CANCEL_MATCHING = 5; + private static int cancelMatchCount = 0; + private static kotlinx.coroutines.Job timeOutJob; + private static kotlinx.coroutines.Job retryJob; + private static final long DEFAULT_MATCH_TIME_OUT_TIME = 30000L; + private static int[] arrayOfVoiceSources; + private static boolean isMatching = false; + private static kotlin.jvm.functions.Function0 timeOut; + private static long startMatchTime = 0L; + private static boolean isRecordingTimeOut = false; + private static boolean isPlayingMatchingAudio = false; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.control.MatchController INSTANCE = null; + + public final void resetMatchStatus() { + } + + public final void startMatch(@org.jetbrains.annotations.Nullable() + java.lang.String invokeFlag, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 timeOut) { + } + + private final void startTimeOutRecord() { + } + + private final void playMatchingAudio() { + } + + private final void stopMatchingAudio() { + } + + @com.mogo.chat.aspect.DebugLog() + public final void stopTimeOutRecord() { + } + + /** + * 服务端返回匹配超时 + */ + public final void matchTimeOutFromNet() { + } + + public final void cancelMatch(@org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 onSuccess) { + } + + private MatchController() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/MatchController.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/MatchController.kapt_metadata new file mode 100644 index 0000000000..c250f9cd1b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/MatchController.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/VehicleTeamController.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/VehicleTeamController.java new file mode 100644 index 0000000000..1cb47155e5 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/VehicleTeamController.java @@ -0,0 +1,29 @@ +package com.mogo.chat.model.control; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0002\b\u00c6\u0002\u0018\u00002\u00020\u00012\u00020\u0002B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0003J\b\u0010\u0004\u001a\u00020\u0005H\u0016J4\u0010\u0006\u001a\u00020\u00052\u0006\u0010\u0007\u001a\u00020\b2\f\u0010\t\u001a\b\u0012\u0004\u0012\u00020\u00050\n2\u0016\u0010\u000b\u001a\u0012\u0012\b\u0012\u00060\rj\u0002`\u000e\u0012\u0004\u0012\u00020\u00050\fJN\u0010\u000f\u001a\u00020\u00052\b\b\u0002\u0010\u0010\u001a\u00020\b2\u0006\u0010\u0011\u001a\u00020\u00122\u0006\u0010\u0013\u001a\u00020\u00122\u0010\b\u0002\u0010\t\u001a\n\u0012\u0004\u0012\u00020\u0005\u0018\u00010\n2\u001a\b\u0002\u0010\u000b\u001a\u0014\u0012\b\u0012\u00060\rj\u0002`\u000e\u0012\u0004\u0012\u00020\u0005\u0018\u00010\f\u00a8\u0006\u0014"}, d2 = {"Lcom/mogo/chat/model/control/VehicleTeamController;", "Lcom/mogo/chat/base/BaseController;", "Lcom/mogo/chat/common/gme/IGMEEventCallBack;", "()V", "gmeHangUp", "", "inviteJoinVehicleTeam", "invitedSn", "", "onSuccess", "Lkotlin/Function0;", "onError", "Lkotlin/Function1;", "Ljava/lang/Exception;", "Lkotlin/Exception;", "requestVehicleTeamConnectStatus", "snReceiver", "status", "", "type", "mogo-module-chat_debug"}) +public final class VehicleTeamController extends com.mogo.chat.base.BaseController implements com.mogo.chat.common.gme.IGMEEventCallBack { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.model.control.VehicleTeamController INSTANCE = null; + + public final void inviteJoinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String invitedSn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + @java.lang.Override() + public void gmeHangUp() { + } + + public final void requestVehicleTeamConnectStatus(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, int status, int type, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError) { + } + + private VehicleTeamController() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/VehicleTeamController.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/VehicleTeamController.kapt_metadata new file mode 100644 index 0000000000..7000b0ca01 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/model/control/VehicleTeamController.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/HttpApi.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/HttpApi.java new file mode 100644 index 0000000000..cb89f32283 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/HttpApi.java @@ -0,0 +1,172 @@ +package com.mogo.chat.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000l\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\u0010$\n\u0002\b\t\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0007\bf\u0018\u00002\u00020\u0001J7\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\b\b\u0001\u0010\u0004\u001a\u00020\u00052\u0014\b\u0001\u0010\u0002\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0007J-\u0010\b\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\u0014\b\u0001\u0010\t\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u000b\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\u0014\b\u0001\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\r\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\u0014\b\u0001\u0010\u000e\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u000f\u001a\b\u0012\u0004\u0012\u00020\u00100\u00032\u0014\b\u0001\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00010\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u0011\u001a\b\u0012\u0004\u0012\u00020\u00120\u00032\u0014\b\u0001\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00010\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u0013\u001a\b\u0012\u0004\u0012\u00020\u00140\u00032\u0014\b\u0001\u0010\u0015\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u0016\u001a\b\u0012\u0004\u0012\u00020\u00170\u00032\u0014\b\u0001\u0010\u0018\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u0019\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\u0014\b\u0001\u0010\u0019\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u001a\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\u0014\b\u0001\u0010\u001b\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010\u001c\u001a\b\u0012\u0004\u0012\u00020\u001d0\u00032\u0014\b\u0001\u0010\u001e\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ!\u0010\u001f\u001a\b\u0012\u0004\u0012\u00020 0\u00032\b\b\u0001\u0010!\u001a\u00020\"H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010#J7\u0010$\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\b\b\u0001\u0010\u0004\u001a\u00020\u00052\u0014\b\u0001\u0010%\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0007J-\u0010&\u001a\b\u0012\u0004\u0012\u00020\'0\u00032\u0014\b\u0001\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010(\u001a\b\u0012\u0004\u0012\u00020)0\u00032\u0014\b\u0001\u0010*\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010+\u001a\b\u0012\u0004\u0012\u00020,0\u00032\u0014\b\u0001\u0010-\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u0010.\u001a\b\u0012\u0004\u0012\u00020/0\u00032\u0014\b\u0001\u00100\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ-\u00101\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\u0014\b\u0001\u0010%\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\nJ7\u00102\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\b\b\u0001\u0010\u0004\u001a\u00020\u00052\u0014\b\u0001\u00103\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0007J-\u00104\u001a\b\u0012\u0004\u0012\u00020\u00010\u00032\u0014\b\u0001\u00105\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0006H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\n\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u00066"}, d2 = {"Lcom/mogo/chat/net/HttpApi;", "", "cancelMatch", "Lcom/mogo/eagle/core/data/BaseResponse;", "sn", "", "", "(Ljava/lang/String;Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "dealBlackList", "blackList", "(Ljava/util/Map;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "dealFocus", "focusSn", "getChatStatus", "chatStatus", "getFocusPage", "Lcom/mogo/chat/model/bean/FocusData;", "getFriendPage", "Lcom/mogo/chat/model/bean/FriendData;", "getSplashConfig", "Lcom/mogo/chat/model/bean/SplashConfig;", "config", "getTopicGuideContent", "Lcom/mogo/chat/model/bean/TopicRequest;", "topGuideContent", "heartBeat", "inviteJoinVehicleTeam", "inviteVehicleTeam", "isOnLine", "Lcom/mogo/chat/model/bean/OnLineStatus;", "onLine", "queryUserInfoBySnS", "Lcom/mogo/chat/model/bean/UserInfoBySns;", "userInfoBySnsRequest", "Lcom/mogo/chat/model/bean/UserInfoBySnsRequest;", "(Lcom/mogo/chat/model/bean/UserInfoBySnsRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "requestConnectStatus", "connectStatus", "requestFocusStatus", "Lcom/mogo/chat/model/bean/FocusStatus;", "requestLive", "Lcom/mogo/chat/model/bean/LiveBroadcastResult;", "liveBroadcast", "requestLiveCars", "Lcom/mogo/chat/model/bean/AllUnit;", "sns", "requestRoomInfo", "Lcom/mogo/chat/model/bean/RoomInfo;", "roomInfo", "requestVehicleTeamConnectStatus", "startMatch", "match", "switchCarStatus", "status", "mogo-module-chat_debug"}) +public abstract interface HttpApi { + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "yycp-chat-service/car/circle/no/snStatus/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object switchCarStatus(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map status, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "yycp-chat-service/car/circle/no/getSn/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object requestLiveCars(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map sns, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "appDataService/integratedServices/app/push/no/livePush/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object requestLive(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map liveBroadcast, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "appDataService/integratedServices/app/push/no/heartbeat/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object heartBeat(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map heartBeat, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/sender/no/createRoom/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object requestRoomInfo(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map roomInfo, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/voiceRoom/no/operate/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object requestConnectStatus(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Query(value = "sn") + java.lang.String sn, @org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map connectStatus, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p2); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/voiceRoom/no/findMatch/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object startMatch(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Query(value = "sn") + java.lang.String sn, @org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map match, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p2); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/voiceRoom/no/cancleMatch/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object cancelMatch(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Query(value = "sn") + java.lang.String sn, @org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map cancelMatch, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p2); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chat/no/inviteJoinTeam/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object inviteJoinVehicleTeam(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map inviteVehicleTeam, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chat/no/operateTeamRoom/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object requestVehicleTeamConnectStatus(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map connectStatus, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "deva/voiceGuideConfig/findVoiceGuideConfigBySn/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object getSplashConfig(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map config, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/topic/no/getNowTopic/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object getTopicGuideContent(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map topGuideContent, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chatFoucs/no/checkFocus/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object requestFocusStatus(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map focusSn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chatFoucs/no/operate/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object dealBlackList(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map blackList, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chatFoucs/no/addFocus/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object dealFocus(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map focusSn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chatFoucs/no/getFocusPage/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object getFriendPage(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map focusSn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chatFoucs/no/getByFocusPage/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object getFocusPage(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map focusSn, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/chat/no/chatStatus/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object getChatStatus(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map chatStatus, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-chat-service/car/queryOnLineBySn/v1") + @retrofit2.http.FormUrlEncoded() + public abstract java.lang.Object isOnLine(@org.jetbrains.annotations.NotNull() + @retrofit2.http.FieldMap() + java.util.Map onLine, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); + + @org.jetbrains.annotations.Nullable() + @retrofit2.http.POST(value = "/yycp-realtimeLocations/realTimeLocationServer/queryRsAncCarAndUserInfoBySns") + public abstract java.lang.Object queryUserInfoBySnS(@org.jetbrains.annotations.NotNull() + @retrofit2.http.Body() + com.mogo.chat.model.bean.UserInfoBySnsRequest userInfoBySnsRequest, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation> p1); +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/HttpApi.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/HttpApi.kapt_metadata new file mode 100644 index 0000000000..5aa9ae16b1 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/HttpApi.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/TaskCoroutinesKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/TaskCoroutinesKt.java new file mode 100644 index 0000000000..cd64412495 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/TaskCoroutinesKt.java @@ -0,0 +1,48 @@ +package com.mogo.chat.net; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u00004\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\t\n\u0002\u0010\u0002\n\u0002\b\u0004\u001a8\u0010\b\u001a\b\u0012\u0004\u0012\u0002H\n0\t\"\u0004\b\u0000\u0010\n2\u001c\u0010\u000b\u001a\u0018\b\u0001\u0012\n\u0012\b\u0012\u0004\u0012\u0002H\n0\r\u0012\u0006\u0012\u0004\u0018\u00010\u000e0\f\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u000f\u001a6\u0010\u0010\u001a\u00020\u00112\b\b\u0002\u0010\u0012\u001a\u00020\u00132\u001c\u0010\u000b\u001a\u0018\b\u0001\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00140\r\u0012\u0006\u0012\u0004\u0018\u00010\u000e0\f\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0015\u001aB\u0010\u0016\u001a\b\u0012\u0004\u0012\u0002H\n0\t\"\u0004\b\u0000\u0010\n2\b\b\u0002\u0010\u0012\u001a\u00020\u00132\u001c\u0010\u000b\u001a\u0018\b\u0001\u0012\n\u0012\b\u0012\u0004\u0012\u0002H\n0\r\u0012\u0006\u0012\u0004\u0018\u00010\u000e0\f\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0017\"$\u0010\u0000\u001a\u00020\u00018\u0000@\u0000X\u0081\u000e\u00a2\u0006\u0014\n\u0000\u0012\u0004\b\u0002\u0010\u0003\u001a\u0004\b\u0004\u0010\u0005\"\u0004\b\u0006\u0010\u0007\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\u0018"}, d2 = {"ThreadPool", "Lkotlinx/coroutines/ExecutorCoroutineDispatcher;", "getThreadPool$annotations", "()V", "getThreadPool", "()Lkotlinx/coroutines/ExecutorCoroutineDispatcher;", "setThreadPool", "(Lkotlinx/coroutines/ExecutorCoroutineDispatcher;)V", "taskAsync", "Lkotlinx/coroutines/Deferred;", "T", "job", "Lkotlin/Function1;", "Lkotlin/coroutines/Continuation;", "", "(Lkotlin/jvm/functions/Function1;)Lkotlinx/coroutines/Deferred;", "taskBlockOnMainThread", "Lkotlinx/coroutines/Job;", "delayTime", "", "", "(JLkotlin/jvm/functions/Function1;)Lkotlinx/coroutines/Job;", "taskDelayAsync", "(JLkotlin/jvm/functions/Function1;)Lkotlinx/coroutines/Deferred;", "mogo-module-chat_debug"}) +public final class TaskCoroutinesKt { + @org.jetbrains.annotations.NotNull() + private static kotlinx.coroutines.ExecutorCoroutineDispatcher ThreadPool; + + @kotlin.PublishedApi() + @java.lang.Deprecated() + public static void getThreadPool$annotations() { + } + + @org.jetbrains.annotations.NotNull() + public static final kotlinx.coroutines.ExecutorCoroutineDispatcher getThreadPool() { + return null; + } + + public static final void setThreadPool(@org.jetbrains.annotations.NotNull() + kotlinx.coroutines.ExecutorCoroutineDispatcher p0) { + } + + @org.jetbrains.annotations.NotNull() + public static final kotlinx.coroutines.Job taskBlockOnMainThread(long delayTime, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1, ? extends java.lang.Object> job) { + return null; + } + + /** + * 并发执行,常用于最外层,延时操作 + * 特点带返回值 + */ + @org.jetbrains.annotations.NotNull() + public static final kotlinx.coroutines.Deferred taskDelayAsync(long delayTime, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1, ? extends java.lang.Object> job) { + return null; + } + + /** + * 并发执行 + */ + @org.jetbrains.annotations.NotNull() + public static final kotlinx.coroutines.Deferred taskAsync(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1, ? extends java.lang.Object> job) { + return null; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/TaskCoroutinesKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/TaskCoroutinesKt.kapt_metadata new file mode 100644 index 0000000000..18cc2fad87 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/net/TaskCoroutinesKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/provider/ServiceApi.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/provider/ServiceApi.java new file mode 100644 index 0000000000..b4b8d1ae71 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/provider/ServiceApi.java @@ -0,0 +1,26 @@ +package com.mogo.chat.provider; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/chat/provider/ServiceApi;", "", "()V", "Companion", "mogo-module-chat_debug"}) +public final class ServiceApi { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.provider.ServiceApi.Companion Companion = null; + + public ServiceApi() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u0004\u0018\u00010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/chat/provider/ServiceApi$Companion;", "", "()V", "locationClient", "Lcom/mogo/map/location/IMogoLocationClient;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.Nullable() + public final com.mogo.map.location.IMogoLocationClient locationClient() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/provider/ServiceApi.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/provider/ServiceApi.kapt_metadata new file mode 100644 index 0000000000..b8863d0556 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/provider/ServiceApi.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/ChatServiceHandler.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/ChatServiceHandler.java new file mode 100644 index 0000000000..bd90214cc5 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/ChatServiceHandler.java @@ -0,0 +1,92 @@ +package com.mogo.chat.service; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000F\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\b\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\n\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J4\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nJD\u0010\r\u001a\u00020\u00042\u0006\u0010\u000e\u001a\u00020\u00062\u0006\u0010\u000f\u001a\u00020\u00102\u0010\b\u0002\u0010\u0007\u001a\n\u0012\u0004\u0012\u00020\u0004\u0018\u00010\b2\u001a\b\u0002\u0010\t\u001a\u0014\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u0004\u0018\u00010\nJ4\u0010\u0011\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nJ\u0014\u0010\u0012\u001a\u00020\u00042\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\bJ@\u0010\u0013\u001a\u00020\u00042\b\u0010\u000e\u001a\u0004\u0018\u00010\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\n2\b\b\u0002\u0010\u000f\u001a\u00020\u0010J4\u0010\u0014\u001a\u00020\u00042\u0006\u0010\u0015\u001a\u00020\u00102\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nJ4\u0010\u0016\u001a\u00020\u00042\u0006\u0010\u0017\u001a\u00020\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nJ:\u0010\u0018\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0012\u0010\u0007\u001a\u000e\u0012\u0004\u0012\u00020\u0019\u0012\u0004\u0012\u00020\u00040\n2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nJ:\u0010\u001a\u001a\u00020\u00042\u0006\u0010\u000e\u001a\u00020\u00062\u0012\u0010\u0007\u001a\u000e\u0012\u0004\u0012\u00020\u0019\u0012\u0004\u0012\u00020\u00040\n2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nJI\u0010\u001b\u001a\u00020\u00042\u0006\u0010\u000e\u001a\u00020\u00062!\u0010\u0007\u001a\u001d\u0012\u0013\u0012\u00110\u0006\u00a2\u0006\f\b\u001c\u0012\b\b\u001d\u0012\u0004\b\b(\u001e\u0012\u0004\u0012\u00020\u00040\n2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nJ6\u0010\u001f\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\nH\u0002J8\u0010 \u001a\u00020\u00042\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\n2\b\b\u0002\u0010\u000f\u001a\u00020\u0010H\u0002J@\u0010!\u001a\u00020\u00042\u0006\u0010\u000e\u001a\u00020\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\n2\b\b\u0002\u0010\u000f\u001a\u00020\u0010H\u0002J@\u0010\"\u001a\u00020\u00042\b\u0010\u000e\u001a\u0004\u0018\u00010\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\n2\b\b\u0002\u0010\u000f\u001a\u00020\u0010JB\u0010#\u001a\u00020\u00042\u0006\u0010$\u001a\u00020\u00062\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00040\b2\u0016\u0010\t\u001a\u0012\u0012\b\u0012\u00060\u000bj\u0002`\f\u0012\u0004\u0012\u00020\u00040\n2\f\u0010%\u001a\b\u0012\u0004\u0012\u00020\u00040\b\u00a8\u0006&"}, d2 = {"Lcom/mogo/chat/service/ChatServiceHandler;", "Lcom/mogo/chat/base/BaseController;", "()V", "addFriend", "", "snReceiver", "", "onSuccess", "Lkotlin/Function0;", "onError", "Lkotlin/Function1;", "Ljava/lang/Exception;", "Lkotlin/Exception;", "answer", "sn", "roomId", "", "call", "cancelMatch", "hangUp", "invisibleUser", "status", "inviteJoinVehicleTeam", "invitedSn", "isFriend", "", "isOnLine", "queryUserInfo", "Lkotlin/ParameterName;", "name", "userInfo", "realCall", "realHangUp", "realRefuse", "refuseCall", "startMatch", "flag", "timeOut", "mogo-module-chat_debug"}) +public final class ChatServiceHandler extends com.mogo.chat.base.BaseController { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.service.ChatServiceHandler INSTANCE = null; + + public final void call(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + private final void realCall(java.lang.String snReceiver, kotlin.jvm.functions.Function0 onSuccess, kotlin.jvm.functions.Function1 onError) { + } + + public final void hangUp(@org.jetbrains.annotations.Nullable() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError, int roomId) { + } + + public final void refuseCall(@org.jetbrains.annotations.Nullable() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError, int roomId) { + } + + private final void realHangUp(kotlin.jvm.functions.Function0 onSuccess, kotlin.jvm.functions.Function1 onError, int roomId) { + } + + private final void realRefuse(java.lang.String sn, kotlin.jvm.functions.Function0 onSuccess, kotlin.jvm.functions.Function1 onError, int roomId) { + } + + public final void answer(@org.jetbrains.annotations.NotNull() + java.lang.String sn, int roomId, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.Nullable() + kotlin.jvm.functions.Function1 onError) { + } + + public final void startMatch(@org.jetbrains.annotations.NotNull() + java.lang.String flag, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 timeOut) { + } + + public final void cancelMatch(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess) { + } + + public final void inviteJoinVehicleTeam(@org.jetbrains.annotations.NotNull() + java.lang.String invitedSn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + public final void isFriend(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + public final void addFriend(@org.jetbrains.annotations.NotNull() + java.lang.String snReceiver, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + public final void invisibleUser(int status, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + public final void isOnLine(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + public final void queryUserInfo(@org.jetbrains.annotations.NotNull() + java.lang.String sn, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onSuccess, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onError) { + } + + private ChatServiceHandler() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/ChatServiceHandler.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/ChatServiceHandler.kapt_metadata new file mode 100644 index 0000000000..5661e74b25 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/ChatServiceHandler.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/IMService.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/IMService.java new file mode 100644 index 0000000000..e34362e4d1 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/IMService.java @@ -0,0 +1,100 @@ +package com.mogo.chat.service; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00008\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0006\u0018\u0000 \u00162\u00020\u00012\u00020\u0002:\u0001\u0016B\u0005\u00a2\u0006\u0002\u0010\u0003J\b\u0010\b\u001a\u00020\tH\u0002J\u0012\u0010\n\u001a\u0004\u0018\u00010\u000b2\u0006\u0010\f\u001a\u00020\rH\u0016J\b\u0010\u000e\u001a\u00020\tH\u0016J\b\u0010\u000f\u001a\u00020\tH\u0016J\"\u0010\u0010\u001a\u00020\u00112\b\u0010\f\u001a\u0004\u0018\u00010\r2\u0006\u0010\u0012\u001a\u00020\u00112\u0006\u0010\u0013\u001a\u00020\u0011H\u0016J\u0010\u0010\u0014\u001a\u00020\t2\u0006\u0010\u0015\u001a\u00020\u0011H\u0016R\u000e\u0010\u0004\u001a\u00020\u0005X\u0082\u0004\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0017"}, d2 = {"Lcom/mogo/chat/service/IMService;", "Landroid/app/Service;", "Lcom/mogo/chat/callcenter/ICallMessage;", "()V", "socketMsgCallBack", "Lcom/mogo/websocket/ISocketMsgCallBack;", "socketMsgSetting", "Lcom/mogo/websocket/ISocketMsgSetting;", "init", "", "onBind", "Landroid/os/IBinder;", "intent", "Landroid/content/Intent;", "onCreate", "onDestroy", "onStartCommand", "", "flags", "startId", "onTrimMemory", "level", "Companion", "mogo-module-chat_debug"}) +public final class IMService extends android.app.Service implements com.mogo.chat.callcenter.ICallMessage { + private final com.mogo.websocket.ISocketMsgSetting socketMsgSetting = null; + private final com.mogo.websocket.ISocketMsgCallBack socketMsgCallBack = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.service.IMService.Companion Companion = null; + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public android.os.IBinder onBind(@org.jetbrains.annotations.NotNull() + android.content.Intent intent) { + return null; + } + + @java.lang.Override() + public int onStartCommand(@org.jetbrains.annotations.Nullable() + android.content.Intent intent, int flags, int startId) { + return 0; + } + + @java.lang.Override() + public void onCreate() { + } + + private final void init() { + } + + @java.lang.Override() + public void onTrimMemory(int level) { + } + + @java.lang.Override() + public void onDestroy() { + } + + public IMService() { + super(); + } + + public void initStatus() { + } + + public void addNewFocus() { + } + + public void receiverCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + public void receiverCallingAgree() { + } + + public void refuseMatchToShowCalling(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Message message) { + } + + public void callSuccess() { + } + + public void vehicleTeamEnterRoom() { + } + + public void receiverVehicleTeamInvitation() { + } + + public void vehicleTeamMemberChange(@org.jetbrains.annotations.Nullable() + java.util.List teamMember) { + } + + public void matchSuccess() { + } + + public void receiverCallRefuse() { + } + + public void receiverVehicleTeamInviteRefuse() { + } + + public void receiverSomeoneExitVehicleTeam() { + } + + public void receiverHangUpInfo() { + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006\u00a8\u0006\u0007"}, d2 = {"Lcom/mogo/chat/service/IMService$Companion;", "", "()V", "launchService", "", "context", "Landroid/content/Context;", "mogo-module-chat_debug"}) + public static final class Companion { + + public final void launchService(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/IMService.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/IMService.kapt_metadata new file mode 100644 index 0000000000..1667be213f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/IMService.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/InvokeDataProxy.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/InvokeDataProxy.java new file mode 100644 index 0000000000..1c422224a4 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/InvokeDataProxy.java @@ -0,0 +1,39 @@ +package com.mogo.chat.service; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/chat/service/InvokeDataProxy;", "", "()V", "Companion", "mogo-module-chat_debug"}) +public final class InvokeDataProxy { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.service.InvokeDataProxy.Companion Companion = null; + + public InvokeDataProxy() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010$\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u001a\u0010\u0003\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u00042\u0006\u0010\u0006\u001a\u00020\u0007J\u001a\u0010\b\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u00042\u0006\u0010\t\u001a\u00020\nJ\u001a\u0010\u000b\u001a\u00020\u00072\u0012\u0010\f\u001a\u000e\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u00050\u0004\u00a8\u0006\r"}, d2 = {"Lcom/mogo/chat/service/InvokeDataProxy$Companion;", "", "()V", "convertSnsToInvokeMap", "", "", "sns", "Lcom/mogo/chat/model/bean/Sns;", "convertUserInfoToInvokeMap", "info", "Lcom/mogo/chat/model/bean/Info;", "covertMapToSns", "map", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final java.util.Map convertSnsToInvokeMap(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Sns sns) { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Sns covertMapToSns(@org.jetbrains.annotations.NotNull() + java.util.Map map) { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.util.Map convertUserInfoToInvokeMap(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Info info) { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/InvokeDataProxy.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/InvokeDataProxy.kapt_metadata new file mode 100644 index 0000000000..2b405ba308 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/service/InvokeDataProxy.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/AnalyticsUtilKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/AnalyticsUtilKt.java new file mode 100644 index 0000000000..e70ced167f --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/AnalyticsUtilKt.java @@ -0,0 +1,40 @@ +package com.mogo.chat.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000,\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0007\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010%\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0006\u001a(\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\u00012\u0016\b\u0002\u0010\r\u001a\u0010\u0012\u0004\u0012\u00020\u0001\u0012\u0004\u0012\u00020\u000f\u0018\u00010\u000eH\u0002\u001a\u0018\u0010\u0010\u001a\u00020\u000b2\u0006\u0010\u0011\u001a\u00020\u00122\u0006\u0010\u0013\u001a\u00020\u0012H\u0007\u001a\u001a\u0010\u0014\u001a\u00020\u000b2\u0006\u0010\u0011\u001a\u00020\u00122\b\b\u0002\u0010\u0015\u001a\u00020\u0001H\u0007\u001a&\u0010\u0016\u001a\u00020\u000b2\u0006\u0010\u0017\u001a\u00020\u00012\u0014\u0010\r\u001a\u0010\u0012\u0004\u0012\u00020\u0001\u0012\u0004\u0012\u00020\u000f\u0018\u00010\u000eH\u0007\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0002\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0003\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0004\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0005\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0006\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0007\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u0010\u0010\b\u001a\u0004\u0018\u00010\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0018"}, d2 = {"TRACK_APP_ENTER", "", "TRACK_CANCEL_CALL_CLICK", "TRACK_MATCH_CANCEL", "TRACK_MATCH_FAIL", "TRACK_MATCH_SUCCESS", "TRACK_PHONE_CALL_CLICK", "TRACK_VIDEO_CALL_CLICK", "trackRouter", "Lcom/mogo/service/analytics/IMogoAnalytics;", "track", "", "eventType", "data", "", "", "trackCall", "callType", "", "type", "trackHangUp", "source", "trackNormalEvent", "event", "mogo-module-chat_debug"}) +public final class AnalyticsUtilKt { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TRACK_APP_ENTER = "appenterfront"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TRACK_PHONE_CALL_CLICK = "carchat_carphone_call_click"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TRACK_VIDEO_CALL_CLICK = "carchat_carphone_video_click"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TRACK_CANCEL_CALL_CLICK = "carchat_cancel_call_click"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TRACK_MATCH_SUCCESS = "carchat_carphonecall_match_success"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TRACK_MATCH_FAIL = "carchat_carphonecall_match_fail"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TRACK_MATCH_CANCEL = "carchat_carphonecall_match_cancel_click"; + private static com.mogo.service.analytics.IMogoAnalytics trackRouter; + + @com.mogo.chat.aspect.DebugLog() + public static final void trackNormalEvent(@org.jetbrains.annotations.NotNull() + java.lang.String event, @org.jetbrains.annotations.Nullable() + java.util.Map data) { + } + + private static final void track(java.lang.String eventType, java.util.Map data) { + } + + @com.mogo.chat.aspect.DebugLog() + public static final void trackCall(int callType, int type) { + } + + @com.mogo.chat.aspect.DebugLog() + public static final void trackHangUp(int callType, @org.jetbrains.annotations.NotNull() + java.lang.String source) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/AnalyticsUtilKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/AnalyticsUtilKt.kapt_metadata new file mode 100644 index 0000000000..1205345cab Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/AnalyticsUtilKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/CallTimer.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/CallTimer.java new file mode 100644 index 0000000000..0790f1fd0d --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/CallTimer.java @@ -0,0 +1,46 @@ +package com.mogo.chat.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0004\u0018\u0000 \u00122\u00020\u0001:\u0001\u0012B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J(\u0010\u0010\u001a\u00020\t2\u0012\u0010\u000e\u001a\u000e\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\t0\u000f2\f\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\bJ\u0006\u0010\n\u001a\u00020\tJ\u0006\u0010\u0011\u001a\u00020\tR\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0007\u001a\n\u0012\u0004\u0012\u00020\t\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\n\u001a\u00020\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0010\u0010\f\u001a\u0004\u0018\u00010\rX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\u000e\u001a\u0010\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\t\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0013"}, d2 = {"Lcom/mogo/chat/util/CallTimer;", "", "()V", "job", "Lkotlinx/coroutines/Job;", "mStartTime", "", "onStop", "Lkotlin/Function0;", "", "start", "", "timer", "Ljava/util/Timer;", "timerRate", "Lkotlin/Function1;", "registerTimerRate", "stop", "Companion", "mogo-module-chat_debug"}) +public final class CallTimer { + private long mStartTime = 0L; + private boolean start = false; + private java.util.Timer timer; + private kotlinx.coroutines.Job job; + private kotlin.jvm.functions.Function1 timerRate; + private kotlin.jvm.functions.Function0 onStop; + private static final long TIMER_RATE = 1000L; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy callTimer$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.util.CallTimer.Companion Companion = null; + + public final void registerTimerRate(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 timerRate, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onStop) { + } + + public final void start() { + } + + public final void stop() { + } + + private CallTimer() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u001b\u0010\u0005\u001a\u00020\u00068FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\t\u0010\n\u001a\u0004\b\u0007\u0010\b\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/chat/util/CallTimer$Companion;", "", "()V", "TIMER_RATE", "", "callTimer", "Lcom/mogo/chat/util/CallTimer;", "getCallTimer", "()Lcom/mogo/chat/util/CallTimer;", "callTimer$delegate", "Lkotlin/Lazy;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.util.CallTimer getCallTimer() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/CallTimer.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/CallTimer.kapt_metadata new file mode 100644 index 0000000000..7066aa23d6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/CallTimer.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/DoubleCheckUtilKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/DoubleCheckUtilKt.java new file mode 100644 index 0000000000..1d84099631 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/DoubleCheckUtilKt.java @@ -0,0 +1,44 @@ +package com.mogo.chat.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0018\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\t\n\u0002\b\r\n\u0002\u0010\u000b\n\u0002\b\u0004\u001a\u0006\u0010\u0010\u001a\u00020\u0011\u001a\u000e\u0010\u0010\u001a\u00020\u00112\u0006\u0010\u0012\u001a\u00020\u0001\u001a\u0016\u0010\u0013\u001a\u00020\u00112\u0006\u0010\u0012\u001a\u00020\u00012\u0006\u0010\u0014\u001a\u00020\u0001\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u001a\u0010\u0002\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0004\u0010\u0005\"\u0004\b\u0006\u0010\u0007\"\u001a\u0010\b\u001a\u00020\u0003X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\t\u0010\u0005\"\u0004\b\n\u0010\u0007\"\u001a\u0010\u000b\u001a\u00020\u0001X\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\f\u0010\r\"\u0004\b\u000e\u0010\u000f\u00a8\u0006\u0015"}, d2 = {"SPACE_TIME", "", "lastClickTime", "", "getLastClickTime", "()J", "setLastClickTime", "(J)V", "lastViewClickTime", "getLastViewClickTime", "setLastViewClickTime", "viewId", "getViewId", "()I", "setViewId", "(I)V", "isDoubleClick", "", "view", "isDoubleClickTime", "spaceTime", "mogo-module-chat_debug"}) +public final class DoubleCheckUtilKt { + public static final int SPACE_TIME = 1500; + private static long lastClickTime = 0L; + private static long lastViewClickTime = 0L; + private static int viewId = 0; + + public static final long getLastClickTime() { + return 0L; + } + + public static final void setLastClickTime(long p0) { + } + + public static final long getLastViewClickTime() { + return 0L; + } + + public static final void setLastViewClickTime(long p0) { + } + + public static final int getViewId() { + return 0; + } + + public static final void setViewId(int p0) { + } + + public static final boolean isDoubleClick(int view) { + return false; + } + + public static final boolean isDoubleClick() { + return false; + } + + public static final boolean isDoubleClickTime(int view, int spaceTime) { + return false; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/DoubleCheckUtilKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/DoubleCheckUtilKt.kapt_metadata new file mode 100644 index 0000000000..d28990a248 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/DoubleCheckUtilKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/LogUtil.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/LogUtil.java new file mode 100644 index 0000000000..299171aedd --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/LogUtil.java @@ -0,0 +1,13 @@ +package com.mogo.chat.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0010\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\u001a\u0018\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0003H\u0007\u00a8\u0006\u0005"}, d2 = {"log", "", "tag", "", "msg", "mogo-module-chat_debug"}) +public final class LogUtil { + + @com.mogo.chat.aspect.DebugLog() + public static final void log(@org.jetbrains.annotations.NotNull() + java.lang.String tag, @org.jetbrains.annotations.NotNull() + java.lang.String msg) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/LogUtil.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/LogUtil.kapt_metadata new file mode 100644 index 0000000000..d63e40871b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/LogUtil.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/MediaController.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/MediaController.java new file mode 100644 index 0000000000..405fd48e6e --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/MediaController.java @@ -0,0 +1,24 @@ +package com.mogo.chat.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0002\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0005\u001a\u00020\u0006J\b\u0010\u0007\u001a\u00020\u0006H\u0002J*\u0010\b\u001a\u00020\u00062\u0006\u0010\t\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\f2\b\b\u0002\u0010\r\u001a\u00020\u000e2\b\b\u0002\u0010\u000f\u001a\u00020\fR\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0010"}, d2 = {"Lcom/mogo/chat/util/MediaController;", "", "()V", "mp", "Landroid/media/MediaPlayer;", "release", "", "resetStatus", "startPlay", "context", "Landroid/content/Context;", "audioSources", "", "isLoop", "", "channel", "mogo-module-chat_debug"}) +public final class MediaController { + private static android.media.MediaPlayer mp; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.util.MediaController INSTANCE = null; + + public final void startPlay(@org.jetbrains.annotations.NotNull() + android.content.Context context, int audioSources, boolean isLoop, int channel) { + } + + public final void release() { + } + + private final void resetStatus() { + } + + private MediaController() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/MediaController.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/MediaController.kapt_metadata new file mode 100644 index 0000000000..ecf364e4d8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/MediaController.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/UserInfoHelper.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/UserInfoHelper.java new file mode 100644 index 0000000000..6b8c505af2 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/UserInfoHelper.java @@ -0,0 +1,67 @@ +package com.mogo.chat.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\t\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R$\u0010\u0005\u001a\u00020\u00042\u0006\u0010\u0003\u001a\u00020\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0006\u0010\u0007\"\u0004\b\b\u0010\tR$\u0010\n\u001a\u00020\u00042\u0006\u0010\u0003\u001a\u00020\u0004@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u000b\u0010\u0007\"\u0004\b\f\u0010\tR\u001a\u0010\r\u001a\u00020\u000eX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\r\u0010\u000f\"\u0004\b\u0010\u0010\u0011R$\u0010\u0013\u001a\u00020\u00122\u0006\u0010\u0003\u001a\u00020\u0012@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0014\u0010\u0015\"\u0004\b\u0016\u0010\u0017R$\u0010\u0018\u001a\u00020\u00122\u0006\u0010\u0003\u001a\u00020\u0012@FX\u0086\u000e\u00a2\u0006\u000e\n\u0000\u001a\u0004\b\u0019\u0010\u0015\"\u0004\b\u001a\u0010\u0017\u00a8\u0006\u001b"}, d2 = {"Lcom/mogo/chat/util/UserInfoHelper;", "", "()V", "value", "", "currentCallType", "getCurrentCallType", "()I", "setCurrentCallType", "(I)V", "currentRoomId", "getCurrentRoomId", "setCurrentRoomId", "isInitiativeMatch", "", "()Z", "setInitiativeMatch", "(Z)V", "Lcom/mogo/chat/model/bean/Sns;", "tmpSenderInfo", "getTmpSenderInfo", "()Lcom/mogo/chat/model/bean/Sns;", "setTmpSenderInfo", "(Lcom/mogo/chat/model/bean/Sns;)V", "userInfo", "getUserInfo", "setUserInfo", "mogo-module-chat_debug"}) +public final class UserInfoHelper { + @org.jetbrains.annotations.NotNull() + private static com.mogo.chat.model.bean.Sns userInfo; + + /** + * 是否是主动匹配 + */ + private static boolean isInitiativeMatch = false; + + /** + * 仅为首次进入车聊聊,同步对方信息而创建的临时对象 + */ + @org.jetbrains.annotations.NotNull() + private static com.mogo.chat.model.bean.Sns tmpSenderInfo; + private static int currentRoomId = 0; + private static int currentCallType = -1; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.util.UserInfoHelper INSTANCE = null; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Sns getUserInfo() { + return null; + } + + public final void setUserInfo(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Sns value) { + } + + public final boolean isInitiativeMatch() { + return false; + } + + public final void setInitiativeMatch(boolean p0) { + } + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.model.bean.Sns getTmpSenderInfo() { + return null; + } + + public final void setTmpSenderInfo(@org.jetbrains.annotations.NotNull() + com.mogo.chat.model.bean.Sns value) { + } + + public final int getCurrentRoomId() { + return 0; + } + + public final void setCurrentRoomId(int value) { + } + + public final int getCurrentCallType() { + return 0; + } + + public final void setCurrentCallType(int value) { + } + + private UserInfoHelper() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/UserInfoHelper.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/UserInfoHelper.kapt_metadata new file mode 100644 index 0000000000..4db16fac76 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/UserInfoHelper.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/AudioFocusImpl.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/AudioFocusImpl.java new file mode 100644 index 0000000000..27e43f82f3 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/AudioFocusImpl.java @@ -0,0 +1,26 @@ +package com.mogo.chat.util.audio; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/chat/util/audio/AudioFocusImpl;", "", "()V", "Companion", "mogo-module-chat_debug"}) +public final class AudioFocusImpl { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.util.audio.AudioFocusImpl.Companion Companion = null; + + public AudioFocusImpl() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0003\u001a\u00020\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/chat/util/audio/AudioFocusImpl$Companion;", "", "()V", "getInstance", "Lcom/mogo/chat/util/audio/IAudioFocus;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.util.audio.IAudioFocus getInstance() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/AudioFocusImpl.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/AudioFocusImpl.kapt_metadata new file mode 100644 index 0000000000..61a2399f13 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/AudioFocusImpl.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.java new file mode 100644 index 0000000000..df3b841f9c --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.java @@ -0,0 +1,69 @@ +package com.mogo.chat.util.audio; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0004\u0018\u0000 \u000b2\u00020\u0001:\u0001\u000bB\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\u0010\u0010\u0007\u001a\u00020\b2\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\u0010\u0010\t\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0016J\u0010\u0010\n\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0016\u00a8\u0006\f"}, d2 = {"Lcom/mogo/chat/util/audio/ChangAnAudioFocusImpl;", "Lcom/mogo/chat/util/audio/IAudioFocus;", "()V", "init", "", "context", "Landroid/content/Context;", "sendGetFocusIntent", "", "sendReleaseFocusIntent", "unInit", "Companion", "mogo-module-chat_debug"}) +public final class ChangAnAudioFocusImpl implements com.mogo.chat.util.audio.IAudioFocus { + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy changAnAudioFocusImpl$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.util.audio.ChangAnAudioFocusImpl.Companion Companion = null; + + @java.lang.Override() + public void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public boolean sendGetFocusIntent(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return false; + } + + @java.lang.Override() + public void sendReleaseFocusIntent(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void unInit(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + private ChangAnAudioFocusImpl() { + super(); + } + + /** + * 查询麦克风焦点 + * 麦克风优先级 + * true,代表当前麦克风焦点在你这 + */ + public boolean findMicFocus(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return false; + } + + /** + * 查询当前的麦克风使用的优先级 + * + * @return 麦克风优先级 + */ + public int getCurrentPriority(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return 0; + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion;", "", "()V", "changAnAudioFocusImpl", "Lcom/mogo/chat/util/audio/ChangAnAudioFocusImpl;", "getChangAnAudioFocusImpl", "()Lcom/mogo/chat/util/audio/ChangAnAudioFocusImpl;", "changAnAudioFocusImpl$delegate", "Lkotlin/Lazy;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.util.audio.ChangAnAudioFocusImpl getChangAnAudioFocusImpl() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.kapt_metadata new file mode 100644 index 0000000000..219d6a2db2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/IAudioFocus.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/IAudioFocus.java new file mode 100644 index 0000000000..15889e7a5a --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/IAudioFocus.java @@ -0,0 +1,64 @@ +package com.mogo.chat.util.audio; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0004\bf\u0018\u00002\u00020\u0001J\u0010\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\u0016J\u0010\u0010\u0006\u001a\u00020\u00072\u0006\u0010\u0004\u001a\u00020\u0005H\u0016J\u0010\u0010\b\u001a\u00020\t2\u0006\u0010\u0004\u001a\u00020\u0005H&J\u0010\u0010\n\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H&J\u0010\u0010\u000b\u001a\u00020\t2\u0006\u0010\u0004\u001a\u00020\u0005H&J\u0010\u0010\f\u001a\u00020\t2\u0006\u0010\u0004\u001a\u00020\u0005H&\u00a8\u0006\r"}, d2 = {"Lcom/mogo/chat/util/audio/IAudioFocus;", "", "findMicFocus", "", "context", "Landroid/content/Context;", "getCurrentPriority", "", "init", "", "sendGetFocusIntent", "sendReleaseFocusIntent", "unInit", "mogo-module-chat_debug"}) +public abstract interface IAudioFocus { + + public abstract void init(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + /** + * 查询麦克风焦点 + * 麦克风优先级 + * true,代表当前麦克风焦点在你这 + */ + public abstract boolean findMicFocus(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + /** + * 查询当前的麦克风使用的优先级 + * + * @return 麦克风优先级 + */ + public abstract int getCurrentPriority(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + /** + * 申请麦克风焦点 + */ + public abstract boolean sendGetFocusIntent(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + public abstract void sendReleaseFocusIntent(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + public abstract void unInit(@org.jetbrains.annotations.NotNull() + android.content.Context context); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + /** + * 查询麦克风焦点 + * 麦克风优先级 + * true,代表当前麦克风焦点在你这 + */ + public static boolean findMicFocus(@org.jetbrains.annotations.NotNull() + com.mogo.chat.util.audio.IAudioFocus $this, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + return false; + } + + /** + * 查询当前的麦克风使用的优先级 + * + * @return 麦克风优先级 + */ + public static int getCurrentPriority(@org.jetbrains.annotations.NotNull() + com.mogo.chat.util.audio.IAudioFocus $this, @org.jetbrains.annotations.NotNull() + android.content.Context context) { + return 0; + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/IAudioFocus.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/IAudioFocus.kapt_metadata new file mode 100644 index 0000000000..03de1fed90 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/IAudioFocus.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.java new file mode 100644 index 0000000000..caea86f34a --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.java @@ -0,0 +1,79 @@ +package com.mogo.chat.util.audio; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0006\u0018\u0000 \u00102\u00020\u0001:\u0002\u0010\u0011B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0016J\u0010\u0010\t\u001a\u00020\n2\u0006\u0010\u0007\u001a\u00020\bH\u0016J\u0010\u0010\u000b\u001a\u00020\f2\u0006\u0010\u0007\u001a\u00020\bH\u0016J\u0010\u0010\r\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0016J\u0010\u0010\u000e\u001a\u00020\f2\u0006\u0010\u0007\u001a\u00020\bH\u0016J\u0010\u0010\u000f\u001a\u00020\f2\u0006\u0010\u0007\u001a\u00020\bH\u0016R\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/mogo/chat/util/audio/MogoAudioFocusImpl;", "Lcom/mogo/chat/util/audio/IAudioFocus;", "()V", "listener", "Lcom/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener;", "findMicFocus", "", "context", "Landroid/content/Context;", "getCurrentPriority", "", "init", "", "sendGetFocusIntent", "sendReleaseFocusIntent", "unInit", "Companion", "MyMicFocusListener", "mogo-module-chat_debug"}) +public final class MogoAudioFocusImpl implements com.mogo.chat.util.audio.IAudioFocus { + private com.mogo.chat.util.audio.MogoAudioFocusImpl.MyMicFocusListener listener; + @org.jetbrains.annotations.NotNull() + private static final kotlin.Lazy mogoAudioFocusImpl$delegate = null; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.util.audio.MogoAudioFocusImpl.Companion Companion = null; + + @java.lang.Override() + public void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public boolean findMicFocus(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return false; + } + + @java.lang.Override() + public int getCurrentPriority(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return 0; + } + + @java.lang.Override() + public boolean sendGetFocusIntent(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return false; + } + + @java.lang.Override() + public void sendReleaseFocusIntent(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void unInit(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + private MogoAudioFocusImpl() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\b\n\u0000\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0016\u00a8\u0006\u0007"}, d2 = {"Lcom/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener;", "Lcom/zhidao/auto/micstrategy/MicStrategyManager$MicFocusListener;", "()V", "onMicFocuschanged", "", "i", "", "mogo-module-chat_debug"}) + public static final class MyMicFocusListener implements com.zhidao.auto.micstrategy.MicStrategyManager.MicFocusListener { + + /** + * 麦克风焦点状态 + * + * @param i + */ + @java.lang.Override() + public void onMicFocuschanged(int i) { + } + + public MyMicFocusListener() { + super(); + } + } + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u001b\u0010\u0003\u001a\u00020\u00048FX\u0086\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0007\u0010\b\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\t"}, d2 = {"Lcom/mogo/chat/util/audio/MogoAudioFocusImpl$Companion;", "", "()V", "mogoAudioFocusImpl", "Lcom/mogo/chat/util/audio/MogoAudioFocusImpl;", "getMogoAudioFocusImpl", "()Lcom/mogo/chat/util/audio/MogoAudioFocusImpl;", "mogoAudioFocusImpl$delegate", "Lkotlin/Lazy;", "mogo-module-chat_debug"}) + public static final class Companion { + + @org.jetbrains.annotations.NotNull() + public final com.mogo.chat.util.audio.MogoAudioFocusImpl getMogoAudioFocusImpl() { + return null; + } + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.kapt_metadata new file mode 100644 index 0000000000..1c49810aaf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/BaseSPKt.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/BaseSPKt.java new file mode 100644 index 0000000000..93d6d2262d --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/BaseSPKt.java @@ -0,0 +1,23 @@ +package com.mogo.chat.util.sp; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000$\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\u001a-\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u00032\u0017\u0010\u0004\u001a\u0013\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00010\u0005\u00a2\u0006\u0002\b\u0007H\u0086\b\u00f8\u0001\u0000\u001a-\u0010\b\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u00032\u0017\u0010\u0004\u001a\u0013\u0012\u0004\u0012\u00020\u0006\u0012\u0004\u0012\u00020\u00010\u0005\u00a2\u0006\u0002\b\u0007H\u0086\b\u00f8\u0001\u0000\u001a\u000e\u0010\t\u001a\u00020\n2\u0006\u0010\u0002\u001a\u00020\u0003\u0082\u0002\u0007\n\u0005\b\u009920\u0001\u00a8\u0006\u000b"}, d2 = {"getApplySp", "", "fileName", "", "action", "Lkotlin/Function1;", "Landroid/content/SharedPreferences$Editor;", "Lkotlin/ExtensionFunctionType;", "getCommitSP", "getSP", "Landroid/content/SharedPreferences;", "mogo-module-chat_debug"}) +public final class BaseSPKt { + + @org.jetbrains.annotations.NotNull() + public static final android.content.SharedPreferences getSP(@org.jetbrains.annotations.NotNull() + java.lang.String fileName) { + return null; + } + + public static final void getCommitSP(@org.jetbrains.annotations.NotNull() + java.lang.String fileName, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 action) { + } + + public static final void getApplySp(@org.jetbrains.annotations.NotNull() + java.lang.String fileName, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 action) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/BaseSPKt.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/BaseSPKt.kapt_metadata new file mode 100644 index 0000000000..1d9416fec2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/BaseSPKt.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.java new file mode 100644 index 0000000000..766d60efdd --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.java @@ -0,0 +1,72 @@ +package com.mogo.chat.util.sp; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000&\n\u0000\n\u0002\u0010\u000e\n\u0002\b\b\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\t\n\u0002\b\u0005\n\u0002\u0010\u0002\n\u0002\b\u000b\u001a\u0006\u0010\t\u001a\u00020\n\u001a\u0006\u0010\u000b\u001a\u00020\f\u001a\u0006\u0010\r\u001a\u00020\u000e\u001a\u0006\u0010\u000f\u001a\u00020\f\u001a\u0006\u0010\u0010\u001a\u00020\n\u001a\u0006\u0010\u0011\u001a\u00020\n\u001a\u0006\u0010\u0012\u001a\u00020\n\u001a\u000e\u0010\u0013\u001a\u00020\u00142\u0006\u0010\u0015\u001a\u00020\n\u001a\u0006\u0010\u0016\u001a\u00020\u0014\u001a\u000e\u0010\u0017\u001a\u00020\u00142\u0006\u0010\u0018\u001a\u00020\f\u001a\u000e\u0010\u0019\u001a\u00020\u00142\u0006\u0010\u001a\u001a\u00020\n\u001a\u000e\u0010\u001b\u001a\u00020\u00142\u0006\u0010\u001c\u001a\u00020\n\u001a\u000e\u0010\u001d\u001a\u00020\u00142\u0006\u0010\u001e\u001a\u00020\f\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0002\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0003\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0004\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0005\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0006\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0007\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\b\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001f"}, d2 = {"FILE_NAME", "", "PARAM_CALL_TIME", "PARAM_CAR_ONLINE_STATUS", "PARAM_FRIEND_LIST_CALL", "PARAM_NEW_FOCUS", "PARAM_ROOM_ID", "PARAM_VOICE_TYPE", "TEMPORARY_FILE_NAME", "getCarOnLineStatus", "", "getRoomId", "", "getTalkTime", "", "getVoiceType", "hasCallFromFriendList", "hasFocus", "hasRoomId", "newFocus", "", "focus", "recordCallTime", "saveRoomId", "roomId", "setCallFromFriendList", "call", "setCarOnLineStatus", "onLine", "setVoiceType", "voiceType", "mogo-module-chat_debug"}) +public final class SharedPreferenceUtil { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TEMPORARY_FILE_NAME = "temporary_im_data"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String FILE_NAME = "settings_im_data"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_ROOM_ID = "PARAM_ROOM_ID"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_FRIEND_LIST_CALL = "PARAM_FRIEND_LIST_CALL"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_NEW_FOCUS = "PARAM_NEW_FOCUS"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_VOICE_TYPE = "PARAM_VOICE_TYPE"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_CALL_TIME = "PARAM_CALL_TIME"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PARAM_CAR_ONLINE_STATUS = "PARAM_CAR_ONLINE_STATUS"; + + public static final void saveRoomId(int roomId) { + } + + public static final boolean hasRoomId() { + return false; + } + + public static final int getRoomId() { + return 0; + } + + public static final void setCallFromFriendList(boolean call) { + } + + public static final boolean hasCallFromFriendList() { + return false; + } + + public static final boolean hasFocus() { + return false; + } + + public static final void newFocus(boolean focus) { + } + + public static final void setVoiceType(int voiceType) { + } + + public static final int getVoiceType() { + return 0; + } + + public static final void setCarOnLineStatus(boolean onLine) { + } + + /** + * 本地缓存的在线隐身状态 + */ + public static final boolean getCarOnLineStatus() { + return false; + } + + public static final void recordCallTime() { + } + + public static final long getTalkTime() { + return 0L; + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.kapt_metadata new file mode 100644 index 0000000000..5738bdb204 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IMVoiceClient.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IMVoiceClient.java new file mode 100644 index 0000000000..c047f35b41 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IMVoiceClient.java @@ -0,0 +1,40 @@ +package com.mogo.chat.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000>\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000b\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0011\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\u0014\u001a\u00020\r2\u0006\u0010\u0015\u001a\u00020\u0016J\u0006\u0010\u0017\u001a\u00020\rJ(\u0010\u0018\u001a\u00020\r2\u0012\u0010\n\u001a\u000e\u0012\u0004\u0012\u00020\f\u0012\u0004\u0012\u00020\r0\u000b2\f\u0010\u000e\u001a\b\u0012\u0004\u0012\u00020\r0\u000fJ\u000e\u0010\u0019\u001a\u00020\r2\u0006\u0010\u0015\u001a\u00020\u0016R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0082T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u0010\u0010\b\u001a\u0004\u0018\u00010\tX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u001c\u0010\n\u001a\u0010\u0012\u0004\u0012\u00020\f\u0012\u0004\u0012\u00020\r\u0018\u00010\u000bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u000e\u001a\n\u0012\u0004\u0012\u00020\r\u0018\u00010\u000fX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u0016\u0010\u0010\u001a\b\u0012\u0004\u0012\u00020\u00040\u0011X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0012R\u0016\u0010\u0013\u001a\b\u0012\u0004\u0012\u00020\u00040\u0011X\u0082\u0004\u00a2\u0006\u0004\n\u0002\u0010\u0012\u00a8\u0006\u001a"}, d2 = {"Lcom/mogo/chat/voice/IMVoiceClient;", "", "()V", "REQUEST_CLOUD_VOICE_CALL", "", "REQUEST_VOICE_CALL", "VOICE_INTENT_ANSWER_CALL", "VOICE_INTENT_REFUSE_CALL", "intentRegister", "Lcom/mogo/service/intent/IMogoIntentManager;", "onCmdAgree", "Lkotlin/Function1;", "", "", "onSpeedFinish", "Lkotlin/Function0;", "requestCallNArray", "", "[Ljava/lang/String;", "requestCallYArray", "registerIntentInComingCall", "listener", "Lcom/mogo/chat/voice/IVoiceIntentListener;", "releaseSpeakAndRegisterCallback", "speakAndRegisterCall", "unRegisterIntentInComingCall", "mogo-module-chat_debug"}) +public final class IMVoiceClient { + private static com.mogo.service.intent.IMogoIntentManager intentRegister; + private static final java.lang.String REQUEST_VOICE_CALL = "\u4e3b\u4eba\uff0c\u6709\u65b0\u7684\u5c0f\u4f19\u4f34\u627e\u4f60\u804a\u5929\u5566\uff0c\u4f60\u8981\u63a5\u542c\u5417?\u4f60\u53ef\u4ee5\u8bf4\u201c\u63a5\u542c\u201d\u5f00\u542f\u901a\u8bdd\u3002\u6216\u8005\u8bf4\u201c\u6302\u65ad\u201d\u7ed3\u675f\u901a\u8bdd"; + private static final java.lang.String REQUEST_CLOUD_VOICE_CALL = "\u4e91\u5e73\u53f0\u8bf7\u6c42\u8ddf\u4f60\u8fdb\u884c\u8bed\u97f3\u901a\u8bdd"; + private static final java.lang.String[] requestCallYArray = {"\u63a5\u542c"}; + private static final java.lang.String[] requestCallNArray = {"\u6302\u65ad"}; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_ANSWER_CALL = "com.ileja.phone.incoming.accept"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String VOICE_INTENT_REFUSE_CALL = "com.ileja.phone.incoming.reject"; + private static kotlin.jvm.functions.Function1 onCmdAgree; + private static kotlin.jvm.functions.Function0 onSpeedFinish; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.chat.voice.IMVoiceClient INSTANCE = null; + + public final void registerIntentInComingCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.voice.IVoiceIntentListener listener) { + } + + public final void unRegisterIntentInComingCall(@org.jetbrains.annotations.NotNull() + com.mogo.chat.voice.IVoiceIntentListener listener) { + } + + public final void speakAndRegisterCall(@org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function1 onCmdAgree, @org.jetbrains.annotations.NotNull() + kotlin.jvm.functions.Function0 onSpeedFinish) { + } + + public final void releaseSpeakAndRegisterCallback() { + } + + private IMVoiceClient() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IMVoiceClient.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IMVoiceClient.kapt_metadata new file mode 100644 index 0000000000..93a018d39b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IMVoiceClient.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IVoiceIntentListener.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IVoiceIntentListener.java new file mode 100644 index 0000000000..4cc0180f07 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IVoiceIntentListener.java @@ -0,0 +1,27 @@ +package com.mogo.chat.voice; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001e\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\bf\u0018\u00002\u00020\u0001J\u001c\u0010\u0002\u001a\u00020\u00032\b\u0010\u0004\u001a\u0004\u0018\u00010\u00052\b\u0010\u0006\u001a\u0004\u0018\u00010\u0007H\u0016J\b\u0010\b\u001a\u00020\u0003H&J\b\u0010\t\u001a\u00020\u0003H&\u00a8\u0006\n"}, d2 = {"Lcom/mogo/chat/voice/IVoiceIntentListener;", "Lcom/mogo/service/intent/IMogoIntentListener;", "onIntentReceived", "", "intentStr", "", "intent", "Landroid/content/Intent;", "onVoiceAnswerCall", "onVoiceRefuseCall", "mogo-module-chat_debug"}) +public abstract interface IVoiceIntentListener extends com.mogo.service.intent.IMogoIntentListener { + + @java.lang.Override() + public abstract void onIntentReceived(@org.jetbrains.annotations.Nullable() + java.lang.String intentStr, @org.jetbrains.annotations.Nullable() + android.content.Intent intent); + + public abstract void onVoiceAnswerCall(); + + public abstract void onVoiceRefuseCall(); + + @kotlin.Metadata(mv = {1, 4, 2}, bv = {1, 0, 3}, k = 3) + public final class DefaultImpls { + + @java.lang.Override() + public static void onIntentReceived(@org.jetbrains.annotations.NotNull() + com.mogo.chat.voice.IVoiceIntentListener $this, @org.jetbrains.annotations.Nullable() + java.lang.String intentStr, @org.jetbrains.annotations.Nullable() + android.content.Intent intent) { + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IVoiceIntentListener.kapt_metadata b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IVoiceIntentListener.kapt_metadata new file mode 100644 index 0000000000..e5c798569e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/com/mogo/chat/voice/IVoiceIntentListener.kapt_metadata differ diff --git a/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java new file mode 100644 index 0000000000..73693e1c55 --- /dev/null +++ b/modules/mogo-module-chat/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java @@ -0,0 +1,4 @@ +package error; + +public final class NonExistentClass { +} \ No newline at end of file diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/META-INF/mogo-module-chat_debug.kotlin_module b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/META-INF/mogo-module-chat_debug.kotlin_module new file mode 100644 index 0000000000..8a5c0e1952 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/META-INF/mogo-module-chat_debug.kotlin_module differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/BaseAspectj$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/BaseAspectj$Companion.class new file mode 100644 index 0000000000..02d1726c4e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/BaseAspectj$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/BaseAspectj.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/BaseAspectj.class new file mode 100644 index 0000000000..4ddadd9e3f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/BaseAspectj.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/LogAspectj.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/LogAspectj.class new file mode 100644 index 0000000000..c106032714 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/aspect/LogAspectj.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..9deb6743ad Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..394694eee8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..c4ab9f37e5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController$requestUserInfo$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController.class new file mode 100644 index 0000000000..99935f32e8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$cancelMatch$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$cancelMatch$2.class new file mode 100644 index 0000000000..c7edce33c3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$cancelMatch$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$dealFocus$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$dealFocus$2.class new file mode 100644 index 0000000000..a564321b65 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$dealFocus$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$inviteJoinVehicleTeam$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$inviteJoinVehicleTeam$2.class new file mode 100644 index 0000000000..221b0696e3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$inviteJoinVehicleTeam$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$1.class new file mode 100644 index 0000000000..c7ecf2bf68 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$2.class new file mode 100644 index 0000000000..e537fa0eee Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$3.class new file mode 100644 index 0000000000..30cef9677f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestConnectStatus$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestFocusStatus$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestFocusStatus$2.class new file mode 100644 index 0000000000..43be609a7b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestFocusStatus$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestLiveCars$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestLiveCars$2.class new file mode 100644 index 0000000000..5951b083b6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestLiveCars$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestRoomInfo$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestRoomInfo$2.class new file mode 100644 index 0000000000..1977a74aa3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$requestRoomInfo$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$startMatch$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$startMatch$2.class new file mode 100644 index 0000000000..e18e1cb971 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$startMatch$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$switchCarStatus$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$switchCarStatus$2.class new file mode 100644 index 0000000000..bec67501b7 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository$switchCarStatus$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository.class new file mode 100644 index 0000000000..40d419534e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/base/BaseRepository.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController$Companion$callController$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController$Companion$callController$2.class new file mode 100644 index 0000000000..27ee35f418 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController$Companion$callController$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController$Companion.class new file mode 100644 index 0000000000..ddff48e594 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController.class new file mode 100644 index 0000000000..b02b468ea0 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallControllerHandler.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallControllerHandler.class new file mode 100644 index 0000000000..98d5fb5edf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallControllerHandler.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallInterceptor$WhenMappings.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallInterceptor$WhenMappings.class new file mode 100644 index 0000000000..04a07751c8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallInterceptor$WhenMappings.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallInterceptor.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallInterceptor.class new file mode 100644 index 0000000000..ca4b46b052 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallInterceptor.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallProxy.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallProxy.class new file mode 100644 index 0000000000..52a24c679d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallProxy.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallStatus.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallStatus.class new file mode 100644 index 0000000000..374ac298d2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager$Companion$callTypeManager$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager$Companion$callTypeManager$2.class new file mode 100644 index 0000000000..51d79042e0 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager$Companion$callTypeManager$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager$Companion.class new file mode 100644 index 0000000000..90d3125c58 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager.class new file mode 100644 index 0000000000..cba741c07b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/CallTypeManager.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$Companion$factory$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$Companion$factory$2.class new file mode 100644 index 0000000000..56ee6b853a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$Companion$factory$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$Companion.class new file mode 100644 index 0000000000..fd3028f7aa Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$1.class new file mode 100644 index 0000000000..5536e7fcfa Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$10.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$10.class new file mode 100644 index 0000000000..9973787270 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$10.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$2.class new file mode 100644 index 0000000000..14cc7e337f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$3.class new file mode 100644 index 0000000000..80412be10d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$4.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$4.class new file mode 100644 index 0000000000..2538cc92b4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$4.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$5.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$5.class new file mode 100644 index 0000000000..4b2e245457 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$5.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$6.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$6.class new file mode 100644 index 0000000000..9d54456889 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$6.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$7.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$7.class new file mode 100644 index 0000000000..22bc1cdf6d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$7.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$8.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$8.class new file mode 100644 index 0000000000..50453a9d3b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$8.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$9.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$9.class new file mode 100644 index 0000000000..f130956c68 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory$parseMessageToCallProxy$9.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory.class new file mode 100644 index 0000000000..edb1ced804 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ConvertFactory.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/DispatchMsg.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/DispatchMsg.class new file mode 100644 index 0000000000..cd27570ff9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/DispatchMsg.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/DispatchMsgKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/DispatchMsgKt.class new file mode 100644 index 0000000000..4be90d7cad Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/DispatchMsgKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallControl$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallControl$DefaultImpls.class new file mode 100644 index 0000000000..68a013b8c4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallControl$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallControl.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallControl.class new file mode 100644 index 0000000000..657ca1a58e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallControl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallMessage$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallMessage$DefaultImpls.class new file mode 100644 index 0000000000..411bdf73ea Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallMessage$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallMessage.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallMessage.class new file mode 100644 index 0000000000..ee257660a6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.class new file mode 100644 index 0000000000..c9e601d1e2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/ICallTypeChangedListener.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMType.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMType.class new file mode 100644 index 0000000000..e7a5a33024 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMType.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMTypeKt$WhenMappings.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMTypeKt$WhenMappings.class new file mode 100644 index 0000000000..4084154cae Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMTypeKt$WhenMappings.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMTypeKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMTypeKt.class new file mode 100644 index 0000000000..3753c096af Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/IMTypeKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBack$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBack$DefaultImpls.class new file mode 100644 index 0000000000..213cdce9ef Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBack$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBack.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBack.class new file mode 100644 index 0000000000..d36553001a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBack.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$1.class new file mode 100644 index 0000000000..43a8d606b4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$2.class new file mode 100644 index 0000000000..1f9d92da82 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$3.class new file mode 100644 index 0000000000..b5211f3873 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl$msgRefuseCall$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl.class new file mode 100644 index 0000000000..7bfcbb670b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/MessageCallBackImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion$socketClient$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion$socketClient$2.class new file mode 100644 index 0000000000..2eba7a2d6f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion$socketClient$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion.class new file mode 100644 index 0000000000..9cb1923fba Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory.class new file mode 100644 index 0000000000..33f894bda9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/callcenter/SocketClientFactory.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper$Companion.class new file mode 100644 index 0000000000..0ee6fc8e1b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper$mRunnable$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper$mRunnable$1.class new file mode 100644 index 0000000000..1ace2d180b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper$mRunnable$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper.class new file mode 100644 index 0000000000..5f3281f080 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/EnginePollHelper.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEApi$startSay$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEApi$startSay$1.class new file mode 100644 index 0000000000..b206137512 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEApi$startSay$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEApi.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEApi.class new file mode 100644 index 0000000000..91189563f3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEApi.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEHelper$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEHelper$Companion.class new file mode 100644 index 0000000000..5e72cabb7f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEHelper$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEHelper.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEHelper.class new file mode 100644 index 0000000000..a023e73737 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/GMEHelper.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$DefaultImpls.class new file mode 100644 index 0000000000..08dc949200 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$WhenMappings.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$WhenMappings.class new file mode 100644 index 0000000000..993d380cd6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$WhenMappings.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$onEvent$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$onEvent$1.class new file mode 100644 index 0000000000..46251e5a0c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$onEvent$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$onEvent$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$onEvent$2.class new file mode 100644 index 0000000000..74540a22a3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent$onEvent$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent.class new file mode 100644 index 0000000000..9426a6b635 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEvent.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEventCallBack.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEventCallBack.class new file mode 100644 index 0000000000..570583a491 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/IGMEEventCallBack.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$1.class new file mode 100644 index 0000000000..c021999225 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$Companion.class new file mode 100644 index 0000000000..dda1d4caa7 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.class new file mode 100644 index 0000000000..85332a6486 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/common/gme/TMGCallbackDispatcher.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/ConstKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/ConstKt.class new file mode 100644 index 0000000000..b0dae8ffe8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/ConstKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/HttpConstants$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/HttpConstants$Companion.class new file mode 100644 index 0000000000..3d6116bf3c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/HttpConstants$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/HttpConstants.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/HttpConstants.class new file mode 100644 index 0000000000..f756e85091 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/constant/HttpConstants.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CallApiException$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CallApiException$Companion.class new file mode 100644 index 0000000000..b526865cd2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CallApiException$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CallApiException.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CallApiException.class new file mode 100644 index 0000000000..11c3636d53 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CallApiException.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CommonException$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CommonException$Companion.class new file mode 100644 index 0000000000..d70c0c0766 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CommonException$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CommonException.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CommonException.class new file mode 100644 index 0000000000..67db1021da Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/exception/CommonException.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel$isOnLine$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel$isOnLine$2.class new file mode 100644 index 0000000000..ef77a090fd Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel$isOnLine$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel$queryUserInfo$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel$queryUserInfo$2.class new file mode 100644 index 0000000000..6660720219 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel$queryUserInfo$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel.class new file mode 100644 index 0000000000..746a6f78dc Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/ChatServiceModel.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$Companion.class new file mode 100644 index 0000000000..ef4eae4e39 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$dealBlackList$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$dealBlackList$2.class new file mode 100644 index 0000000000..8a04898334 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$dealBlackList$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$getFocusPage$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$getFocusPage$2.class new file mode 100644 index 0000000000..909684981b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel$getFocusPage$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel.class new file mode 100644 index 0000000000..3d233e7f10 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FocusModel.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$Companion.class new file mode 100644 index 0000000000..a33b57aea7 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$canCallToFocus$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$canCallToFocus$2.class new file mode 100644 index 0000000000..bafe34ce40 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$canCallToFocus$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$getFriendPage$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$getFriendPage$2.class new file mode 100644 index 0000000000..c0d5a2d1d3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel$getFriendPage$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel.class new file mode 100644 index 0000000000..fdc01f1a94 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/FriendModel.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AddFriendMessage.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AddFriendMessage.class new file mode 100644 index 0000000000..da830f3379 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AddFriendMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AllUnit.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AllUnit.class new file mode 100644 index 0000000000..1b7754648c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AllUnit.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AllUnitKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AllUnitKt.class new file mode 100644 index 0000000000..434bcdf5da Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/AllUnitKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CallRequestParam.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CallRequestParam.class new file mode 100644 index 0000000000..19dbf99efa Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CallRequestParam.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.class new file mode 100644 index 0000000000..fbd37c1824 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarAndUserInfoRedisVo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarMessage.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarMessage.class new file mode 100644 index 0000000000..9023366cb8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarSwitchStatus.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarSwitchStatus.class new file mode 100644 index 0000000000..3abb392339 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/CarSwitchStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/ConnectStatusParam.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/ConnectStatusParam.class new file mode 100644 index 0000000000..b8d527233e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/ConnectStatusParam.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusBlackListRequest.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusBlackListRequest.class new file mode 100644 index 0000000000..f3a76519c2 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusBlackListRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusData.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusData.class new file mode 100644 index 0000000000..8c00e4e447 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusData.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusList.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusList.class new file mode 100644 index 0000000000..61ed900a87 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusList.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusStatus.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusStatus.class new file mode 100644 index 0000000000..c5b3dd284f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FocusStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendData.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendData.class new file mode 100644 index 0000000000..d9076842ac Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendData.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendDataKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendDataKt.class new file mode 100644 index 0000000000..a82562ce7f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendDataKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendList.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendList.class new file mode 100644 index 0000000000..800d15e0d1 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendList.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.class new file mode 100644 index 0000000000..0e7d14bcaf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendOrSelfOnLine.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendRequest.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendRequest.class new file mode 100644 index 0000000000..dfa634dc6a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/FriendRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Header.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Header.class new file mode 100644 index 0000000000..efeb30fcaf Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Header.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/InflectionBean.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/InflectionBean.class new file mode 100644 index 0000000000..85ace9242a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/InflectionBean.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Info.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Info.class new file mode 100644 index 0000000000..bb3e0e0311 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Info.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/InitMessage.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/InitMessage.class new file mode 100644 index 0000000000..ca43a223f1 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/InitMessage.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LiveBroadcast.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LiveBroadcast.class new file mode 100644 index 0000000000..a0328a79c1 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LiveBroadcast.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LiveBroadcastResult.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LiveBroadcastResult.class new file mode 100644 index 0000000000..fc1f7e9c0b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LiveBroadcastResult.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.class new file mode 100644 index 0000000000..7a838fb812 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/LocationCarsWithRadius.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/MatchRequestParam.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/MatchRequestParam.class new file mode 100644 index 0000000000..780af07370 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/MatchRequestParam.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Message.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Message.class new file mode 100644 index 0000000000..f08526312d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Message.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/MessageKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/MessageKt.class new file mode 100644 index 0000000000..864a1f691c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/MessageKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/OnLineStatus.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/OnLineStatus.class new file mode 100644 index 0000000000..d0487d985e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/OnLineStatus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/PlayUrl.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/PlayUrl.class new file mode 100644 index 0000000000..6cec51b30b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/PlayUrl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/RealTimeLocationVo.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/RealTimeLocationVo.class new file mode 100644 index 0000000000..5f61039533 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/RealTimeLocationVo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Results.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Results.class new file mode 100644 index 0000000000..43d6f348da Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Results.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/RoomInfo.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/RoomInfo.class new file mode 100644 index 0000000000..754bb89128 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/RoomInfo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Sns.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Sns.class new file mode 100644 index 0000000000..f783f53c70 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/Sns.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SocketMsg.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SocketMsg.class new file mode 100644 index 0000000000..bce1cf6973 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SocketMsg.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SplashConfig.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SplashConfig.class new file mode 100644 index 0000000000..86f6b876e6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SplashConfig.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SplashConfigRequest.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SplashConfigRequest.class new file mode 100644 index 0000000000..e1c6824155 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/SplashConfigRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TeammateInfo.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TeammateInfo.class new file mode 100644 index 0000000000..22534642e6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TeammateInfo.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TopicGuide.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TopicGuide.class new file mode 100644 index 0000000000..af3e8e8add Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TopicGuide.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TopicRequest.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TopicRequest.class new file mode 100644 index 0000000000..c5872912c5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/TopicRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/UserInfoBySns.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/UserInfoBySns.class new file mode 100644 index 0000000000..a39132c50c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/UserInfoBySns.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.class new file mode 100644 index 0000000000..4950959e62 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/bean/UserInfoBySnsRequest.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..26a94ab451 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..472c07bbd5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..2231e5358f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestConnectStatus$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..4e88e816c9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..00d1e927a8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..ceb510736e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$1$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$1$1.class new file mode 100644 index 0000000000..3c3d598267 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController$requestRoomInfo$1$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController.class new file mode 100644 index 0000000000..a0f9367f17 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/ChatController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..7a0cde8587 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2$1$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2$1$1.class new file mode 100644 index 0000000000..b5761c3dfb Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2$1$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2$1.class new file mode 100644 index 0000000000..931be441c7 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..9dd895dfcb Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$1$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$1$1.class new file mode 100644 index 0000000000..05929245b7 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$cancelMatch$1$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..19bf103215 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..6ad06e1eab Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..068b2871c1 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startMatch$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startTimeOutRecord$1$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startTimeOutRecord$1$1.class new file mode 100644 index 0000000000..e404397e2e Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startTimeOutRecord$1$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startTimeOutRecord$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startTimeOutRecord$1.class new file mode 100644 index 0000000000..1ef5d2f2a5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController$startTimeOutRecord$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController.class new file mode 100644 index 0000000000..d62bc5a605 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/MatchController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..1509225a5b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..af4b99546c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..06dd74167c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1$$special$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1.class new file mode 100644 index 0000000000..9ad7c33015 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$2.class new file mode 100644 index 0000000000..4ebb680927 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$inviteJoinVehicleTeam$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..00edfb5536 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..084e5aa135 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..622ab786ce Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController$requestVehicleTeamConnectStatus$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController.class new file mode 100644 index 0000000000..77d6a0dd89 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/model/control/VehicleTeamController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/HttpApi.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/HttpApi.class new file mode 100644 index 0000000000..e2bb496e1c Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/HttpApi.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskAsync$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskAsync$1.class new file mode 100644 index 0000000000..08c5f6ef56 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskAsync$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskBlockOnMainThread$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskBlockOnMainThread$1.class new file mode 100644 index 0000000000..7bb41df9f3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskBlockOnMainThread$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskDelayAsync$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskDelayAsync$1.class new file mode 100644 index 0000000000..efa864d448 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt$taskDelayAsync$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt.class new file mode 100644 index 0000000000..faed7f4f17 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/net/TaskCoroutinesKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/provider/ServiceApi$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/provider/ServiceApi$Companion.class new file mode 100644 index 0000000000..6f75b6969a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/provider/ServiceApi$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/provider/ServiceApi.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/provider/ServiceApi.class new file mode 100644 index 0000000000..42f4a8ba6a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/provider/ServiceApi.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..a3a12beb3d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..c4f684d4d7 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..5f0080a879 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$addFriend$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1$1.class new file mode 100644 index 0000000000..978ea2a3b3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1$2.class new file mode 100644 index 0000000000..e4f5bec237 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1.class new file mode 100644 index 0000000000..16896e291d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$2.class new file mode 100644 index 0000000000..bfd967c6f3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$answer$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$1.class new file mode 100644 index 0000000000..6408e2682f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$2.class new file mode 100644 index 0000000000..201216ae48 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$3.class new file mode 100644 index 0000000000..b05f14336f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$4.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$4.class new file mode 100644 index 0000000000..7d6d254561 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$call$4.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..ccb6c9bdb4 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..fb3c6be725 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..2baa329406 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$invisibleUser$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..dc30817b1d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..5892ae3fdc Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..d02bbdcd04 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isFriend$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..5e6a2e5a4f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..2ddcb4d83a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..babdcdd964 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$isOnLine$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$1.class new file mode 100644 index 0000000000..442971ea6d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$2.class new file mode 100644 index 0000000000..0304ef394f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$3.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$3.class new file mode 100644 index 0000000000..1b45095017 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$queryUserInfo$$inlined$request$lambda$3.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$realCall$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$realCall$1.class new file mode 100644 index 0000000000..78f1615bae Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$realCall$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$realCall$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$realCall$2.class new file mode 100644 index 0000000000..35e90a7c15 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$realCall$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$startMatch$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$startMatch$1.class new file mode 100644 index 0000000000..a188c28735 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$startMatch$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$startMatch$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$startMatch$2.class new file mode 100644 index 0000000000..15b01c7b77 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler$startMatch$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler.class new file mode 100644 index 0000000000..850605e032 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/ChatServiceHandler.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$Companion.class new file mode 100644 index 0000000000..9ecf13dfef Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$WhenMappings.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$WhenMappings.class new file mode 100644 index 0000000000..7b3d4aa651 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$WhenMappings.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$init$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$init$1.class new file mode 100644 index 0000000000..d3037f9566 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$init$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgCallBack$1$handleMessage$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgCallBack$1$handleMessage$1.class new file mode 100644 index 0000000000..f4a2a76242 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgCallBack$1$handleMessage$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgCallBack$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgCallBack$1.class new file mode 100644 index 0000000000..a262efafb8 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgCallBack$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgSetting$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgSetting$1.class new file mode 100644 index 0000000000..5926ba1698 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService$socketMsgSetting$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService.class new file mode 100644 index 0000000000..929dae94f9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/IMService.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/InvokeDataProxy$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/InvokeDataProxy$Companion.class new file mode 100644 index 0000000000..7a6115fcfa Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/InvokeDataProxy$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/InvokeDataProxy.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/InvokeDataProxy.class new file mode 100644 index 0000000000..3cf2374170 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/service/InvokeDataProxy.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/AnalyticsUtilKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/AnalyticsUtilKt.class new file mode 100644 index 0000000000..49a5122dde Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/AnalyticsUtilKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$Companion$callTimer$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$Companion$callTimer$2.class new file mode 100644 index 0000000000..48a8c1a15f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$Companion$callTimer$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$Companion.class new file mode 100644 index 0000000000..737dbe145f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$start$1$invokeSuspend$$inlined$timerTask$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$start$1$invokeSuspend$$inlined$timerTask$1.class new file mode 100644 index 0000000000..c2cbfe0d2f Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$start$1$invokeSuspend$$inlined$timerTask$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$start$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$start$1.class new file mode 100644 index 0000000000..277ae5cfb9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer$start$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer.class new file mode 100644 index 0000000000..66b52ad5e6 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/CallTimer.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/DoubleCheckUtilKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/DoubleCheckUtilKt.class new file mode 100644 index 0000000000..1ef3145620 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/DoubleCheckUtilKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/LogUtil.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/LogUtil.class new file mode 100644 index 0000000000..f215bcbe40 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/LogUtil.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController$startPlay$1$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController$startPlay$1$1.class new file mode 100644 index 0000000000..9eab8ddc83 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController$startPlay$1$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController$startPlay$1$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController$startPlay$1$2.class new file mode 100644 index 0000000000..a9ab510461 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController$startPlay$1$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController.class new file mode 100644 index 0000000000..d95993aef9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/MediaController.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/UserInfoHelper.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/UserInfoHelper.class new file mode 100644 index 0000000000..6a5b81ced0 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/UserInfoHelper.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/AudioFocusImpl$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/AudioFocusImpl$Companion.class new file mode 100644 index 0000000000..d5362a70d9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/AudioFocusImpl$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/AudioFocusImpl.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/AudioFocusImpl.class new file mode 100644 index 0000000000..15381c7931 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/AudioFocusImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion$changAnAudioFocusImpl$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion$changAnAudioFocusImpl$2.class new file mode 100644 index 0000000000..996aac188b Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion$changAnAudioFocusImpl$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion.class new file mode 100644 index 0000000000..90cfb35b43 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$init$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$init$1.class new file mode 100644 index 0000000000..a2536f5eba Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$init$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$init$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$init$2.class new file mode 100644 index 0000000000..cd2b1c2c80 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl$init$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.class new file mode 100644 index 0000000000..2c8224a3e3 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/ChangAnAudioFocusImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/IAudioFocus$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/IAudioFocus$DefaultImpls.class new file mode 100644 index 0000000000..be7be25a3d Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/IAudioFocus$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/IAudioFocus.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/IAudioFocus.class new file mode 100644 index 0000000000..9558a1f3a5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/IAudioFocus.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion$mogoAudioFocusImpl$2.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion$mogoAudioFocusImpl$2.class new file mode 100644 index 0000000000..86a18e9941 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion$mogoAudioFocusImpl$2.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion.class new file mode 100644 index 0000000000..9a2e81ae6a Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$Companion.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener.class new file mode 100644 index 0000000000..93ec23da57 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl$MyMicFocusListener.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.class new file mode 100644 index 0000000000..e683700817 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/audio/MogoAudioFocusImpl.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/sp/BaseSPKt.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/sp/BaseSPKt.class new file mode 100644 index 0000000000..6d7e3c8260 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/sp/BaseSPKt.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.class new file mode 100644 index 0000000000..2d1f2d47f5 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/util/sp/SharedPreferenceUtil.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IMVoiceClient$speakAndRegisterCall$1.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IMVoiceClient$speakAndRegisterCall$1.class new file mode 100644 index 0000000000..ed589332be Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IMVoiceClient$speakAndRegisterCall$1.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IMVoiceClient.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IMVoiceClient.class new file mode 100644 index 0000000000..45dbee62fb Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IMVoiceClient.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IVoiceIntentListener$DefaultImpls.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IVoiceIntentListener$DefaultImpls.class new file mode 100644 index 0000000000..1781b8b972 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IVoiceIntentListener$DefaultImpls.class differ diff --git a/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IVoiceIntentListener.class b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IVoiceIntentListener.class new file mode 100644 index 0000000000..714fbdf7f9 Binary files /dev/null and b/modules/mogo-module-chat/build/tmp/kotlin-classes/debug/com/mogo/chat/voice/IVoiceIntentListener.class differ diff --git a/modules/mogo-module-common/proguard-rules.pro b/modules/mogo-module-common/proguard-rules.pro index cd20bd521c..7c855f7ca0 100644 --- a/modules/mogo-module-common/proguard-rules.pro +++ b/modules/mogo-module-common/proguard-rules.pro @@ -22,7 +22,5 @@ #-----CommonModule----- -keep class com.mogo.module.common.entity.** {*;} --keep class com.mogo.module.common.map.Interrupter --keep class com.mogo.module.common.map.Scene -keep class com.mogo.module.common.wm.** {*;} -keep class com.mogo.module.common.MogoModulePaths diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/ModuleType.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/ModuleType.java deleted file mode 100644 index 5d39c13bfb..0000000000 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/ModuleType.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.mogo.module.common; - -/** - * @author congtaowang - * @since 2020-01-03 - *

- * 模块类型 - */ -public interface ModuleType { - - /** - * 卡片类型 - fragment - */ - int TYPE_CARD_FRAGMENT = 1; - - /** - * 卡片类型 - view - */ - @Deprecated - int TYPE_CARD_VIEW = 2; - - /** - * 服务类型的模块 - */ - int TYPE_SERVICE = 3; - - /** - * APP 列表模块 - */ - @Deprecated - int TYPE_APP_LIST = 4; - - /** - * 小智语音形象 - */ - @Deprecated - int TYPE_VOICE = 5; - - /** - * 地图模块 - */ - @Deprecated - int TYPE_MAP = 6; - - /** - * 导航模块 - */ - @Deprecated - int TYPE_NAVI = 7; - - /** - * 小智、天气、时间等 - */ - @Deprecated - int TYPE_EXTENSION = 8; - - /** - * 操作快捷入口 - */ - @Deprecated - int TYPE_ENTRANCE = 9; -} diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/api/CallChatApi.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/api/CallChatApi.java deleted file mode 100644 index a5bb265f81..0000000000 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/api/CallChatApi.java +++ /dev/null @@ -1,63 +0,0 @@ -package com.mogo.module.common.api; - -import android.content.Context; - -import com.mogo.module.common.entity.MarkerOnlineCar; - -public -/** - * @author congtaowang - * @since 2020/9/24 - * - * 车聊聊接口 - */ -class CallChatApi { - - private static final String TAG = "CallChatApi"; - - private static volatile CallChatApi sInstance; - - private CallChatApi() { - //mApiProvider = ARouter.getInstance().navigation( ICarsChattingProvider.class ); - } - - public static CallChatApi getInstance() { - if ( sInstance == null ) { - synchronized ( CallChatApi.class ) { - if ( sInstance == null ) { - sInstance = new CallChatApi(); - } - } - } - return sInstance; - } - - public synchronized void release() { - sInstance = null; - } - - private Object readResolve() { - // 阻止反序列化,必须实现 Serializable 接口 - return sInstance; - } - - public void showUserWindow( Context context, MarkerOnlineCar onlineCar ) throws Exception { -// if ( mApiProvider == null ) { -// return; -// } -// MogoDriverInfo driverInfo = new MogoDriverInfo(); -// driverInfo.setAge( onlineCar.getUserInfo().getAgeNumber() ); -// driverInfo.setCarTypeName( onlineCar.getCarInfo().getCarTypeName() ); -// driverInfo.setGender( onlineCar.getUserInfo().getGender() ); -// driverInfo.setLat( onlineCar.getLocation().getLat() ); -// driverInfo.setLon( onlineCar.getLocation().getLon() ); -// driverInfo.setLocationInfo( onlineCar.getLocation().getAddress() ); -// driverInfo.setSn( onlineCar.getUserInfo().getSn() ); -// driverInfo.setUserHead( onlineCar.getUserInfo().getUserHead() ); -// driverInfo.setUserName( onlineCar.getUserInfo().getUserName() ); -// if ( mApiProvider != null ) { -// mApiProvider.showUserWindow( TAG, driverInfo, context ); -// } - } - -} diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/dialog/BaseFloatDialog.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/dialog/BaseFloatDialog.java index 4c047561dc..0c199daab8 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/dialog/BaseFloatDialog.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/dialog/BaseFloatDialog.java @@ -2,6 +2,7 @@ package com.mogo.module.common.dialog; import android.app.Dialog; import android.content.Context; +import android.os.Build; import android.view.WindowManager; import androidx.annotation.NonNull; @@ -31,12 +32,11 @@ public class BaseFloatDialog extends Dialog { } private void addFlag() { -// if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { -// getWindow().setType(WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY); -// } else { -// getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT); -// } - getWindow().setType(WindowManager.LayoutParams.LAST_SUB_WINDOW); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + getWindow().setType(WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY); + } else { + getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT); + } getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION | WindowManager.LayoutParams.FLAG_LOCAL_FOCUS_MODE); diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/Interrupter.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/Interrupter.java deleted file mode 100644 index b9883148df..0000000000 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/Interrupter.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.mogo.module.common.map; - -/** - * @author congtaowang - * @since 2020-04-10 - *

- * 拦截器 - */ -public interface Interrupter { - - /** - * 是否拦截 - * @return true - 拦截, false - 不拦截 - */ - boolean interrupt(); -} diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/MapCenterPoint.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/MapCenterPoint.java deleted file mode 100644 index 7d153e3bc9..0000000000 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/MapCenterPoint.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.mogo.module.common.map; - -/** - * @author congtaowang - * @since 2020-04-10 - *

- * 地图视图中心点 - */ -public class MapCenterPoint { - - public final double x; - public final double y; - - public MapCenterPoint( double x, double y ) { - this.x = x; - this.y = y; - } - -} diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/Scene.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/Scene.java deleted file mode 100644 index c65f727241..0000000000 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/map/Scene.java +++ /dev/null @@ -1,55 +0,0 @@ -package com.mogo.module.common.map; - -/** - * @author congtaowang - * @since 2020-04-10 - *

- * 描述 - */ -public interface Scene { - - /** - * 普通场景 - */ - int COMMON = 0; - - /** - * 选点 - */ - int CHOOSE_POINT = 1; - - /** - * 导航 - */ - int NAVI = 2; - - /** - * 导航 vs 道路事件 - */ - int NAVI_WITH_ROAD_EVENT = 21; - - /** - * 巡航 - */ - int AIMLESS = 3; - - /** - * 巡航 vs 道路事件 - */ - int AIMLESS_WITH_ROAD_EVENT = 31; - - /** - * 路线规划 - */ - int CALCULATE_PATH = 4; - - /** - * 分类搜索 - */ - int CATEGORY_SEARCH = 5; - - /** - * V2X触发了预警场景 - */ - int CATEGORY_V2X_EVENT = 6; -} diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerImpl.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerImpl.java index 72fda90c51..89f614f7bb 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerImpl.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerImpl.java @@ -8,10 +8,8 @@ import android.view.View; import android.view.WindowManager; /** - * 采用windowManager实现接口(取消系统级弹窗) - * {@link DialogImpl} + * 采用windowManager实现接口 */ -@Deprecated class WindowManagerImpl implements IWindowManagerView { private WindowManager mWindowManager; diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerView.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerView.java index 29b3d0a5a6..e5c0a562af 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerView.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/wm/WindowManagerView.java @@ -97,7 +97,6 @@ public class WindowManagerView { return new WindowManagerView( mParams, new DialogImpl() ); } - @Deprecated public WindowManagerView showInWindowManager() { if ( mParams.mContentView == null ) { throw new NullPointerException( "WMViewParams#mContentView must not be null." ); diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java index 47985d6f28..7414b9232d 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java @@ -19,7 +19,6 @@ import com.mogo.map.marker.IMogoMarkerClickListener; import com.mogo.map.marker.IMogoMarkerManager; import com.mogo.map.uicontroller.EnumMapUI; import com.mogo.module.common.ModuleNames; -import com.mogo.module.common.api.CallChatApi; import com.mogo.module.common.drawer.MarkerDrawer; import com.mogo.module.common.drawer.RoadConditionDrawer; import com.mogo.module.common.drawer.marker.IMarkerView; @@ -254,7 +253,7 @@ public class MapMarkerManager implements IMogoMarkerClickListener, } marker.setIcon(OnlineCarMarkerView.getInstance().getSelectedBitmap(getCarVehicleType(marker))); MarkerOnlineCar onlineCar = (MarkerOnlineCar) ((MarkerShowEntity) marker.getObject()).getBindObj(); - CallChatApi.getInstance().showUserWindow(mContext, onlineCar); + //车聊聊显示用户信息界面 } catch (Exception e) { } } diff --git a/settings.gradle b/settings.gradle index a4e3c5175e..391339c25e 100644 --- a/settings.gradle +++ b/settings.gradle @@ -44,7 +44,8 @@ include ':core:function-impl:mogo-core-function-monitoring' include ':core:function-impl:mogo-core-function-carcorder' // 调度业务 include ':core:function-impl:mogo-core-function-dispatch' - +// 绑定车机 +include ':core:function-impl:mogo-core-function-bindingcar' // 车聊聊业务 include ':core:function-impl:mogo-core-function-chat' diff --git a/test/crashreport-bugly/src/main/java/com/mogo/test/crashreport/bugly/BuglyCrashReportProvider.java b/test/crashreport-bugly/src/main/java/com/mogo/test/crashreport/bugly/BuglyCrashReportProvider.java index c2640b4b93..549dee35e9 100644 --- a/test/crashreport-bugly/src/main/java/com/mogo/test/crashreport/bugly/BuglyCrashReportProvider.java +++ b/test/crashreport-bugly/src/main/java/com/mogo/test/crashreport/bugly/BuglyCrashReportProvider.java @@ -6,7 +6,6 @@ import android.text.TextUtils; import com.alibaba.android.arouter.facade.annotation.Route; import com.mogo.cloud.passport.MoGoAiCloudClientConfig; import com.mogo.commons.debug.DebugConfig; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; import com.mogo.eagle.core.utilcode.util.AppUtils; import com.mogo.test.crashreport.CrashReportConstants; import com.mogo.test.crashreport.ITestCrashReportProvider; @@ -31,7 +30,6 @@ public class BuglyCrashReportProvider implements ITestCrashReportProvider { @Override public void init(Context context) { - Logger.d(TAG, "init"); String packageName = context.getPackageName(); String processName = getProcessName(android.os.Process.myPid()); CrashReport.UserStrategy strategy = new CrashReport.UserStrategy(context); diff --git a/tts/tts-zhi/src/main/java/com/mogo/tts/pad/ZhiTTS.java b/tts/tts-zhi/src/main/java/com/mogo/tts/pad/ZhiTTS.java index 97e33d0826..c8385b0a3c 100644 --- a/tts/tts-zhi/src/main/java/com/mogo/tts/pad/ZhiTTS.java +++ b/tts/tts-zhi/src/main/java/com/mogo/tts/pad/ZhiTTS.java @@ -5,7 +5,6 @@ import android.content.Intent; import android.text.TextUtils; import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.eagle.core.utilcode.mogo.logger.Logger; import com.mogo.eagle.core.utilcode.util.AppUtils; import com.mogo.tts.base.IMogoTTS; import com.mogo.tts.base.IMogoTTSCallback; @@ -43,7 +42,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { private Context mContext; public synchronized void release() { - Logger.d( TAG, "release" ); if ( mCmdMap != null && !mCmdMap.isEmpty() && mVoiceClient != null ) { for ( String cmd : mCmdMap.keySet() ) { try { @@ -109,7 +107,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { if ( !mCmdMap.containsKey( cmd ) ) { return; } - Logger.d( TAG, "received command: %s", cmd ); Iterator< IMogoTTSCallback > iterator = null; try { @@ -291,7 +288,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { mVoiceClient.registerCustomWakeupCmd( cmd, cmdWords ); mCacheUnWakeupCommands.remove( cmd ); } - Logger.i( TAG, "cache un wakeup command2. %s", cmd ); mCacheUnWakeupCommands.put( cmd, cmdWords ); } @@ -307,7 +303,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { mVoiceClient.registerCustomWakeupCmd( cmd, cmdWords ); mCacheUnWakeupCommands.remove( cmd ); } - Logger.i( TAG, "cache un wakeup command. %s", cmd ); mCacheUnWakeupCommands.put( cmd, cmdWords ); } @@ -361,7 +356,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { intent.setAction( "pvetec.intent.action.txz.switch" ); intent.putExtra( "window_start_cancel", status ); intent.putExtra( "extra_switch_type", "window_start_cancel" ); - Logger.d( TAG, "status = %d", status ); context.sendBroadcast( intent ); } @@ -370,7 +364,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { return; } mHasFlush = true; - Logger.d( TAG, "flush cache voice command when voice service ready." ); final Map< String, String[] > tmp = new HashMap<>( mCacheUnWakeupCommands ); for ( String cmd : tmp.keySet() ) { registerUnWakeupCommand( cmd, tmp.get( cmd ) ); @@ -383,7 +376,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { return true; } else if ( AppUtils.isProcessRunning( context, AppUtils.getPackageUid( context, "com.txznet.txz" ) ) && AppUtils.isProcessRunning( context, AppUtils.getPackageUid( context, "com.txznet.adapter" ) ) ) { - Logger.d( TAG, "txz is voiceServiceReady" ); return true; } return false; @@ -460,7 +452,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { mVoiceClient.setCallBack( this ); initFlushStatus(); initSpeech( context ); - Logger.w( TAG, "voice is ready = %s", mHasFlush ); } } @@ -476,7 +467,6 @@ class ZhiTTS implements IMogoTTS, VoiceClient.VoiceCmdCallBack, OnTtsListener { intent.setAction( "pvetec.intent.action.txz.switch" ); intent.putExtra( "window_start_cancel", status ); intent.putExtra( "extra_switch_type", "window_start_cancel" ); - Logger.d( TAG, "status = %d", status ); context.sendBroadcast( intent ); } }