how do I set ``` lintOptions { isAbortO...
# android
a
how do I set
Copy code
lintOptions {
        isAbortOnError = false
    }
In AGP 7.0.0-alpha01 using kotlin-dsl? The above snipet works with AGP 4.1.3, it fails when upgraded to 7.0.0
c
I have this in one of my kts files and it works fine. I'm using agp 7.1.0-alpha03 though?
Copy code
lintOptions { isAbortOnError = false }
a
changing to AGP 7.1.0-alpha03 worked. Thanks
c
Nice!