Mobile Push Notifications

0
Hi all, Following the Mendix official documentation, i tried to set up push notifications for hybrid mobile app. However when i try to run the application, it shows java action compile error in the encryption module. I have attached the screenshot of the error. What can be done to resolve the issue?  
asked
3 answers
0

These kinds of errors are usually caused by conflicting versions of the same Java libraries in the userlib folder of your project. Looking at the error message, you probably have multiple versions of the Bouncy Castle libraries. If you open the userlib folder, you probably have bc*-jdk15on-<version_number>.jar files with multiple versions numbers. Usually it’s version 150 and 164. If you delete the files for version 150 and leave the files for 164 and re-run your app, the issue should be resolved.

answered
0

Try by downloading the encryption module V.2.0.0 from the app store. 

Best Regards,

Julian

answered
0

Solution is removing those 3 JAR files from userlib, as mentioned in the v2.0.1 notes.

answered