Skip to content

Commit

Permalink
[Dependencies] Added constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
OffRange committed Jun 20, 2023
1 parent 64c295c commit 818b8b3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,16 @@ android {

dependencies {

//https://stackoverflow.com/a/75298544/14152955
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")
}
}

implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
Expand Down

0 comments on commit 818b8b3

Please sign in to comment.