Philip P. Moltmann | 70402ca | 2018-08-28 16:57:52 +0000 | [diff] [blame] | 1 | buildscript { |
| 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 | |
| 12 | apply plugin: "net.ltgt.errorprone" |
| 13 | apply plugin: 'com.android.library' |
| 14 | |
| 15 | android { |
| 16 | compileSdkVersion 28 |
Philip P. Moltmann | aa1c0e9 | 2018-12-05 08:46:19 -0800 | [diff] [blame] | 17 | buildToolsVersion '28.0.3' |
Philip P. Moltmann | 70402ca | 2018-08-28 16:57:52 +0000 | [diff] [blame] | 18 | |
| 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 Chabot | e0caade | 2019-03-01 14:16:07 -0800 | [diff] [blame] | 31 | testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' |
Philip P. Moltmann | 70402ca | 2018-08-28 16:57:52 +0000 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | externalNativeBuild { |
| 35 | cmake { |
| 36 | path 'CMakeLists.txt' |
| 37 | } |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | repositories { |
| 42 | jcenter() |
| 43 | google() |
| 44 | } |
| 45 | |
| 46 | dependencies { |
| 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 Tan | 630e074 | 2019-09-10 10:46:22 -0700 | [diff] [blame] | 52 | implementation 'com.android.support.test:runner:1.0.2' |
Garfield Tan | 40a3dd8 | 2019-09-10 15:29:53 -0700 | [diff] [blame] | 53 | api 'org.mockito:mockito-core:2.25.0', { exclude group: 'net.bytebuddy' } |
Philip P. Moltmann | 70402ca | 2018-08-28 16:57:52 +0000 | [diff] [blame] | 54 | } |