blob: ccf54c1dbdd371d0f96aad5179e1a4a352686f5c [file] [log] [blame]
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("com.vanniktech.maven.publish")
}
dependencies {
implementation libs.kotlin.stdlib
}
android {
compileSdk versions.compileSdk
defaultConfig {
minSdk versions.minSdk
}
buildFeatures.buildConfig = false
namespace 'com.squareup.leakcanary.app.service'
lint {
checkOnly 'Interoperability'
disable 'GoogleAppIndexingWarning'
ignore 'InvalidPackage'
}
}
dependencies {
implementation projects.leakcanary.leakcanaryAppAidl
implementation projects.leakcanary.leakcanaryAndroidCore
implementation projects.shark.shark
implementation projects.shark.sharkAndroid
}