Hi, I added an external .jar file to my android application through eclipse. However, when I run my application in android I get java.lang.ExceptionInInitializerError exception while loading a provider for java.security. This provider is taken from RSA share .jar package and I load it as follows:
Provider jsafeProvider = new com.rsa.jsafe.provider.JsafeJCE() ; // the exception from this line. Security.addProvider( jsafeProvider ) ; Is there anything extra that needs to be done to load external .jar file before running it on android phone or does eclipse do everything automatically? Any idea how I can fix this exception? thank you -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

