In the code below, why do you have two sku? I understand how to make a duplicate sku but I don’t understand why I would. I didn’t do this for Apple or GP and I’m just trying to figure out what the deal is.
[lua]
store.loadProducts( { “my_test_sku”, “my_real_sku” }, loadProductsListener )
if ( store.isSandboxMode() == true ) then
store.purchase( “my_test_sku” )
else
store.purchase( “my_real_sku” )
end
[/lua]
Also, why are you loading your products in the example, is it necessary to make the purchase or are you simply demonstrating the syntax? I have been looking at all available doc on Amazon and on Corona website and I don’t see any explanation.