Skip to content

Commit

Permalink
Bump gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Xlythe committed Apr 24, 2023
1 parent 29faf4f commit 10d0aa6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':floating-view')
implementation 'androidx.appcompat:appcompat:+'
implementation 'androidx.recyclerview:recyclerview:+'
implementation 'com.google.android.material:material:+'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'com.google.android.material:material:1.8.0'
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:8.0.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'

// NOTE: Do not place your application dependencies here; they belong
Expand Down
10 changes: 9 additions & 1 deletion floating-view/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,13 @@ signing {

dependencies {
api fileTree(include: ['*.jar'], dir: 'libs')
api 'androidx.appcompat:appcompat:[1.5.1,)'
api 'androidx.appcompat:appcompat:[1.6.1,)'
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")
}
}
}
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ bintray.allLicenses=Apache-2.0

android.useAndroidX=true
android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false

0 comments on commit 10d0aa6

Please sign in to comment.