I’m implementing the restore for an android app. It work fine in a device with a test account, but when I run in a device with a non-test account, the call of method store.restore() do nothing. The callback isn’t called, neither for success nor fail. I’m checking the store initialization, and looks fine.
Follow my code. No prints appears in the log.
store = require(“store”)
store.init(“google”, function(event)
print(“transaction callback”)
end)
if not store.isActive or not store.canMakePurchases then
print(“unable to init store”)
end
store.restore()