feat: 埋点数据收集SDK

This commit is contained in:
yangxisong 2025-12-09 15:54:28 +08:00
parent 5ad22cc2da
commit 9c6f181097
1 changed files with 0 additions and 3 deletions

View File

@ -73,7 +73,6 @@ tasks.register("buildAar") {
group = "build"
description = "Cleans, builds, and copies release and debug AARs."
// This task depends on 'cleanAar', which will run first.
dependsOn("cleanAar", "assembleDebug", "assembleRelease")
doLast {
@ -81,14 +80,12 @@ tasks.register("buildAar") {
val debugDestDir = rootProject.file("aar/debug")
val aarVersion = project.version
// Copy release AAR
copy {
from(layout.buildDirectory.file("outputs/aar/library-release.aar"))
into(releaseDestDir)
rename { "trackingPoint-release-$aarVersion.aar" }
}
// Copy debug AAR
copy {
from(layout.buildDirectory.file("outputs/aar/library-debug.aar"))
into(debugDestDir)