Mark
Mark

Reputation: 3

Get Windows Phone app store ProductID prior to submission

Is there any way of finding out the store generated ProductID prior to submission of a new app? It used to be that we could create a store app and (without submitting) get its allocated ProductID and then paste this into our WMAppManifest.xml in order to be able to set up Facebook social login that requires the app ProductID.

Upvotes: 0

Views: 341

Answers (2)

Null Pointer
Null Pointer

Reputation: 9289

It is possible using \

 var appId = Windows.ApplicationModel.Store.CurrentApp.AppId;  

See MSDN link

Upvotes: 0

Igor Kulman
Igor Kulman

Reputation: 16361

Not possible as far as I know. You can submit the app as hidden so no one downloads it, get the id, then add the Facebook integration and then submit it again.

Upvotes: 1

Related Questions