blob: f861ae755c1b1b09eaf2d5e2f2ded877371e7af5 [file] [log] [blame]
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("com.vanniktech.maven.publish")
}
dependencies {
api(projects.objectWatcher.objectWatcherAndroidCore)
}
android {
resourcePrefix = "leak_canary_watcher_"
compileSdk = libs.versions.androidCompileSdk.get().toInt()
defaultConfig {
minSdk = libs.versions.androidMinSdk.get().toInt()
consumerProguardFiles("consumer-proguard-rules.pro")
}
buildFeatures {
buildConfig = false
}
namespace = "com.squareup.leakcanary.objectwatcher"
lint {
checkOnly += "Interoperability"
disable += "GoogleAppIndexingWarning"
}
}