Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4af714e authored by Sayantan Roychowdhury's avatar Sayantan Roychowdhury
Browse files

0.0.9-alpha

parent 99c625a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ plugins {

def versionMajor = 0
def versionMinor = 0
def versionPatch = 8
def versionPatch = 9
def releasePatch = "alpha"

android {
+11 −0
Original line number Diff line number Diff line
@@ -84,6 +84,17 @@ object Telemetry {
        Sentry.captureMessage(message, level)
    }

    /**
     * Report an exception.
     * Generally called from catch block of try-catch.
     *
     * @param e: The exception to report.
     */
    @JvmStatic
    fun reportException(e: Exception) {
        Sentry.captureException(e)
    }

    @Deprecated(
        "Use isReportingTelemetry()",
        ReplaceWith("isReportingTelemetry()"),