Michael Friend
03/21/2025, 5:17 PMCoroutineScope
. I added a coroutinescope constructor parameter to my service just like the docs say, but once i do that my call to `service()`/ ApplicationManager.getApplication().getService
give an error Cannot create class
. I get the same error when trying to add Project
in the constructor as mentioned in other parts of the docs. what am i doing wrong here?Michael Friend
03/21/2025, 5:18 PMMichael Friend
03/21/2025, 5:28 PMno such constructor: ....CmptPlugin.<init>(CoroutineScope)void/invokeSpecial
did some more digging, im getting this as the cause of the exception, which i think is saying theres no empty constructor? do i need to declare the coroutinescope param somethwere for light services to work?Michael Friend
03/21/2025, 5:58 PMProject
in the constructor as long as i dont pass App
to @Service
which makes sense, but getting a coroutine scope still doesnt work