huangcm
2024-12-18 9d29be7f7249789d6ffd0440067187a9f040c2cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
buildscript {
    repositories {
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
    dependencies {
        classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.13"
    }
}
 
apply plugin: "net.ltgt.errorprone"
apply plugin: 'com.android.library'
 
android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'
 
    android {
        lintOptions {
            disable 'InvalidPackage'
        }
    }
 
    defaultConfig {
        minSdkVersion 28
        targetSdkVersion 28
        versionName VERSION_NAME
 
        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }
 
    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }
}
 
repositories {
    jcenter()
    google()
}
 
dependencies {
    implementation project(':dexmaker-mockito-inline-tests')
    compileOnly project(':dexmaker-mockito-inline-extended')
    androidTestImplementation project(':dexmaker-mockito-inline-extended')
 
    implementation 'junit:junit:4.12'
    implementation 'com.android.support.test:runner:1.0.2'
    implementation 'com.android.support.test:rules:1.0.2'
 
    api 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
}