Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 9ef5eaa

Browse files
committed
fix(logsender): viewBinding in :logsender module adds dependency on AndroidX libraries (fixes #1199)
1 parent 89df8f2 commit 9ef5eaa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

logsender/build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ description = "LogSender is used to read logs from applications built with Andro
2424

2525
android {
2626
namespace = "${BuildConfig.packageName}.logsender"
27-
buildFeatures.aidl = true
2827

2928
defaultConfig {
3029
minSdk = 16
@@ -34,6 +33,12 @@ android {
3433
sourceCompatibility = JavaVersion.VERSION_1_8
3534
targetCompatibility = JavaVersion.VERSION_1_8
3635
}
36+
37+
@Suppress("UnstableApiUsage")
38+
buildFeatures.apply {
39+
aidl = true
40+
viewBinding = false
41+
}
3742
}
3843

3944
dependencies {

0 commit comments

Comments
 (0)