Im getting this error Error:Could not initialize class javax.crypto.JceSecurity in Android Studio 0.9.3, any solutions?
Asked
Active
Viewed 1.7k times
5
-
https://confluence.atlassian.com/display/CONFKB/Confluence+can+not+start+or+user+can+not+log+in+due+to+javax.crypto.JceSecurity+exception – Andres Cárdenas Nov 20 '14 at 09:59
-
http://stackoverflow.com/a/9745323/2600731 was what helped me solve this issue, as apposed to deleting those files. – Donato Perconti Aug 26 '15 at 21:00
1 Answers
8
Ensure that the following JAR files does exist in the your JRE:
JRE/lib/security/local_policy.jar
JRE/lib/security/US_export_policy.jar

Piyush Agarwal
- 25,608
- 8
- 98
- 111
-
1When this happens after a Java upgrade, there may be `*_policy.jar.rpmnew` files in that directory. Copy those over the present files, which are actually those of your previous Java version. – Thraidh Jan 08 '15 at 18:29