| plugins { |
| id("com.android.library") |
| id("org.jetbrains.kotlin.android") |
| id("com.vanniktech.maven.publish") |
| } |
| |
| dependencies { |
| api projects.leakcanary.leakcanaryCore |
| api projects.leakcanary.leakcanaryTestCore |
| api projects.shark.sharkAndroid |
| api libs.androidX.test.uiautomator |
| |
| implementation libs.androidX.test.monitor |
| } |
| |
| android { |
| compileSdk versions.compileSdk |
| defaultConfig { |
| targetSdk versions.compileSdk |
| minSdk 18 |
| } |
| buildFeatures.buildConfig = false |
| namespace 'com.squareup.leakcanary.android.uiautomator' |
| } |