2012-08-15 71 views
0

是否仍有可能向市場提交Windows Phone 7.0應用程序?我知道Marketplace只能通過7.5個手機訪問。但我有一些舊的Codebase,並希望更改爲最小。將Windows Phone 7.0應用程序提交給市場

+0

這是對現有應用程序的更新,還是作爲新應用程序的更新? – 2012-08-15 12:33:36

+0

此外,[暫時](http://windowsteamblog.com/windows_phone/b/wpdev/archive/2012/08/14/app-publishing-temporarily-on-hold.aspx)提交被暫停。 – 2012-08-15 12:33:53

+0

這是一個現有的應用程序 – kadir 2012-08-15 13:06:02

回答

1

是的。您可以。你不要使用7.5功能,但我會建議你這樣做。我知道,當我使用應用程序時,當應用程序不使用Mango的快速應用程序切換功能時,會導致我崩潰,除非切換到新的SDK,否則不需要任何其他代碼已經使用墓碑(不,並非所有應用都需要這樣),在這種情況下,您需要在app.xaml.cs中將簡短的if語句添加到application_activated方法中。

private void Application_Activated(object sender, ActivatedEventArgs e) 
    {  
     if (!e.IsApplicationInstancePreserved)  
     { 
     RestoreStateFromTombstone(); 
     } 
    } 

這裏解釋的鏈接上面:http://henry-chong.com/2011/08/wp7-upgrading-your-app-from-7-0-to-mango-fas-tombstoning/

使用7.0 SDK是一個很好的辦法讓我刪除應用程序,除非它是我真正需要的,並沒有其他的,並在那種情況下,我將會留意替換。

+0

不客氣。 – 2012-08-15 16:56:00

相關問題