-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependencies #16
Changes from all commits
43ff968
d532a51
22cc106
7148c05
38fb724
de4200e
fa39098
c337ad1
b9bb51b
43854e5
4c6ec64
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,8 @@ org.gradle.jvmargs=-Xmx6656m -Dfile.encoding=UTF-8 | |
org.gradle.parallel=true | ||
|
||
android.useAndroidX=true | ||
kapt.incremental.apt=true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this line deleted? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some configuration has been deprecated or removed when updating Kotlin or Gradle. In this particular case, kapt was not even used. |
||
# It's going to be deleted in Kotlin 1.8 | ||
kapt.use.worker.api=true | ||
|
||
# This will be default on AGP 8.0 | ||
android.r8.failOnMissingClasses=true | ||
|
||
###### Project settings ###### | ||
kotlin.code.style=official | ||
android.nonTransitiveRClass=false | ||
android.nonFinalResIds=false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[versions] | ||
android-gradle-plugin = "8.7.2" | ||
junit = "4.13.2" | ||
kotlin = "1.9.21" | ||
androidx-lifecycle = "2.2.0" | ||
material = "1.9.0" | ||
elviswhew-xlog = "1.11.1" | ||
okio = "3.9.1" | ||
|
||
[libraries] | ||
androidx-annotation = { module = "androidx.annotation:annotation", version = "1.9.1" } | ||
androidx-appcompat = { module = "androidx.appcompat:appcompat", version = "1.7.0" } | ||
androidx-lifecycle-extensions = { module = "androidx.lifecycle:lifecycle-extensions", version.ref = "androidx-lifecycle" } | ||
com-google-android-material = { module = "com.google.android.material:material", version.ref = "material" } | ||
com-squareup-okio = { module = "com.squareup.okio:okio", version.ref = "okio" } | ||
junit = { module = "junit:junit", version.ref = "junit" } | ||
org-jetbrains-kotlin = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" } | ||
elvishew-xlog = { module = "com.elvishew:xlog", version.ref = "elviswhew-xlog" } | ||
|
||
[plugins] | ||
com-android-application = { id = "com.android.application", version.ref = "android-gradle-plugin" } | ||
com-android-library = { id = "com.android.library", version.ref = "android-gradle-plugin" } | ||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
gitlab-arturbosch-detekt = "io.gitlab.arturbosch.detekt:1.23.7" | ||
github-gradle-publish-plugin = { id = "io.github.gradle-nexus.publish-plugin", version = "1.2.0" } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
pluginManagement { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
|
||
include ':app' | ||
include ':library' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a newer lint issue