Skip to content

Commit

Permalink
Merge pull request #105 from IABTechLab/dave/upgrade-agp
Browse files Browse the repository at this point in the history
Upgrade AGP 8.6.0 -> 8.7.1
  • Loading branch information
dcaunt authored Oct 23, 2024
2 parents d1159bf + ee9e5b3 commit 4b8a4e5
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 4b8a4e5

Please sign in to comment.