Skip to content

Commit

Permalink
Update dependencies (#281)
Browse files Browse the repository at this point in the history
* Update Gradle

* Update to Android 15

* Revert target sdk due to status bar bug

* Try to suppress Lint issue
  • Loading branch information
michaeltroger authored Oct 16, 2024
1 parent d84baae commit 6aff47f
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.iml
.kotlin
.gradle
/local.properties
/.idea
Expand Down
1 change: 1 addition & 0 deletions app/lint.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="UnusedResources" severity="error" />
<issue id="ObsoleteLintCustomCheck" severity="ignore" />
<issue id="TrustAllX509TrustManager">
<ignore path="*"/>
</issue>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ class CertificateDetailsFragment : Fragment(R.layout.fragment_certificate_detail
}
}

@OptIn(ExperimentalCoroutinesApi::class)
private fun showCertificateState(
certificate: Certificate,
searchBarcode: Boolean,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ class CertificatesFragment : Fragment(R.layout.fragment_certificates) {
menuProvider.onPause()
}

@OptIn(ExperimentalCoroutinesApi::class)
private fun showCertificateState(
documents: List<Certificate>,
searchBarcode: Boolean,
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
internal object Versions {
const val MIN_SDK = 21
const val TARGET_SDK = 34
const val COMPILE_SDK = 34
const val COMPILE_SDK = 35
const val JAVA = 17
}
34 changes: 17 additions & 17 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
[versions]
android-gradle-plugin = "8.3.2"
androidx-activity-ktx = "1.9.0"
androidx-appcompat = "1.6.1"
androidx-biometric = "1.2.0-alpha05"
android-gradle-plugin = "8.7.1"
androidx-activity-ktx = "1.9.2"
androidx-appcompat = "1.7.0"
androidx-biometric = "1.4.0-alpha02"
androidx-constraintlayout = "2.1.4"
androidx-core-ktx = "1.13.0"
androidx-datastore-preferences = "1.1.0"
androidx-fragment-ktx = "1.6.2"
androidx-lifecycle = "2.7.0"
androidx-navigation = "2.7.7"
androidx-core-ktx = "1.13.1"
androidx-datastore-preferences = "1.1.1"
androidx-fragment-ktx = "1.8.4"
androidx-lifecycle = "2.8.6"
androidx-navigation = "2.8.2"
androidx-preference-ktx = "1.2.1"
androidx-room = "2.6.1"
androidx-test-espresso = "3.5.1"
androidx-test-ext-junit-ktx = "1.1.5"
androidx-test-orchestrator = "1.4.2"
androidx-test-espresso = "3.6.1"
androidx-test-ext-junit-ktx = "1.2.1"
androidx-test-orchestrator = "1.5.0"
androidx-test-uiautomator = "2.3.0"
app-cash-turbine = "1.1.0"
com-github-jk1-dependency-license-report = "2.7"
com-github-lisawray-groupie = "2.10.1"
com-github-markusfisch-zxing-cpp = "2.2.0.5"
com-google-android-material = "1.11.0"
com-google-dagger-hilt-android = "2.51.1"
com-google-devtools-ksp = "1.9.23-1.0.20"
com-google-android-material = "1.12.0"
com-google-dagger-hilt-android = "2.52"
com-google-devtools-ksp = "2.0.21-1.0.25"
com-squareup-leakcanary-android = "2.13"
com-tom-roush-pdfbox-android = "2.0.27.0"
io-gitlab-arturbosch-detekt = "1.23.6"
io-github-panpf-zoomimage-view = "1.0.2"
io-kotest-assertions-core = "5.8.1"
io-mockk = "1.13.10"
kotlin = "1.9.23"
kotlin = "2.0.21"
org-bouncycastle = "1.78"
org-jetbrains-kotlinx-coroutines = "1.8.0"
org-jetbrains-kotlinx-coroutines = "1.9.0"
org-robolectric = "4.12.1"

[libraries]
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=194717442575a6f96e1c1befa2c30e9a4fc90f701d7aee33eb879b79e7ff05c0
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionSha256Sum=2ab88d6de2c23e6adae7363ae6e29cbdd2a709e992929b48b6530fd0c7133bd6
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 6aff47f

Please sign in to comment.