From effd64731ed5d01a211f40250bceca38caf1c5a4 Mon Sep 17 00:00:00 2001 From: Sinyu <1341156974@qq.com> Date: Mon, 25 Nov 2024 12:17:41 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20Android=20=E5=91=BD?= =?UTF-8?q?=E5=90=8D=E7=A9=BA=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在 android/build.gradle 文件中为项目指定了一个新的命名空间 'io.github.v7lin.tencent_kit'。这有助于在 Android 应用中更好地组织和管理代码,提高模块间的隔离性和可维护性。 --- android/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 5c604f7..25c8303 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -39,6 +39,11 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { + if (project.android.hasProperty('namespace') || + getGradle().getGradleVersion().substring(0, 1).toInteger() >= 8) { + namespace 'io.github.v7lin.tencent_kit' + } + compileSdkVersion 31 compileOptions { From a3c732f32099aa00439c9747efe579ed908f91d2 Mon Sep 17 00:00:00 2001 From: Sinyu <1341156974@qq.com> Date: Wed, 11 Dec 2024 11:25:15 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BC=98=E5=8C=96=20Android=20namespace=20?= =?UTF-8?q?=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 25c8303..04e336f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -39,8 +39,7 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { - if (project.android.hasProperty('namespace') || - getGradle().getGradleVersion().substring(0, 1).toInteger() >= 8) { + if (project.android.hasProperty('namespace')) { namespace 'io.github.v7lin.tencent_kit' }