Minim ErrorOnInitializerError
in
Core Library Questions
•
1 year ago
Hey Everyone!,
I'm extremely new to processing and as part of a class for school we were tasked with creating an app using processing. Now I want to add music to that app but I'm getting an error that causes the app to terminate.
I declare my minim object
and then try to initialize it in the setup()
minim = new Minim(this)
This line causes my log to explode with errors.
The main one being
java.long.ExceptionInInitializerError
caused by
java.lang.NoClassDefFoundError
Now my imports are all in order and I have all the .jar files added to my buildpath.
I think it might be something with how it's reading the minim files but I'm not sure....
Can anyone provide me with some sort of guidance as to why the initialization would give me so much trouble?
I've googled my brains out and I'm literally in the dark cause I haven't found anything where someone has a similar error. :x
Thanks in advance!
I'm extremely new to processing and as part of a class for school we were tasked with creating an app using processing. Now I want to add music to that app but I'm getting an error that causes the app to terminate.
I declare my minim object
and then try to initialize it in the setup()
minim = new Minim(this)
This line causes my log to explode with errors.
The main one being
java.long.ExceptionInInitializerError
caused by
java.lang.NoClassDefFoundError
Now my imports are all in order and I have all the .jar files added to my buildpath.
I think it might be something with how it's reading the minim files but I'm not sure....
Can anyone provide me with some sort of guidance as to why the initialization would give me so much trouble?
I've googled my brains out and I'm literally in the dark cause I haven't found anything where someone has a similar error. :x
Thanks in advance!
1