forked from fabioCollini/TestingDaggerRxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (32 loc) · 1.03 KB
/
Copy pathbuild.gradle
File metadata and controls
36 lines (32 loc) · 1.03 KB
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
apply plugin: 'com.android.application'
apply plugin: 'org.jetbrains.kotlin.android'
android {
compileSdk 35
namespace "com.petertackage.rxjava2scheduling"
defaultConfig {
applicationId "com.petertackage.androidschedulersdemo.main_thread"
minSdkVersion 25
//noinspection EditedTargetSdkVersion
targetSdk 35
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_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
api 'androidx.appcompat:appcompat:1.7.0'
api "io.reactivex.rxjava2:rxandroid:2.1.1"
api "io.reactivex.rxjava2:rxjava:2.2.21"
testImplementation 'junit:junit:4.13.2'
testImplementation "org.mockito:mockito-core:5.12.0"
}