PM-29806: Move FlightRecorderWriter to the data module (#6270)

This commit is contained in:
David Perez
2025-12-15 15:43:17 -06:00
committed by GitHub
parent d09945d80b
commit ef6714fa17
27 changed files with 69 additions and 45 deletions

View File

@@ -14,6 +14,11 @@ interface BuildInfoManager {
*/
val applicationId: String
/**
* The human readable name of the running application (untranslated).
*/
val applicationName: String
/**
* A boolean property that indicates whether the current build flavor is "fdroid".
*/
@@ -48,4 +53,9 @@ interface BuildInfoManager {
* A string representing the build type.
*/
val buildTypeName: String
/**
* A string representing the raw build and flavor types.
*/
val buildAndFlavor: String
}