Fixed Error

Lint found fatal errors while assembling a release target

Lint found fatal errors while assembling a release target. Fix the issues identified by lint, or create a baseline to see only new errors:

android {
    lint {  
                    baseline = file("lint-baseline.xml")
          }  
        }

Error ini biasanya muncul karena konfigurasi versi libs, untuk mengatasinya silahkan buka gradle.modul / build.gradle(Module:app)

Tambahkan code berikut dibagian android {

   lintOptions {
       quiet true
       abortOnError false
       ignoreWarnings true
       }

dan klik Sync Now.

Still have questions?

If you still have a question, you can submit a support request here. Contact Support

This site uses cookies. By continuing to browse the site, you are agreeing to our use of cookies.