I have an Android Project with gradle config like that:
MainApp: -dependOn-> Module T
MainApp: -dependOn-> Module C
Module C: -dependOn-> Module T
Now, I don't need Module T anymore in MainApp, so I remove it from MainApp, but when I build the project, I throw error because some class of Module C that extends from Module T can't be recognized in MainApp.
Can you help me how to remove Module T from MainApp