| apply plugin: 'com.android.application' |
| |
| apply plugin: 'kotlin-android' |
| |
| android { |
| compileSdkVersion 30 |
| defaultConfig { |
| applicationId "com.example.unit_testing_demo" |
| minSdkVersion 15 |
| targetSdkVersion 26 |
| versionCode 1 |
| versionName "1.0" |
| testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
| } |
| kotlinOptions { |
| jvmTarget = JavaVersion.VERSION_11 |
| } |
| } |
| |
| dependencies { |
| implementation project(":util-lib") |
| implementation project(":javalib") |
| |
| implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" |
| |
| testImplementation 'junit:junit:4.12' |
| testImplementation 'org.mockito:mockito-core:5.12.0' |
| testImplementation 'org.jdeferred:jdeferred-android-aar:1.2.3' |
| testImplementation 'commons-logging:commons-logging:1.1.1' |
| } |