feat: add errors app's target and min sdk record

This commit is contained in:
2023-10-22 23:13:26 +08:00
parent 66b9407b34
commit 936d66a81e
5 changed files with 60 additions and 0 deletions

View File

@@ -197,6 +197,36 @@
android:textColor="@color/white"
android:textSize="9sp" />
<TextView
android:id="@+id/app_target_sdk_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:background="@drawable/bg_blue_round"
android:ellipsize="end"
android:paddingLeft="3dp"
android:paddingTop="0.5dp"
android:paddingRight="3dp"
android:paddingBottom="0.5dp"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="9sp" />
<TextView
android:id="@+id/app_min_sdk_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:background="@drawable/bg_blue_round"
android:ellipsize="end"
android:paddingLeft="3dp"
android:paddingTop="0.5dp"
android:paddingRight="3dp"
android:paddingBottom="0.5dp"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="9sp" />
<TextView
android:id="@+id/app_version_text"
android:layout_width="wrap_content"

View File

@@ -149,4 +149,6 @@
<string name="record_count">%1$s records found</string>
<string name="ci_notice_dialog_title">CI Auto Build Instruction</string>
<string name="ci_notice_dialog_content">You are using a CI automated build with Commit ID %1$s.\n\nIt is automatically triggered and built after the code is committed, automatically compiled and released, and has not been tested for stability, use it at your own risk.</string>
<string name="app_target_sdk" translatable="false">Target %1$s</string>
<string name="app_min_sdk" translatable="false">Min %1$s</string>
</resources>