feat(android): add Pinduoduo search probe

This commit is contained in:
QiuSW
2026-07-25 19:40:19 +08:00
parent 1c1c158149
commit f226d0f2ff
21 changed files with 1356 additions and 70 deletions
+7 -1
View File
@@ -64,7 +64,13 @@ android {
}
into(generatedProbeAssets.map { it.dir("probe-fixtures") })
}
tasks.matching { it.name == "mergeDebugAssets" }.configureEach {
tasks.matching {
it.name == "mergeDebugAssets" ||
(
it.name.contains("Debug") &&
it.name.contains("lint", ignoreCase = true)
)
}.configureEach {
dependsOn(syncProbeFixtures)
}
}