Skip to content

Commit def8d40

Browse files
authored
[Android] Bump performance lib to latest release (#890)
* [Android] Bump performance lib to latest release * Trigger full android build
1 parent 60255f7 commit def8d40

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
**Changed**
2727

28-
- Nothing yet!
28+
- Bump `androidx.metrics:metrics-performance` dep to 1.0.0
2929

3030
**Fixed**
3131

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ maven.install(
175175
"org.jetbrains.kotlin:kotlin-stdlib:{}".format(KOTLIN_STD_VERSION),
176176
"androidx.emoji2:emoji2:1.5.0",
177177
"androidx.collection:collection:1.4.5",
178-
"androidx.metrics:metrics-performance:1.0.0-beta02",
178+
"androidx.metrics:metrics-performance:1.0.0",
179179
"com.google.flatbuffers:flatbuffers-java:25.2.10",
180180
"com.google.protobuf:protobuf-kotlin-lite:4.31.1",
181181

platform/jvm/capture/src/main/kotlin/io/bitdrift/capture/reports/processor/IIssueReporterProcessor.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ import java.io.InputStream
1919
*/
2020
interface IIssueReporterProcessor {
2121
/**
22-
* Process AppTerminations due to ANRs and native crashes into packed format
22+
* Process AppTerminations due to ANRs and native crashes into packed format.
2323
* @param fatalIssueType The flatbuffer type of fatal issue being processed
24-
* (e.g. [ReportType.AppNotResponding] or [ReportType.NativeCrash])
25-
* @param timestamp The timestamp when the issue occurred
26-
* @param description Optional description of the issue
27-
* @param traceInputStream Input stream containing the fatal issue trace data
24+
* (e.g. [ReportType.AppNotResponding] or [ReportType.NativeCrash]).
25+
* @param timestamp The timestamp when the issue occurred.
26+
* @param description Optional description of the issue.
27+
* @param traceInputStream Input stream containing the fatal issue trace data.
2828
*/
2929
fun processAppExitReport(
3030
fatalIssueType: Byte,

platform/jvm/gradle/libs.versions.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ mockitoCore = "5.12.0"
2121
mockitoKotlin = "2.2.0"
2222
mockitoKotlinVersion = "4.1.0"
2323
okhttp = "4.12.0"
24-
performance = "1.0.0-beta02"
24+
performance = "1.0.0"
2525
protobufKotlinLite = "4.31.1"
2626
retrofit = "3.0.0"
2727
robolectric = "4.13"
@@ -50,7 +50,6 @@ kotlin-mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", ver
5050
kotlin-result-jvm = { module = "com.michael-bull.kotlin-result:kotlin-result-jvm", version.ref = "kotlinResultJvm" }
5151
mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockitoCore" }
5252
mockito-kotlin = { module = "com.nhaarman.mockitokotlin2:mockito-kotlin", version.ref = "mockitoKotlin" }
53-
mockito-kotlin-inline = { module = "org.mockito:mockito-inline", version.ref = "mockitoCore" }
5453
mockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "okhttp" }
5554
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
5655
performance = { module = "androidx.metrics:metrics-performance", version.ref = "performance" }

0 commit comments

Comments
 (0)