blob: 02d075157377c05af9a8c438d1fd006891cef97f [file] [log] [blame]
Philip P. Moltmann70402ca2018-08-28 16:57:52 +00001buildscript {
2 repositories {
3 maven {
4 url "https://plugins.gradle.org/m2/"
5 }
6 }
7 dependencies {
8 classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.13"
9 }
10}
11
12apply plugin: "net.ltgt.errorprone"
13apply plugin: 'com.android.library'
14
15android {
16 compileSdkVersion 28
Philip P. Moltmannaa1c0e92018-12-05 08:46:19 -080017 buildToolsVersion '28.0.3'
Philip P. Moltmann70402ca2018-08-28 16:57:52 +000018
19 android {
20 lintOptions {
21 disable 'InvalidPackage'
22 warning 'NewApi'
23 }
24 }
25
26 defaultConfig {
27 minSdkVersion 28
28 targetSdkVersion 28
29 versionName VERSION_NAME
30
Brett Chabote0caade2019-03-01 14:16:07 -080031 testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Philip P. Moltmann70402ca2018-08-28 16:57:52 +000032 }
33
34 externalNativeBuild {
35 cmake {
36 path 'CMakeLists.txt'
37 }
38 }
39}
40
41repositories {
42 jcenter()
43 google()
44}
45
46dependencies {
47 implementation project(':dexmaker-mockito-tests')
48 compileOnly project(':dexmaker-mockito-inline')
49 androidTestImplementation project(':dexmaker-mockito-inline')
50
51 implementation 'junit:junit:4.12'
Garfield Tan630e0742019-09-10 10:46:22 -070052 implementation 'com.android.support.test:runner:1.0.2'
Garfield Tan40a3dd82019-09-10 15:29:53 -070053 api 'org.mockito:mockito-core:2.25.0', { exclude group: 'net.bytebuddy' }
Philip P. Moltmann70402ca2018-08-28 16:57:52 +000054}