Google Store IAP and Jenkins

local store = require( “plugin.google.iap.v3” )

local someFunc = function() print(“Tran”) end

print (“HERE1”)

store.init( “google”, someFunc )

print (“HERE2”)

local storeOn = false

if store then

    storeOn = store.isActive()

end

print “HERE3”

if storeOn then print (“TRUE”) else print (“FALSE”) end

isActive is a boolean not a function.

same for canMakePurchases