I'd like to adapt the interface of my application's store depending on the available items in each moment, hiding the buttons to purchase items that are no longer available or are disabled.
When you remove an item from your developer console, it stops appearing in the getSkuDetails calls, so if the calls success and the item is missing I can hide its button.
But I have some items that are disabled and they appear in the getSkuDetails and when you launch the purchase intent Google Play informs the user that the item is not available for purchase.
My question is: Is there some way of query only for the enabled items, or know it status for removing the disabled items from the screen?
Thanks