My android products arent loading in when i call OnStoreInitialized. for reference i have an error log and a product print out neither of these get hit, seems to be silently failing. however in editor locally it does load the items properly and shows their names/ids so i know thats setup properly. also on apple it seems to work just fine and im using the same productId's across both platforms. I did some searches on here and saw a potential bug that if there was another billing package installed it could fail but I dont even know how to confirm that since im building bundles and the manifest becomes obfuscated into binary so a bit confused on how to proceed.
void OnStoreInitialized(BillingServicesInitializeStoreResult result, Error error)
{
if (error != null)
{
Debug.LogError(error.Description);
return;
}
Debug.LogError($"Store ready with {result.Products.Length} products!!!!!!!!!!!!!!!!!!!!!!");```