xref: /aosp_15_r20/external/leakcanary2/leakcanary-object-watcher-android/build.gradle (revision d9e8da70d8c9df9a41d7848ae506fb3115cae6e6)
1plugins {
2  id("com.android.library")
3  id("org.jetbrains.kotlin.android")
4  id("com.vanniktech.maven.publish")
5}
6
7dependencies {
8  api projects.leakcanaryObjectWatcherAndroidCore
9}
10
11android {
12  resourcePrefix 'leak_canary_watcher_'
13  compileSdk versions.compileSdk
14
15  defaultConfig {
16    minSdk versions.minSdk
17    consumerProguardFiles 'consumer-proguard-rules.pro'
18  }
19
20  lintOptions {
21    disable 'GoogleAppIndexingWarning'
22    checkOnly 'Interoperability'
23  }
24
25  buildFeatures {
26    buildConfig = false
27  }
28}
29