From 99b11059aedf616df4ed3b74300fa59417568bc3 Mon Sep 17 00:00:00 2001 From: zuoxiao <470321431@qq.com> Date: 星期二, 08 四月 2025 16:37:38 +0800 Subject: [PATCH] feat: 添加单选按钮文本颜色资源文件 --- baselibrary/build.gradle | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/baselibrary/build.gradle b/baselibrary/build.gradle index a2a0dfa..cbf5578 100644 --- a/baselibrary/build.gradle +++ b/baselibrary/build.gradle @@ -1,7 +1,8 @@ apply plugin: 'com.android.library' android { - compileSdk 33 + namespace 'com.dayu.baselibrary' + compileSdk 34 defaultConfig { minSdk 23 targetSdk 26 @@ -26,12 +27,17 @@ viewBinding { enabled = true; } + sourceSets { + main { + aidl.srcDirs = ['src/main/aidl'] + } + } } dependencies { - compileOnly fileTree(include: ['*.jar'], dir: 'exlibs') + implementation fileTree(include: ['*.jar'], dir: 'exlibs') implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' -- Gitblit v1.8.0