Forráskód Böngészése

refactor(清理)
- 删除无用资源和代码
- 启用人脸识别引擎

周文健 2 hónapja
szülő
commit
6680d0e5ea

+ 3 - 2
app/src/main/java/com/grkj/iscs/ISCSApplication.kt

@@ -13,6 +13,7 @@ import com.grkj.data.di.LogicManager
 import com.grkj.iscs.common.GlobalManager
 import com.grkj.iscs.features.splash.activity.SplashActivity
 import com.grkj.shared.model.EventBean
+import com.grkj.shared.utils.ArcSoftUtil
 import com.grkj.shared.utils.i18n.I18nManager
 import com.grkj.shared.utils.i18n.LanguageCatalog
 import com.grkj.shared.utils.i18n.LanguageStore
@@ -66,8 +67,8 @@ class ISCSApplication : Application() {
         DialogX.init(this)
         SIKCore.init(this)
         //todo 模拟器不支持
-//        ArcSoftUtil.checkActiveStatus(this)
-//        ArcSoftUtil.initEngine(this)
+        ArcSoftUtil.checkActiveStatus(this)
+        ArcSoftUtil.initEngine(this)
         if (!EventBus.getDefault().isRegistered(this)) {
             EventBus.getDefault().register(this)
         }

+ 0 - 23
ui-base/src/main/java/com/grkj/ui_base/utils/CommonUtils.kt

@@ -19,22 +19,6 @@ object CommonUtils {
 
     val hexRegex = "^[0-9A-Fa-f]+$".toRegex()
 
-    /**
-     * dip转像素
-     */
-    fun dip2px(dpValue: Float): Int {
-        val density = SIKCore.getApplication().resources.displayMetrics.density
-        return (dpValue * density + 0.5f).toInt()
-    }
-
-    /**
-     * 像素转dip
-     */
-    fun px2dip(pxValue: Float): Float {
-        val density = SIKCore.getApplication().resources.displayMetrics.density
-        return pxValue / density
-    }
-
     /**
      * 获取资源文本
      */
@@ -93,11 +77,4 @@ object CommonUtils {
         }
         return null
     }
-
-    /**
-     * 是否是Hex
-     */
-    fun isValidHex(hexString: String): Boolean {
-        return hexRegex.matches(hexString)
-    }
 }

+ 0 - 73
ui-base/src/main/java/com/grkj/ui_base/utils/GraphicUtils.kt

@@ -1,73 +0,0 @@
-package com.grkj.ui_base.utils
-
-import android.graphics.Path
-import android.graphics.PointF
-import com.google.android.material.badge.BadgeDrawable
-
-/**
- * 图形工具
- */
-object GraphicUtils {
-    /**
-     * 根据起点、定点(凸起最高点)、终点生成水滴状贝塞尔曲线
-     *
-     * @param start 起点
-     * @param peak 水滴凸起的顶点
-     * @param end 终点
-     * @param stretchFactor 控制凸起的拉伸程度,默认0.4f
-     */
-    fun createWaterDropPath(
-        start: PointF,
-        peak: PointF,
-        end: PointF,
-        stretchFactor: Float = 0.4f
-    ): Path {
-        val path = Path()
-        path.moveTo(start.x, start.y)
-
-        // 自动生成控制点
-        val controlPoint1 = PointF(
-            lerp(start.x, peak.x, stretchFactor),
-            lerp(start.y, peak.y, stretchFactor)
-        )
-
-        val controlPoint2 = PointF(
-            lerp(end.x, peak.x, stretchFactor),
-            lerp(end.y, peak.y, stretchFactor)
-        )
-
-        path.cubicTo(
-            controlPoint1.x, controlPoint1.y,
-            controlPoint2.x, controlPoint2.y,
-            end.x, end.y
-        )
-
-        return path
-    }
-
-    // 线性插值工具函数
-    fun lerp(start: Float, end: Float, fraction: Float) = start + (end - start) * fraction
-
-    /**
-     * 设置badgeSize
-     */
-    fun adjustBadgeSize(badgeDrawable: BadgeDrawable, scaleFactor: Float = 1.5f) {
-        val originalBounds = badgeDrawable.bounds
-
-        // 计算中心点
-        val centerX = originalBounds.centerX()
-        val centerY = originalBounds.centerY()
-
-        // 计算新尺寸
-        val halfWidth = originalBounds.width() * scaleFactor / 2
-        val halfHeight = originalBounds.height() * scaleFactor / 2
-
-        // 设置新的bounds
-        badgeDrawable.setBounds(
-            (centerX - halfWidth).toInt(),
-            (centerY - halfHeight).toInt(),
-            (centerX + halfWidth).toInt(),
-            (centerY + halfHeight).toInt()
-        )
-    }
-}

+ 0 - 12
ui-base/src/main/res/drawable/common_btn_primary.xml

@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<ripple xmlns:android="http://schemas.android.com/apk/res/android"
-    android:color="?attr/rippleColor">
-    <item>
-        <shape android:shape="rectangle">
-            <solid android:color="?attr/colorPrimary"/>
-            <corners android:radius="@dimen/iscs_radius_md"/>
-        </shape>
-    </item>
-</ripple>
-
-

+ 0 - 23
ui-base/src/main/res/drawable/icon_fingerprint.xml

@@ -1,23 +0,0 @@
-<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="200dp" android:viewportHeight="1024" android:viewportWidth="1024" android:width="200dp">
-      
-    <path android:fillColor="#707070" android:pathData="M85.3,608c-6.4,0 -10.7,-4.3 -10.7,-8.5 -10.7,-51.2 -12.8,-102.4 -4.3,-151.5 6.4,-49.1 21.3,-96 44.8,-140.8 2.1,-6.4 10.7,-8.5 14.9,-4.3 6.4,2.1 8.5,10.7 4.3,14.9 -21.3,42.7 -36.3,85.3 -42.7,132.3 -6.4,46.9 -6.4,96 4.3,145.1 2.1,6.4 -2.1,12.8 -8.5,12.8H85.3m74.7,-341.3c-2.1,0 -4.3,0 -6.4,-2.1 -4.3,-4.3 -6.4,-10.7 -2.1,-17.1 66.1,-89.6 162.1,-151.5 273.1,-174.9 98.1,-19.2 196.3,-6.4 285.9,36.3 6.4,2.1 8.5,10.7 6.4,14.9 -2.1,6.4 -10.7,8.5 -14.9,6.4 -85.3,-40.5 -177.1,-53.3 -270.9,-34.1 -104.5,21.3 -196.3,78.9 -258.1,164.3 -4.3,4.3 -8.5,6.4 -12.8,6.4m778.7,170.7c-6.4,0 -10.7,-4.3 -10.7,-8.5 -21.3,-106.7 -83.2,-200.5 -170.7,-262.4 -4.3,-4.3 -6.4,-10.7 -2.1,-17.1 4.3,-4.3 10.7,-6.4 17.1,-2.1 93.9,66.1 157.9,164.3 181.3,277.3 2.1,6.4 -2.1,12.8 -8.5,12.8H938.7"/>
-      
-    <path android:fillColor="#707070" android:pathData="M947.2,531.2c-6.4,0 -12.8,-6.4 -10.7,-12.8 0,-29.9 -2.1,-61.9 -8.5,-91.7 -2.1,-6.4 2.1,-12.8 8.5,-12.8 6.4,-2.1 12.8,2.1 12.8,8.5 6.4,32 8.5,64 8.5,98.1 2.1,6.4 -4.3,10.7 -10.7,10.7M89.6,627.2c-4.3,0 -10.7,-4.3 -10.7,-8.5 -2.1,-6.4 -2.1,-12.8 -4.3,-19.2 -2.1,-6.4 2.1,-12.8 8.5,-12.8 6.4,-2.1 12.8,2.1 12.8,8.5 2.1,6.4 2.1,12.8 4.3,17.1 2.1,6.4 -2.1,12.8 -8.5,14.9h-2.1m311.5,315.7c-2.1,0 -6.4,0 -8.5,-2.1 -4.3,-4.3 -6.4,-10.7 -2.1,-17.1 46.9,-53.3 83.2,-119.5 102.4,-187.7 19.2,-72.5 23.5,-147.2 8.5,-221.9 -2.1,-6.4 2.1,-12.8 8.5,-12.8 6.4,-2.1 12.8,2.1 12.8,8.5 14.9,78.9 12.8,155.7 -8.5,232.5 -19.2,72.5 -57.6,140.8 -106.7,198.4 0,2.1 -4.3,2.1 -6.4,2.1"/>
-      
-    <path android:fillColor="#707070" android:pathData="M343.5,923.7c-2.1,0 -6.4,-2.1 -8.5,-4.3 -4.3,-4.3 -4.3,-12.8 0,-17.1 40.5,-40.5 70.4,-89.6 91.7,-142.9 2.1,-6.4 8.5,-8.5 14.9,-6.4 6.4,2.1 8.5,8.5 6.4,14.9 -21.3,55.5 -55.5,106.7 -96,149.3 -2.1,6.4 -4.3,6.4 -8.5,6.4"/>
-      
-    <path android:fillColor="#707070" android:pathData="M460.8,955.7c-2.1,0 -4.3,0 -6.4,-2.1 -4.3,-4.3 -6.4,-10.7 -2.1,-17.1 96,-123.7 134.4,-281.6 102.4,-433.1v-4.3c-2.1,-10.7 -8.5,-17.1 -17.1,-23.5 -8.5,-6.4 -21.3,-8.5 -32,-6.4 -21.3,4.3 -36.3,23.5 -34.1,44.8l2.1,6.4c12.8,59.7 12.8,121.6 0,181.3 -2.1,6.4 -8.5,10.7 -14.9,8.5 -6.4,-2.1 -10.7,-8.5 -8.5,-14.9 10.7,-53.3 12.8,-106.7 2.1,-160l-4.3,-10.7c-6.4,-36.3 17.1,-70.4 51.2,-78.9 17.1,-4.3 34.1,0 49.1,10.7 14.9,10.7 25.6,25.6 27.7,42.7l2.1,10.7c27.7,155.7 -10.7,315.7 -108.8,441.6 -2.1,2.1 -4.3,4.3 -8.5,4.3m-168.5,-57.6c-2.1,0 -6.4,-2.1 -8.5,-4.3 -4.3,-4.3 -4.3,-12.8 0,-17.1 87.5,-81.1 130.1,-200.5 113.1,-320 0,-6.4 4.3,-12.8 10.7,-12.8s12.8,4.3 12.8,10.7c17.1,125.9 -27.7,251.7 -121.6,339.2 0,4.3 -4.3,4.3 -6.4,4.3"/>
-      
-    <path android:fillColor="#707070" android:pathData="M631.5,618.7c-6.4,0 -10.7,-4.3 -10.7,-10.7 0,-38.4 -4.3,-76.8 -10.7,-115.2v-4.3c-6.4,-23.5 -19.2,-44.8 -40.5,-57.6 -21.3,-14.9 -46.9,-19.2 -72.5,-14.9 -38.4,8.5 -68.3,38.4 -76.8,74.7 -2.1,6.4 -8.5,10.7 -14.9,8.5 -6.4,-2.1 -10.7,-8.5 -8.5,-14.9 10.7,-46.9 46.9,-83.2 93.9,-93.9 32,-6.4 64,0 91.7,17.1 27.7,17.1 44.8,44.8 51.2,76.8l2.1,8.5c6.4,36.3 10.7,72.5 10.7,110.9 -4.3,10.7 -8.5,14.9 -14.9,14.9zM526.9,957.9c-2.1,0 -4.3,0 -6.4,-2.1 -6.4,-4.3 -6.4,-10.7 -2.1,-17.1 53.3,-78.9 87.5,-170.7 98.1,-264.5 0,-6.4 6.4,-10.7 12.8,-10.7s10.7,6.4 10.7,12.8c-10.7,98.1 -46.9,194.1 -102.4,275.2 -4.3,4.3 -8.5,6.4 -10.7,6.4"/>
-      
-    <path android:fillColor="#707070" android:pathData="M245.3,866.1c-4.3,0 -6.4,-2.1 -8.5,-4.3 -4.3,-4.3 -4.3,-12.8 2.1,-17.1 40.5,-36.3 72.5,-83.2 91.7,-134.4 17.1,-49.1 21.3,-102.4 12.8,-155.7l-2.1,-8.5c-8.5,-46.9 0,-91.7 25.6,-132.3 25.6,-38.4 66.1,-66.1 110.9,-74.7 14.9,-4.3 32,-4.3 49.1,-2.1 6.4,0 10.7,6.4 10.7,12.8s-6.4,10.7 -12.8,10.7c-14.9,-2.1 -27.7,0 -42.7,2.1 -40.5,8.5 -74.7,32 -96,64s-29.9,68.3 -23.5,104.5l2.1,8.5c12.8,59.7 8.5,121.6 -12.8,179.2 -19.2,55.5 -53.3,104.5 -98.1,145.1 -2.1,2.1 -4.3,2.1 -8.5,2.1m349.9,83.2c-2.1,0 -4.3,0 -6.4,-2.1 -6.4,-4.3 -8.5,-10.7 -4.3,-17.1 78.9,-136.5 106.7,-296.5 74.7,-450.1v-4.3c-10.7,-40.5 -36.3,-76.8 -74.7,-98.1 -6.4,-4.3 -8.5,-10.7 -4.3,-17.1 4.3,-6.4 10.7,-8.5 17.1,-4.3 44.8,25.6 76.8,68.3 87.5,117.3l2.1,10.7c29.9,157.9 0,320 -81.1,456.5 -2.1,6.4 -6.4,8.5 -10.7,8.5"/>
-      
-    <path android:fillColor="#707070" android:pathData="M204.8,829.9c-4.3,0 -6.4,-2.1 -8.5,-4.3 -4.3,-4.3 -4.3,-10.7 0,-14.9 34.1,-27.7 61.9,-66.1 78.9,-108.8 2.1,-6.4 8.5,-8.5 14.9,-6.4 6.4,2.1 8.5,8.5 6.4,14.9 -17.1,44.8 -46.9,85.3 -85.3,117.3 -2.1,2.1 -4.3,2.1 -6.4,2.1m524.8,-96c-8.5,-2.1 -12.8,-6.4 -10.7,-12.8 12.8,-83.2 12.8,-166.4 -4.3,-249.6v-4.3c-10.7,-53.3 -42.7,-98.1 -87.5,-128 -44.8,-29.9 -100.3,-40.5 -155.7,-29.9 -53.3,10.7 -100.3,42.7 -130.1,87.5 -27.7,42.7 -40.5,93.9 -32,145.1l2.1,10.7c6.4,27.7 6.4,57.6 4.3,87.5 0,6.4 -6.4,10.7 -12.8,10.7s-10.7,-6.4 -10.7,-12.8c2.1,-23.5 2.1,-44.8 -2.1,-68.3l-2.1,-10.7c-12.8,-59.7 0,-121.6 34.1,-172.8s85.3,-85.3 145.1,-98.1c59.7,-12.8 121.6,0 172.8,34.1s85.3,85.3 98.1,145.1l2.1,6.4c14.9,81.1 14.9,166.4 2.1,251.7 -2.1,4.3 -6.4,8.5 -12.8,8.5m-61.9,196.3c-2.1,0 -4.3,0 -4.3,-2.1 -6.4,-2.1 -8.5,-10.7 -6.4,-14.9 19.2,-40.5 36.3,-81.1 46.9,-123.7 2.1,-6.4 8.5,-10.7 14.9,-8.5 6.4,2.1 10.7,8.5 8.5,14.9 -12.8,44.8 -27.7,87.5 -49.1,128 -2.1,2.1 -6.4,6.4 -10.7,6.4"/>
-      
-    <path android:fillColor="#707070" android:pathData="M744.5,891.7h-4.3c-6.4,-2.1 -8.5,-8.5 -6.4,-14.9 51.2,-132.3 61.9,-273.1 34.1,-411.7v-2.1c-8.5,-36.3 -23.5,-70.4 -44.8,-102.4 -4.3,-4.3 -2.1,-12.8 2.1,-17.1 4.3,-4.3 12.8,-2.1 17.1,2.1 23.5,32 38.4,68.3 46.9,106.7v4.3c29.9,142.9 17.1,292.3 -36.3,428.8 0,2.1 -4.3,6.4 -8.5,6.4m-59.7,-578.1c-2.1,0 -4.3,0 -6.4,-2.1 -59.7,-49.1 -138.7,-70.4 -215.5,-53.3 -19.2,4.3 -38.4,10.7 -57.6,19.2 -6.4,2.1 -12.8,0 -14.9,-6.4 -2.1,-6.4 0,-12.8 6.4,-14.9 19.2,-8.5 40.5,-14.9 61.9,-19.2 83.2,-17.1 170.7,4.3 236.8,59.7 4.3,4.3 6.4,10.7 2.1,17.1 -6.4,-2.1 -8.5,0 -12.8,0M168.5,789.3c-4.3,0 -6.4,-2.1 -8.5,-4.3 -4.3,-4.3 -4.3,-12.8 2.1,-17.1 57.6,-46.9 85.3,-119.5 74.7,-192l-2.1,-8.5c-21.3,-104.5 17.1,-209.1 100.3,-277.3 4.3,-4.3 12.8,-4.3 17.1,2.1 4.3,4.3 4.3,12.8 -2.1,17.1 -72.5,59.7 -108.8,151.5 -93.9,243.2l2.1,10.7c17.1,85.3 -14.9,170.7 -81.1,224 -4.3,2.1 -6.4,2.1 -8.5,2.1"/>
-      
-    <path android:fillColor="#707070" android:pathData="M138.7,744.5c-4.3,0 -6.4,-2.1 -8.5,-4.3 -4.3,-4.3 -4.3,-12.8 2.1,-17.1 40.5,-34.1 59.7,-87.5 51.2,-138.7l-2.1,-6.4c-4.3,-17.1 -6.4,-36.3 -6.4,-53.3 0,-6.4 4.3,-12.8 10.7,-12.8s12.8,4.3 12.8,10.7c0,12.8 2.1,25.6 4.3,40.5l2.1,10.7c12.8,61.9 -10.7,128 -57.6,168.5 -4.3,2.1 -6.4,2.1 -8.5,2.1m701.9,-243.2c-6.4,0 -10.7,-4.3 -10.7,-10.7 -2.1,-12.8 -4.3,-23.5 -6.4,-36.3l-2.1,-6.4c-17.1,-83.2 -64,-153.6 -134.4,-200.5s-153.6,-64 -236.8,-46.9c-64,12.8 -119.5,44.8 -164.3,91.7 -42.7,44.8 -72.5,102.4 -83.2,164.3 -2.1,6.4 -6.4,10.7 -12.8,8.5 -6.4,-2.1 -10.7,-6.4 -10.7,-12.8 10.7,-66.1 42.7,-128 89.6,-177.1 46.9,-49.1 108.8,-83.2 177.1,-98.1 87.5,-17.1 179.2,0 253.9,49.1 72.5,49.1 123.7,121.6 142.9,206.9l2.1,8.5c2.1,14.9 6.4,27.7 8.5,42.7 0,8.5 -6.4,14.9 -12.8,17.1m-19.2,328.5h-2.1c-6.4,-2.1 -10.7,-8.5 -8.5,-14.9 21.3,-83.2 29.9,-170.7 25.6,-256 0,-6.4 4.3,-12.8 10.7,-12.8s12.8,4.3 12.8,10.7c6.4,89.6 -4.3,177.1 -25.6,264.5 -2.1,4.3 -8.5,8.5 -12.8,8.5"/>
-      
-    <path android:fillColor="#707070" android:pathData="M113.1,693.3c-2.1,0 -6.4,0 -8.5,-2.1 -4.3,-4.3 -4.3,-12.8 0,-17.1 21.3,-21.3 29.9,-51.2 25.6,-81.1v-4.3c-21.3,-102.4 0,-206.9 57.6,-294.4s147.2,-147.2 249.6,-168.5c42.7,-8.5 87.5,-10.7 130.1,-4.3 4.3,2.1 8.5,6.4 8.5,12.8s-6.4,10.7 -12.8,10.7c-40.5,-6.4 -81.1,-4.3 -121.6,4.3 -96,19.2 -179.2,74.7 -234.7,157.9 -55.5,81.1 -74.7,174.9 -57.6,270.9l2.1,6.4c8.5,38.4 -4.3,76.8 -29.9,106.7 -2.1,2.1 -6.4,2.1 -8.5,2.1M896,727.5c-8.5,0 -12.8,-6.4 -10.7,-12.8 10.7,-89.6 8.5,-179.2 -8.5,-268.8l-2.1,-8.5c-25.6,-130.1 -121.6,-236.8 -249.6,-279.5 -6.4,-2.1 -8.5,-8.5 -8.5,-14.9 2.1,-6.4 8.5,-10.7 14.9,-8.5 132.3,42.7 232.5,151.5 262.4,285.9l2.1,10.7c19.2,93.9 23.5,189.9 10.7,283.7 0,8.5 -4.3,12.8 -10.7,12.8"/>
-    
-</vector>

+ 0 - 29
ui-base/src/main/res/layout/item_nav.xml

@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layout xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <LinearLayout
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:gravity="center"
-        android:orientation="vertical"
-        android:padding="4dp">
-
-        <!-- 菜单图标 -->
-        <ImageView
-            android:id="@+id/nav_icon"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:contentDescription="@null" />
-
-        <!-- 菜单文字 -->
-        <TextView
-            android:id="@+id/nav_label"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_marginTop="2dp"
-            android:ellipsize="end"
-            android:singleLine="true"
-            android:textColor="?attr/colorOnSurface"
-            android:textSize="12sp" />
-    </LinearLayout>
-</layout>

+ 1 - 5
ui-base/src/main/res/values/colors_palette.xml

@@ -15,7 +15,7 @@
     <color name="palette_white">#FFFFFF</color>
     <color name="palette_white_20">#33FFFFFF</color>
     <color name="palette_white_30">#4DFFFFFF</color>
-    <color name="palette_white_38">#61FFFFFF</color>  <!-- 38% 白(更标准) -->
+    <!-- 38% 白(更标准) -->
     <color name="palette_white_40">#66FFFFFF</color>
     <color name="palette_white_80">#CCFFFFFF</color>
     <color name="palette_white_90">#E6FFFFFF</color>
@@ -51,12 +51,8 @@
     <color name="palette_green_deep">#15B56B</color>
 
     <color name="palette_red_bright">#FF5A5F</color>
-    <color name="palette_red_deep">#C0353A</color>
 
     <color name="palette_yellow_bright">#F8D141</color>
-    <color name="palette_orange">#ECAD05</color>
-
-    <color name="palette_pink_bright">#FFC9C9</color>
 
     <!-- 你的自定义基色(保持语义) -->
     <color name="dirtyColor_base">@color/palette_red_bright</color>

+ 0 - 7
ui-base/src/main/res/values/dimens.xml

@@ -3,7 +3,6 @@
     <dimen name="common_text_padding">5dp</dimen>
     <dimen name="common_spacing">10dp</dimen>
     <dimen name="common_spacing_2x">20dp</dimen>
-    <dimen name="common_spacing_small">5dp</dimen>
     <dimen name="common_margin_spacing_big">40dp</dimen>
     <dimen name="common_icon_size">15dp</dimen>
     <dimen name="common_status_circle_small">5dp</dimen>
@@ -19,7 +18,6 @@
 
     <dimen name="divider_line_space">1dp</dimen>
     <dimen name="tip_dialog_btn_width">70dp</dimen>
-    <dimen name="tip_dialog_btn_height">30dp</dimen>
     <dimen name="tip_dialog_header_height">44dp</dimen>
     <dimen name="tip_dialog_width">500dp</dimen>
     <dimen name="tip_dialog_height">280dp</dimen>
@@ -31,14 +29,11 @@
     <dimen name="iscs_radius_xs">3dp</dimen>
     <dimen name="iscs_radius_sm">5dp</dimen>
     <dimen name="iscs_radius_md">10dp</dimen>
-    <dimen name="iscs_radius_lg">15dp</dimen>
     <dimen name="iscs_radius_xl">20dp</dimen>
 
     <!-- 间距(dp,按4dp栅格:space_2 = 8dp) -->
-    <dimen name="iscs_space_0">0dp</dimen>
     <dimen name="iscs_space_1">5dp</dimen>
     <dimen name="iscs_space_2">10dp</dimen>
-    <dimen name="iscs_space_3">15dp</dimen>
     <dimen name="iscs_space_4">20dp</dimen>
     <dimen name="iscs_space_5">40dp</dimen>
 
@@ -47,7 +42,6 @@
     <dimen name="iscs_text_xs">13sp</dimen>
     <dimen name="iscs_text_sm">15sp</dimen>
     <dimen name="iscs_text_md">18sp</dimen>
-    <dimen name="iscs_text_mmd">20sp</dimen>
     <dimen name="iscs_text_lg">25sp</dimen>
     <dimen name="iscs_text_xl">28sp</dimen>
     <dimen name="iscs_text_h1">60sp</dimen>
@@ -55,6 +49,5 @@
 
     <!-- 线宽/海拔 -->
     <dimen name="iscs_stroke_sm">1dp</dimen>
-    <dimen name="iscs_elevation_1">2dp</dimen>
 
 </resources>