Skip to content

Commit

Permalink
Merge pull request #746 from geekiyer/690_task4
Browse files Browse the repository at this point in the history
Convert `mockk/agent/android/dispatcher/build.gradle` to Kotlin DSL
  • Loading branch information
Raibaz committed Nov 14, 2021
2 parents 749a053 + ad59afc commit 2642329
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 31 deletions.
31 changes: 0 additions & 31 deletions agent/android/dispatcher/build.gradle

This file was deleted.

29 changes: 29 additions & 0 deletions agent/android/dispatcher/build.gradle.kts
@@ -0,0 +1,29 @@
plugins {
id("com.android.application")
}

android {
compileSdkVersion(30)

android {
lintOptions {
disable("InvalidPackage")
warning("NewApi")
}

packagingOptions {
exclude("META-INF/main.kotlin_module")
}
}

defaultConfig {
minSdkVersion(21)
targetSdkVersion(28)
applicationId = "com.android.dexmaker.mockito.inline.dispatcher"
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}

0 comments on commit 2642329

Please sign in to comment.