Skip to content

Instantly share code, notes, and snippets.

@zmdominguez
Created January 19, 2022 06:52

Revisions

  1. zmdominguez created this gist Jan 19, 2022.
    10 changes: 10 additions & 0 deletions crashlytics_disable_file_upload.kts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    import com.google.firebase.crashlytics.buildtools.gradle.CrashlyticsExtension

    buildTypes{
    getByName("debug") {
    ...
    configure<CrashlyticsExtension> {
    mappingFileUploadEnabled = false
    }
    }
    }