Android Question [Solved] Can't remove a module

GuyBooth

Active Member
Licensed User
Longtime User
I have removed all references to an activity in a project, but when I remove its module the log shows an error message "Module: <Module Name> not found" and the project won't compile.

I can build a new project using the text from all the other modules without error messages, so I know I haven't left any references.

Anyone have any ideas what is causing the problem?
 

klaus

Expert
Licensed User
Longtime User
Did you delete it with Remove module?

upload_2017-7-1_17-10-3.png


If no, add it again and remove it.
 
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
Open the projet file (YourApp.b4a) with Wordpad and search for the module name.
If it is still there, remove the line and ensure that the line:

NumberOfModules=xx

is set to the right number of modules.

Also, check if there is a reference in the Manifest file.

MAKE A BACKUP OF YOUR PROJECT BEFORE ANY CHANGES.
 
Last edited:
Upvote 0
Top