Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/mobile/android/android-components/   (Android Betriebssystem Version 17©)  Datei vom 27.6.2026 mit Größe 1 kB image not shown  

Quelle  common-config.gradle   Sprache: unbekannt

 
Spracherkennung für: .gradle vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

android {
    buildTypes {
        release {
            minifyEnabled = false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

    compileSdk { version = release(config.compileSdkMajorVersion) { minorApiLevel = config.compileSdkMinorVersion } }

    defaultConfig {
        minSdk config.minSdkVersion
        targetSdk config.targetSdkVersion
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    lint {
        warningsAsErrors = true
        abortOnError = false

                // With our L10N process its totally possible to have missing or (temporarily) extra translations.
        disable 'MissingTranslation',
                'ExtraTranslation',
                'MissingDefaultResource',
                // We do not want to enforce this as a generic rule for all languages (see #6117, #6056, #6118)
                'TypographyEllipsis',
                // https://github.com/mozilla-mobile/android-components/issues/10641
                'UnspecifiedImmutableFlag',
                // https://bugzilla.mozilla.org/show_bug.cgi?id=1795427
                'UnusedResources',
                // "We do not impose rules on locales"
                // https://github.com/mozilla-mobile/android-components/pull/11069
                'TypographyDashes'
        sarifReport = true
        sarifOutput = file("../../../build/reports/lint/lint-report-${project.name}.sarif.json")
    }
}

[Dauer der Verarbeitung: 0.48 Sekunden]