| plugins { |
| id("com.android.library") |
| id("org.jetbrains.kotlin.android") |
| id("com.vanniktech.maven.publish") |
| } |
| |
| dependencies { |
| api projects.leakcanaryAndroidCore |
| // AppWatcher AndroidX Startup installer |
| implementation projects.leakcanaryObjectWatcherAndroidStartup |
| // Plumber AndroidX Startup installer |
| implementation projects.plumberAndroidStartup |
| } |
| |
| android { |
| compileSdk versions.compileSdk |
| defaultConfig { |
| minSdk versions.minSdk |
| } |
| buildFeatures.buildConfig = false |
| lintOptions { |
| disable 'GoogleAppIndexingWarning' |
| // junit references java.lang.management |
| ignore 'InvalidPackage' |
| checkOnly 'Interoperability' |
| } |
| } |