Hi,
I have a medium project with more than 50 lua files. After I added plugin.openssl to build.settings, I cannot relaunch the project. Each time I hit ctrl-R the simulator only turns to black screen. If I hit ctrl-W to close the project and then reopen it, the simulator crashes. Therefore I’m forced to close the simulator completely and launch it again to see my modification. Sometimes the simulator also crashes when I’m closing it.
If I remove the plugin in build.settings, the problem disappears. If I create a small project and just include openssl plugin, this problem doesn’t happen either. It seems that it only happens to projects with many lua files and openssl plugin. Furthermore, It only happens to Windows simulator.
The SDK version is 2013.1202, which is the most recent public release. When downloading the plugin, it shows that the plugin version 2013.1143 is used.
Here is my build.settings:
settings = { orientation = { default = "portrait", supported = { "portrait" } }, iphone = { plist = { UIStatusBarHidden = false, UIPrerenderedIcon = true, UIApplicationExitsOnSuspend = false, CFBundleIconFiles = {"Icon.png", "Icon@2x.png", "Icon-72.png", "Icon-72@2x.png"}, }, components = {}, }, androidPermissions = { "android.permission.INTERNET", "android.permission.READ\_PHONE\_STATE", "android.permission.ACCESS\_NETWORK\_STATE", "android.permission.WRITE\_EXTERNAL\_STORAGE", "com.android.vending.BILLING", }, plugins = { ["plugin.openssl"] = { publisherId = "com.coronalabs", }, }, }
Any suggestions?