Google IAP ID's not working but test ID's are working

Good day. I’m currently having a problem getting my ID’s for my IAP, right now only the reserved test ID’s work, but mine doesn’t. Here is my code:

local googleProductList = { -- these product IDs are for testing and are supported by all Android apps "android.test.purchased", "android.test.canceled", "android.test.refunded", "android.test.item\_unavailable", "com.my.id.buy100gmes", "buy100gmes", "com.my.id.buy100gtest", "com.my.id.buy100gs", } store = require( "plugin.google.iap.v3" ) googleIAP = true currentProductList = googleProductList store.init( "google", storeTransaction ) print("INITIALIZED") -- store.loadProducts(, ) --confirm that the store was initialized if ( store.isActive ) then print("IS ACTIVE") if ( store.canLoadProducts ) then print("CAN LOAD PRODUCTS") -- store.loadProducts( currentProductList, loadProductsListener ) store.loadProducts( currentProductList, loadProductsListener ) else --this store does not support fetching of products end

All of my ID’s does not work, but the “android.test” is working

Also here is my log:

I/Corona (20061): INITIALIZED I/Corona (20061): IS ACTIVE I/Corona (20061): CAN LOAD PRODUCTS I/Corona (20061): Succeeded to reached Admob I/Corona (20061): In loadProductsListener I/Corona (20061): VALID I/Corona (20061): Sample Title I/Corona (20061): Sample description for product: android.test.purchased. I/Corona (20061): ₱46.50 I/Corona (20061): android.test.purchased I/Corona (20061): Sample Title I/Corona (20061): Sample description for product: android.test.item\_unavailable. I/Corona (20061): ₱46.50 I/Corona (20061): android.test.item\_unavailable I/Corona (20061): Sample Title I/Corona (20061): Sample description for product: android.test.canceled. I/Corona (20061): ₱46.50 I/Corona (20061): android.test.canceled I/Corona (20061): Sample Title I/Corona (20061): Sample description for product: android.test.refunded. I/Corona (20061): ₱46.50 I/Corona (20061): android.test.refunded I/Corona (20061): INVALID I/Corona (20061): com.my.id.buy100gtest I/Corona (20061): com.my.id.buy100gmes I/Corona (20061): com.my.id.buy100gs I/Corona (20061): buy100gmes

Thanks in advance

I’m having the same problem. It seems that it doesn’t want to know anything about my products, but the test ones work fine. Did you find a work around for this?

I’m having the same problem. It seems that it doesn’t want to know anything about my products, but the test ones work fine. Did you find a work around for this?