Grzegorz Matyszczak

Results 7 comments of Grzegorz Matyszczak

@mhashim6 Unfortunately I'm not able to provide a reliable sample to reproduce this issue. However @gmazzotta-wise did already great job with investigating the problem more deeply, so hopefully this will...

Hi @ahmedezz012, what's your Android Studio version? And probably there's some error in IDE error log (red icon in bottom right corner), could you paste it here too?

@panq-jack Which Android Studio version are you using? Did you install the plugin from Marketplace or you built it from source?

Fixed in [v1.2.2](https://github.com/gmatyszczak/screen-generator-plugin/releases/tag/v1.2.2)

Thanks Sándor, I'm glad you like it! Whole Screen Generator Plugin configuration is saved in `screenGeneratorConfiguration.xml` file, located in `.idea/` folder in your project. You can just simply copy this...

Fixed in [v1.2.2](https://github.com/gmatyszczak/screen-generator-plugin/releases/tag/v1.2.2)

I had similar problem, in my case mockito-kotlin added as dependency was causing this issue, but excluding "org.mockito" group from it helped. ``` androidTestImplementation("org.mockito.kotlin:mockito-kotlin:5.4.0") { exclude(group = "org.mockito") } ```