I have many imported npm modules in my Android 12 project. The ones imported a while ago works fine, but lately every new one shows errors.
First I thought it was one package issue, but I tried importing a few modules and have the same problem.
So for example, imported ngx-scrollbar package: Here is package.json
"ngx-scrollbar": "^8.0.0",
Imported in my app.module:
import { NgScrollbarModule } from 'ngx-scrollbar';
imports: [
...
NgScrollbarModule
ALS shows this:
(for this and every other new module imported)
The project compiles succesfully, but with this I cannot use ALS.
My ALS is latest version (14.1.0); I tried reverting to older version, no effect.
I am sure that this is ALS, because when I turned it off, the error was not showing up.