Hi
Description field in ListingInformation for some reason is empty. To save time:
* i'm using CurrentApp::LoadListingInformationAsync()
* there is valid connection to the internet and store
* my app is already in the store
* all other fields are filled with proper informations (Name, FormattedPrice)
* description is filled when I use CurrentAppSimulator (of course in certified app I don't use it)
* to save even more time here's an example code:
task<ListingInformation^> listingTask(CurrentApp::LoadListingInformationAsync());
listingTask.then([this](task<ListingInformation^> t)
{
try
{
ListingInformation^ listing = t.get();
std::wstring desc = listing->Description->Data(); // DESC IS EMPTY
}
catch(Platform::Exception ^exception)
{
}
});
Where is a problem? In my code, app description or in the store?