Click here to Skip to main content
15,908,841 members

Comments by prafull agrawal (Top 25 by date)

prafull agrawal 22-Apr-16 13:32pm View    
Yes I came to know about this by going through the media documentation of android, but changing the whole code is a lot time consuming so I am looking for another option
prafull agrawal 22-Apr-16 11:25am View    
I gone through the media libraries of android but didn't found anything that is useful to me
prafull agrawal 22-Apr-16 10:03am View    
I checked the logic of the code but didn't saw any documentation for the system/library call, the reason behind this is the code I am using here in android works well in java environment without any exception or anything but as it seems that javax.sound.sampled package is not included in android which causing the root of the problem as I need to get all those files in this package manually into my project and use them. So summarizing the whole story is these files are part of javax.system.sound library and as java supports it so I font need to add these files into my code I just have to run my project code but that's not the case in android.
prafull agrawal 22-Apr-16 4:54am View    
You Said it right I too not getting any idea from code as it's not throwing any exception in catch block and I am trying to debug it line by line. And the thing about new in android yes I am little new but slowly grasping things and trying them out in my project that is why code looks far from basic level. Thanks for help. I will try debugging again with all catch blocks filled with proper code.
prafull agrawal 21-Apr-16 13:09pm View    
Dear Richard, I tried using this catch (Throwable e) {
e.printStackTrace();
System.out.println(e);
}
but honestly saying debugger executes the congigs = .. line and then directly moves to if (configs!= null)
sorry if I am doing something wrong I am little bit new in android please guide me in the the right direction.