From 55b196ea2e28a8d859c85326f2147a4f7b7196de Mon Sep 17 00:00:00 2001 From: zuojincheng <lf_zuo@163.com> Date: 星期四, 10 四月 2025 10:58:32 +0800 Subject: [PATCH] feat(general): 新增开卡信息保存功能并优化界面布局- 新增 CardRegistrationBean 数据模型用于保存开卡信息 - 在数据库中添加 card_registration 表用于存储开卡记录 - 优化 NewCard2Activity 界面布局,调整样式和间距 - 添加协程支持,实现异步保存开卡信息到数据库 - 更新颜色配置,统一使用新加的 base_blue_bg 和 base_green_bg颜色 --- qiheonlinelibrary/build.gradle | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/qiheonlinelibrary/build.gradle b/qiheonlinelibrary/build.gradle index 3aacde8..473eed8 100644 --- a/qiheonlinelibrary/build.gradle +++ b/qiheonlinelibrary/build.gradle @@ -1,8 +1,8 @@ apply plugin: 'com.android.library' android { namespace 'com.dayu.qiheonlinelibrary' - compileSdk 33 - ndkPath 'D:\\android\\sdk\\ndk\\android-ndk-r21' + compileSdk 34 + ndkVersion '21.0.6113669' defaultConfig { minSdk 23 targetSdk 33 @@ -14,7 +14,7 @@ buildTypes { release { - minifyEnabled false + minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } @@ -33,6 +33,7 @@ path "CMakeLists.txt" } } + } dependencies { @@ -54,6 +55,7 @@ implementation project(':ocridcardlibrary') implementation project(':baselibrary') + compileOnly project(':pickerviewlibrary') //鏁版嵁搴� implementation "androidx.room:room-runtime:2.3.0" implementation "androidx.room:room-ktx:2.3.0" @@ -79,7 +81,8 @@ compileOnly 'io.github.scwang90:refresh-header-classics:2.0.5' compileOnly 'androidx.recyclerview:recyclerview:1.2.0'//缁忓吀鍒锋柊澶� - compileOnly 'com.wang.avi:library:2.1.3' + + compileOnly group: 'net.sourceforge.jexcelapi', name: 'jxl', version: '2.6.12' } -- Gitblit v1.8.0