Google IAP V3 Error

Hi. I try to include plugin.google.iap.v3 into my app.

          ["plugin.google.iap.v3"] =         {             publisherId = "com.coronalabs",             supportedPlatforms = {android = true},         },

  local store = require("plugin.google.iap.v3")

And I have problem:

14:23:14.323  ERROR: Runtime error 14:23:14.323  module 'plugin\_google\_iap\_v3' not found: 14:23:14.323   no field package.preload['plugin\_google\_iap\_v3'] 14:23:14.323   no file 'C:\Users\naitv\AppData\Roaming\Corona Labs\Corona Simulator\Plugins\plugin\_google\_iap\_v3.lua' 14:23:14.323   no file 'C:\Users\naitv\Documents\Corona Projects\Dry Your Tears\plugin\_google\_iap\_v3.lua' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\Resources\plugin\_google\_iap\_v3.lua' 14:23:14.323   no file '.\plugin\_google\_iap\_v3.lua' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\lua\plugin\_google\_iap\_v3.lua' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\lua\plugin\_google\_iap\_v3\init.lua' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\plugin\_google\_iap\_v3.lua' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\plugin\_google\_iap\_v3\init.lua' 14:23:14.323   no file 'C:\Users\naitv\AppData\Roaming\Corona Labs\Corona Simulator\Plugins\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file '.\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\Resources\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file '.\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\loadall.dll' 14:23:14.323   no file 'C:\Users\naitv\AppData\Roaming\Corona Labs\Corona Simulator\Plugins\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file '.\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\Resources\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file '.\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\plugin\_google\_iap\_v3.dll' 14:23:14.323   no file 'C:\Program Files (x86)\Corona Labs\Corona SDK\loadall.dll' 14:23:14.323  stack traceback: 14:23:14.323   [C]: in function 'error' 14:23:14.323   ?: in function 'gotoScene' 14:23:14.323   C:\Users\naitv\Documents\Corona Projects\Dry Your Tears\main.lua:7: in main chunk  

Make sure the code is within your build.settings file. Also don’t forget to add the android billing permission in the usesPermission table

settings =
    {
        plugins =
        {
            [“plugin.google.iap.v3”] =
            {
                publisherId = “com.coronalabs”,
                supportedPlatforms = { android=true }
            },
        },
    }

also remove that comma after the {android=true} in your code

Still same error, is there any way to download this plugin?

Make sure the code is within your build.settings file. Also don’t forget to add the android billing permission in the usesPermission table

settings =
    {
        plugins =
        {
            [“plugin.google.iap.v3”] =
            {
                publisherId = “com.coronalabs”,
                supportedPlatforms = { android=true }
            },
        },
    }

also remove that comma after the {android=true} in your code

Still same error, is there any way to download this plugin?