Skip to content

Commit

Permalink
Upgrade AGP 8.6.0 -> 8.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaunt committed Oct 23, 2024
1 parent d1159bf commit ee9e5b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.6.0"
agp = "8.7.1"
kotlin = "2.0.0"
core-ktx = "1.13.1"
junit = "4.13.2"
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/uid2/UID2Manager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ public class UID2Manager internal constructor(
private suspend fun onInitialized() {
initializedLock.withLock {
while (onInitializedListeners.isNotEmpty()) {
onInitializedListeners.removeFirst().invoke()
onInitializedListeners.removeAt(0).invoke()
}
}
}
Expand Down

0 comments on commit ee9e5b3

Please sign in to comment.