anyone try this.
uninstall as per above instruction…
install a clean CoronaSDK-2015.2611.msi
then use this code.
-------------------------- build.settings --------------------------------------------
settings = {
plugins = {
[“plugin.gameanalytics”] = {
publisherId = “com.gameanalytics”,
},
[“plugin.advertisingId”] = {
publisherId = “com.coronalabs”
},
[“plugin.openssl”] = {
publisherId = “com.coronalabs”
},
},
orientation = {
default = “portrait”,
supported = { “portrait”, }
},
iphone = {
plist = {
UIStatusBarHidden = false,
UIPrerenderedIcon = true,
}
},
– Android permissions
android = {
usesPermissions = {
“android.permission.INTERNET”,
},
},
}
----------------------------------------- config.lua -------------------------------------------
application = {
showRuntimeErrors = true,
content = {
width = 320,
height = 480,
scale = “letterBox”,
fps = 30,
},
}
---------------------------------- main.lua -------------------------------------------
local widget = require “widget” – big fat widget loads fine 
–local ssl = require “plugin.openssl” --uncomment this and it will fail on plugin.openssl
local ga = require “plugin.gameanalytics” – fails right here!
ga.runInSimulator = true
ga.isDebug = true
local gameKey, secretKey
local build = 1
gameKey = “yourgameKey”
secretKey = “yoursecretKey”
–[[
ga.init ( {
game_key = gameKey,
secret_key = secretKey,
build_name = tostring(build),
} )
]]–
Just build for android and run it on a device.
you will get the same result as i do, check the attached image.
thank you.