-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathbuild.gradle
55 lines (47 loc) · 1.77 KB
/
build.gradle
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
55
apply plugin: 'com.android.application'
android {
compileSdkVersion 30
defaultConfig {
applicationId "io.particle.devicesetup.testapp"
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation project(':devicesetup')
implementation project(':commonui')
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation "junit:junit:4.12"
testImplementation 'com.github.fabioCollini:DaggerMock:0.7.0'
testImplementation "org.mockito:mockito-core:2.16.0"
testImplementation 'com.google.dagger:dagger-compiler:2.27'
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
androidTestImplementation "org.mockito:mockito-core:2.16.0"
androidTestImplementation "org.mockito:mockito-android:2.8.8"
androidTestImplementation "com.android.support.test:runner:1.0.2"
androidTestImplementation "com.android.support.test:rules:1.0.2"
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
})
androidTestImplementation 'com.github.fabioCollini:DaggerMock:0.7.0'
}
repositories {
maven {
url 'https://maven.google.com'
}
maven { url "https://jitpack.io" }
}