Since CoronaSDK 2015.2603 for windows no plugins are being being included in builds.

Does anyone else have this issue?

Corona build CoronaSDK 2015.2602 is the last one that works for me.  using Windows and building android apps.

No plugins are being attached to the app. so any plugins from the plugin. path can not be used.

this is a serious error, i have tested it on two windows systems both running Windows 8.1.

i have reported this as a bug a few days ago but nothing has been replied to me yet.

Thanks

I used the Coronaviewer and the social plugin in builds earlier today on Corona 2610 and everything is working as normal.

I haven’t changed my code at all. I built on both Win7 and OSX. Can you build any of the sample apps that have plugins successfully?

Please try a later daily build.  I know there was an issue around that build number with getting plugins.

Rob

I have tried EVERY build since 2015.2602 that is 2015.2603 to 2015.2611 inclusive and had the same result.

FYI I have noticed that the ,msi file is about 10M smaller starting with build 2063,

how to reproduce the plug.<whatever> is missing error.

uninstall your current corona SDK.

Then cleanup the uninstall, in a cmd shell run these two cmds:

RMDIR /S /Q “%ProgramFiles(x86)%\Corona Labs”

RMDIR /S /Q “%USERPROFILE%\AppData\Roaming\Corona Labs”

then install any SDK from 2603 to 2611.

then build an app that uses a module from the plugin.<whatever> path.

It will work fine in the simulator but when you build it for android and run it on a device it will crash and say that the plugin in not available.

someone please fix this.

thanks

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 :slight_smile:

–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.

Engineering is working on a solution.  In the mean time if you’re building for Android and you need plugins, please use 2602 or earlier.

Rob

Rob,

This appears to be occurring on Mac android builds as well.

i am forced to use build 2015.2602 on both Windows and Mac.

Also, it appears that Flurry is not recording properly on either platform for android builds as well.

thanks.

Engineering confirmed it’s both Windows and Mac.  Please use 2602 for now.  Engineering is on it.

Rob

Is this fixed yet?

Watch the next couple of daily builds.  I believe they fixed it today.

Rob

The Android plugin issue has been fixed and is in build 2614.

Everything is working great.  on both windows with android and mac with iOS and android.

thanks for the quick fix.

I used the Coronaviewer and the social plugin in builds earlier today on Corona 2610 and everything is working as normal.

I haven’t changed my code at all. I built on both Win7 and OSX. Can you build any of the sample apps that have plugins successfully?

Please try a later daily build.  I know there was an issue around that build number with getting plugins.

Rob

I have tried EVERY build since 2015.2602 that is 2015.2603 to 2015.2611 inclusive and had the same result.

FYI I have noticed that the ,msi file is about 10M smaller starting with build 2063,

how to reproduce the plug.<whatever> is missing error.

uninstall your current corona SDK.

Then cleanup the uninstall, in a cmd shell run these two cmds:

RMDIR /S /Q “%ProgramFiles(x86)%\Corona Labs”

RMDIR /S /Q “%USERPROFILE%\AppData\Roaming\Corona Labs”

then install any SDK from 2603 to 2611.

then build an app that uses a module from the plugin.<whatever> path.

It will work fine in the simulator but when you build it for android and run it on a device it will crash and say that the plugin in not available.

someone please fix this.

thanks

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 :slight_smile:

–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.

Engineering is working on a solution.  In the mean time if you’re building for Android and you need plugins, please use 2602 or earlier.

Rob

Rob,

This appears to be occurring on Mac android builds as well.

i am forced to use build 2015.2602 on both Windows and Mac.

Also, it appears that Flurry is not recording properly on either platform for android builds as well.

thanks.

Engineering confirmed it’s both Windows and Mac.  Please use 2602 for now.  Engineering is on it.

Rob

Is this fixed yet?