From 80eb39909e0d5c181dc8d6e282a292146ec51e21 Mon Sep 17 00:00:00 2001
From: zuoxiao <lf_zuo@163.com>
Date: 星期三, 25 六月 2025 14:36:04 +0800
Subject: [PATCH] refactor(card): 重构卡片制作流程并添加项目号支持
---
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