Skip to content

Commit

Permalink
Hopefully fixed unresolved elvis dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanosFisherman committed Feb 1, 2021
1 parent 4c65f07 commit a8f9a56
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Artifact.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ object Artifact {

val ARTIFACT_NAME = "wifiutils"
val ARTIFACT_GROUP = "com.thanosfisherman.wifiutils"
val VERSION_NAME = "1.6.4"
val VERSION_CODE = 21
val VERSION_NAME = "1.6.5"
val VERSION_CODE = 22
val POM_URL = "https://github.com/ThanosFisherman/WifiUtils"
val POM_SCM_URL = "https://github.com/ThanosFisherman/WifiUtils"
val POM_ISSUE_URL = "https://github.com/ThanosFisherman/WifiUtils/issues"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/LibraryDependency.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ private object LibraryVersion {
const val ktxCore = "1.3.1"
const val multiDexVersion = "1.0.3"

const val wifiUtilsVersion = "1.6.3"
const val wifiUtilsVersion = "1.6.5"

const val androidxVersion = "1.2.0"
const val lifecycleVersionX = "2.2.0"
Expand Down
2 changes: 1 addition & 1 deletion wifiutils/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
getLibModuleDependencies().forEach {
if (it.contains("elvis", true)) {
implementation(it) { isTransitive = true }
api(it) { isTransitive = true }
} else {
implementation(it)
}
Expand Down

0 comments on commit a8f9a56

Please sign in to comment.