Im' wondering if there is a way to post to apps with the same name at the Windows Phone Store, as is suggested in the post linked below:
Is there a way to implement custom in app upgrade in windows phone 7?
Does someone know how they did this thing of "posting one private and one public, with the same name"? Or they didn't do that?
Thanks in advance
Related
I have deployed my UWP in windows store. The app is available in windows store, however, it can be accessed only using the link provided by MS https://www.microsoft.com/store/apps/9nblggh5cdck. The app is not available when I search in windows store. I have used exact name and alternate names, but it's not showing in windows store.
Any suggestion, why it it not available in windows store?
Thanks!
If your app is public (not Beta or Private) it'll take time to be available through the search (Site & Devices) .. around 72 Hours or more in some cases!
UPDATE 1:
That's odd.. I suggest to update the submission and make it Private (2nd option) then after your submission is published.. send another submission and make it Public (1st option).. maybe that will update the servers status and the cache..
Same here. My app not showing in the search result.
It's bug windows store.
https://social.msdn.microsoft.com/Forums/ru-ru/ba1c37da-861d-4108-b905-f1b574a401c6/app-disappeared-from-store?forum=wpsubmit
https://social.msdn.microsoft.com/Forums/windowsapps/en-US/66d1e7d5-9185-419b-ae79-8f457d060f41/my-app-cannot-be-found-in-the-store?forum=wpsubmit
petition:
https://www.change.org/p/microsoft-satya-nadella-bill-gates-windows-store-policy-team-windows-store-fix-windows-store-search-by-title-and-by-keyword-none-searchable-no-results?recruiter=358739216&utm_source=share_petition&utm_medium=copylink
Thank you every one,
I emailed this to Microsoft and then I received reply with following statements:
We have reviewed your app and have moved it up in rank such that you
should see it in the Search results soon.
Within 10 hours after this email, I saw my app in the store.
Thanks to Windows Store Policy Team!
I am a developer who is new to Windows Store development.
I wrote one Windows Store App and tried to upload it, yet I encounter some errors after submit the appxupload file.
The error messages are shown as below:
I have no idea how to make my developer account authorized to publish apps with the capability it mentioned. Is there a different set of capability for different developer account for Windows Store Application?
Can anyone tell me how to fix this?
Thank you!
am developing a windows store 8.1 app using C# and xaml.
In my app i want to find logged in user name from Windows Registry.
How can i get that from C# code?
Anybody please help me.
Regards,
Santhosh
You can find the user name in HKEY_CURRENT_USER\Volatile Environment\USERNAME.
However, I'm pretty sure you won't be able to access this from a Windows Store App.
I'd suggest looking at the UserInformation.GetDomainNameAsync method or other methods in the UserInformation class instead.
Is there a way to get info about particular app such as number of downloads, some kind of statistics etc., not being its owner. I am wondering whether exists any API to get information from Windows Phone Market? Thank you in advance. Last concern : is it enable to use another ad on windows phone than microsoft advertising? Will such app be approved on market?
Unfortunately there is no such Api to Access these things.
In my application, i want to do some task if there is PARTICULAR APPLICATION installed in windows phone.
Is there any way using which we can verify that either application in installed or not ?
for example, can i determine through some code that either facebook messenger is installed or not ?
Currently i don't have any clue about how to accomplish that.
If anyone knows then please share it.
thank you in advance.
There is no way to get the list of all installed applications on the phone currently. You may access only those that are by the same publisher ID using:
InstallationManager.FindPackagesFromCurrentPublisher.
Returns all the app packages with the same publisher ID as the app calling this method.