Skip to content

Commit

Permalink
Deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrivoruchko committed Sep 7, 2024
1 parent 7bac7da commit 3caca4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
namespace = "info.dvkr.screenstream"
compileSdk = rootProject.extra["compileSdkVersion"] as Int
buildToolsVersion = rootProject.extra["buildToolsVersion"] as String
ndkVersion = "26.3.11579264"
ndkVersion = "27.1.12297006"

defaultConfig {
applicationId = "info.dvkr.screenstream"
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
agp = "8.6.0"
kotlin = "2.0.20"
ksp = "2.0.20-1.0.24"
ksp = "2.0.20-1.0.25"
android-tools-r8 = "8.5.35"
android-tools-desugar = "2.1.2"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ internal class PlayIntegrity(serviceContext: Context, private val environment: W
WebRtcError.PlayIntegrityError(errorCode, true, message)

StandardIntegrityErrorCode.INTEGRITY_TOKEN_PROVIDER_INVALID ->
WebRtcError.PlayIntegrityError(errorCode, false, message)
WebRtcError.PlayIntegrityError(errorCode, true, message)

StandardIntegrityErrorCode.INTERNAL_ERROR -> // Unknown internal error.
WebRtcError.PlayIntegrityError(errorCode, true, message)
Expand Down

0 comments on commit 3caca4f

Please sign in to comment.