Skip to content

Commit

Permalink
fix build dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Catfriend1 committed Jul 27, 2024
1 parent c488799 commit f5e720f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ dependencies {
implementation ('com.journeyapps:zxing-android-embedded:4.2.0') { transitive = false }
implementation 'eu.chainfire:libsuperuser:1.1.0.202004101746'
implementation 'org.mindrot:jbcrypt:0.4'

constraints {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0") {
because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib")
}
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
}
}
}

apply from: 'versions.gradle'
Expand Down

0 comments on commit f5e720f

Please sign in to comment.