Replacing an existing store app

I currently have a paid app in the Windows Store. I'm in the process of re-writing this for both Windows Store and Windows Phone Store.
Am I correct in thinking that if I match the "Package Name" in the app manifest with the package name of the existing store app (there is no existing phone app), then the new app will replace the old, and anyone that has paid on Windows Store will
have access to the phone app, too?

If you already have a Windows 8 Store app then you don't have to "Reserve App Name" on Windows Phone store. You can perform following steps
Go to your Windows Phone Store Dashboard.
Click Submit an app.
Select the app name from the Dropdown which you have reserved in Windows 8 store.
Click Save
Following link may also help
https://msdn.microsoft.com/en-us/library/windows/apps/hh694077.aspx
Users who have buy app from Windows 8 Store can download paid version on Windows Phone Store.
Gaurav Khanna | Microsoft .NET MVP | Microsoft Community Contributor

Similar Messages

  • CST file replacement for existing Director app

    I've got an existing Director application that I want to
    update via swapping out an existing CST file for a new one. I can
    create a new CST file on my Mac and when i re-launch the Director
    app the new cast member works great.
    But on windows... the updated CST file is rejected by the
    Director executable. Even if i re-rebuild the cast member from
    scratch on a PC after first re-saving my assets (24 bit BMP files)
    on the PC.
    Any ideas?

    I'm trying to use this (vals is a FILE_LIST variable):
    vals := WEBUTIL_FILE.DIRECTORY_FILTERED_LIST('\\srv\fld1\jpgs','*.jpg',TRUE);
    first_file_name := vals(0);
    But I get: identifier 'FILE_LIST' must be declared.
    Are there any steps to check if I have properly installed the datatype FILE_LIST? I suppose that's the problem now.
    Thanks for your help!
    EDITED: I solved that reinstalling webutil, and now I can use FILE_LIST. But the error message has changed, and is "oracle.forms.webutil.file.FileFunctions bean not found. WEBUTIL_FILE.GET_ATTRIBUTE_INT will not work". What's the meaning of this? Thanks.
    Message was edited by:
    Otakufran

  • Can I add my existing, licensed apps to my list of 'Purchases' on the Mac App Store so I don't have to buy them twice?

    Hello,
    I was wondering if I could add my existing, licensed apps to the list of app 'Purchases' that I have on the Mac App Store.
    The reason for this is that I recently suffered the inevitable hard disk failure and I had to rebuild my MacBook Pro from scratch (with the help of Time Machine and Migration Assistant, etc.). As usual, I hadn't really maintained my MBP for quite a while and things sort of got away from me, in terms of data, apps, preferences, permissions, users (my personal account, my wife's account, my old work account...), etc.
    So I wanted to rebuild my MBP on a clean slate. I like having the ability to quickly download and install just the right apps that I "really" need from MAS safe in the knowledge that:
    they are there (assuming they're still available through MAS) with a full description of what they do and when I bought them, etc.
    they are going to be in the most up-to-date version,
    I'll be able to download and install them cleanly with no corruption from years of multiple user preference changes and permissions, etc.
    that they will be managed and maintained (updated) through the same mechanism,
    so much more.
    The benefits of having apps from MAS are easy to see when compared to going through my downloads folder and emails looking for the latest installers, working out what they're for in the first place, finding the license key in some forgotten e-mail, etc.
    I am aware that I can build a clean machine and then restore just the right apps in their most up-to-date version as I had them on my backups.  The one thing to say about that is that the apps may have been used and abused once too many times and their preferences, etc. may not be in the most desirable form. It's just not as elegant as the MAS solution.
    I realise that not all apps, app versions, or app vendors, are available through MAS. But I still have a fair few apps currently available on MAS that were bought prior to the existence of MAS, prior to them becoming available on MAS, or were bought directly for some other reason (by mistake).
    So I wondered if there was any way I could convert my legitimate licenses from simply a direct purchase to one through MAS and have those apps listed under my 'Purchases' list. It would reduce the amount of work I'd have to do, not only to rebuild my machine but also to maintain it.
    I cannot find any reference or way of having this work the way I would like it to. But I was hoping that some Apple guru would enlighten me.
    I have thought about the possible mechanisms something like this would need to work and I must admit I see some not insurmountable issues (not as much technical as legal or possibly logistical). I realise that MAS is a service in its own right and as such has its own Terms, Conditions and Licensing that may not be compatible with the licenses that I already have. I also realise that when I purchase an app from MAS that I'm paying for the entire service including updates and use on multiple machines that I may own, etc. Obviously I do not want to pay the full purchase cost again for the same app twice, but I am willing to pay a small conversion/upgrade fee to have it managed as part of my 'Purchases' on MAS.  Think of it in the same terms as iTunes works.  I can purchase music, etc. but I can also add my own CD collection and have it managed by iTunes and store it in the cloud should anything go wrong with my local machine, etc.
    So if this is currently not possible, then for the Apple MAS product managers out there, consider this as a suggestion/feedback.  I'd be happy to discuss my thoughts in more detail about not only how to achieve this for now but also for the future when you may add existing applications to MAS that people may have previously bought direct and would like to have managed through MAS going forward. The benefits to the users are hopefully clear, but from Apple's perspective I hope that you can see the advantages too, commercially, etc.
    PS: I apologise for the wordiness of my query and overuse of 'etc.', etc.

    Can I add my existing, licensed apps to my list of 'Purchases' on the Mac App Store so I don't have to buy them twice?
    No. Only apps purchased from the App Store can be re downloaded for free including updates.

  • Tutorial - Create a blog reader Store app (C++) - Error:The name does not exist in the namespace!

    I'm trying to create my first store app based on msdn's sample.
    Link to the sample:
    https://msdn.microsoft.com/pl-PL/library/windows/apps/hh465045.aspx
    I have problem doing last step (number 3) of part 3.
    In code below in file App.xaml the compiler get the error "The name 'FeedDataSource' does not exist in the namespace 'using:SimpleBlogReader'"
    <Application
    x:Class="SimpleBlogReader.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:SimpleBlogReader">
    <Application.Resources>
    <local:FeedDataSource x:Key="feedDataSource"/>
    </Application.Resources>
    </Application>
    In the file App.xaml.h I added line #include "FeedData.h", and FeedData.h  looks like:
    //feeddata.h
    #pragma once
    #include "pch.h"
    namespace SimpleBlogReader
    namespace WFC = Windows::Foundation::Collections;
    namespace WF = Windows::Foundation;
    namespace WUIXD = Windows::UI::Xaml::Documents;
    namespace WWS = Windows::Web::Syndication;
    /// <summary>
    /// A FeedDataSource represents a collection of FeedData objects
    /// and provides the methods to retrieve the stores URLs and download
    /// the source data from which FeedData and FeedItem objects are constructed.
    /// This class is instantiated at startup by this declaration in the
    /// ResourceDictionary in app.xaml: <local:FeedDataSource x:Key="feedDataSource" />
    /// </summary>
    [Windows::UI::Xaml::Data::Bindable]
    public ref class FeedDataSource sealed
    private:
    Platform::Collections::Vector<FeedData^>^ m_feeds;
    FeedData^ GetFeedData(Platform::String^ feedUri, WWS::SyndicationFeed^ feed);
    void DeleteBadFeedHandler(Windows::UI::Popups::UICommand^ command);
    public:
    FeedDataSource();
    property Windows::Foundation::Collections::IObservableVector<FeedData^>^ Feeds
    Windows::Foundation::Collections::IObservableVector<FeedData^>^ get()
    return this->m_feeds;
    property Platform::String^ CurrentFeedUri;
    void InitDataSource();
    void RetrieveFeedAndInitData(Platform::String^ url, WWS::SyndicationClient^ client);
    How to solve this problem?

    You're testing this too early. You haven't yet finished writing code that your current code depends on. Feeddata.cpp won't build, so you can't use the data object that hasn't yet been created.
    In particular, feeddata.cpp doesn't build since it has many references to items which get added in later steps.
    For example, TextHelper is added in part 5 and App::RemoveFeed is added in part 10.
    You'll need to either wait until you've implemented those before you test or comment out the calls to the unimplemented features until they're done. TextHelper looks like it adds quite a bit and you're almost there, but you can probably get away with commenting
    out the calls to RemoveFeed and GetTitlesFromUri for now.

  • I synced my new iPad with my new macbook and when I tried to then sync my iPhone as well it says that all apps will be replaced with apps in my library. How do I sync without losing all of my existing iPhone apps?

    I synced my new iPad with my new macbook and when I tried to then sync my iPhone as well it says that all apps will be replaced with apps in my library. How do I sync without losing all of my existing iPhone apps?

    My guess is that you previously synced the iPhone with a different computer in the past. You will probably want to set up Home Sharing.
    http://support.apple.com/kb/HT4620
    Also see here:
    http://support.apple.com/kb/HT3819

  • My app store app is bad and I cannot download a replacement

    I tried to download the app store app from iTunes, but it says it is already downloaded(?).
    Can I download it from somewhere else?

    What App Store app?

  • My replacement Ipod touch has no itunes store app in it

    And it cannot be downloaded from the app store... what do i do?

    lllaass wrote:
    - Have you used the Spotlight search feature on the iPod to look for it in case it it is on a screen you can't see or is buried in a folder?
    - Are restrictions set on the iPod since you can restrict (hide) the App Store app.  Go to Settings>General>Restrictions to check.
    If those don't work, open iTunes on the computer and restore it after syncing

  • Integrate existing VB database with windows store app

    Hi
    Can I integrate a VB Database Access 2007 with a Windows 2008 store app?
    If yes, can I have a hyperlink that retrieves a search inside this database and goes directly to a page created by this database?
    Imagine that I have an e-book with a table of contents where I have several hyperlinks for a query that shows me a specific poem and image inside a page.
    Is there a sample?
    thanks

    Hi Rui - there are no APIs that will connect to an Access database directly within a Windows Store app. You can convert the database to SQLite, or provide a web-based interface to the Access database in order to retrieve/update the data.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • HT4623 Why did the update of my phone to the IOS 6, lose my UTube icon, and was replaced with a Passbook app.

    Why did the update of my iphone4 to the IOS 6, lose my UTube icon, and was replaced with a Passbook app.

    Apple is no longer supporting YouTube with a native application starting with iOS 6.0.  The "old" YouTube application was automatically removed when you upgraded, and it no longer exists in the new iOS.  There are however, numerous third-party apps in the App Store which will allow you to view YouTube, including one from Google, which is the parent company for YouTube.  Passbook is a new application to iOS 6.0 and is not at all related to YouTube.

  • Login to WebApi (MVC + WebApi) with Microsoft Account from Windows Store App

    Hi
    How can I access a WebApi Controller (ASP.NET MVC+WebApi) that is secured with Microsoft Account from a Windows Store App?
    I have no idea how to login. I tried the LiveSDK but this gives me only access to OneDrive, Callender and so on.
    Could someone please point me in the right direction.
    Thanks
    Guenter

    Hi Guenter,
    To be clear, you are using Microsoft account as login and at same time you have your own REST service for other functionalities?
    Let's say if you login with LiveSDk, you should be able to get some access token, see this for more information:
    Signing users in, after that use the token to access your REST service, as I understand REST service is a kind of http request, we can use HTTPClient to request data from the address.
    I'm afraid there is no existing sample here but the only thing I found is HTTPClient sample:
    https://code.msdn.microsoft.com/windowsapps/HttpClient-sample-55700664, you can use POST to send your token information to the server.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I can't figure out how to use my Apple Store gift card in the Apple store app

    I received and Apple store gift card (not iTunes gift card) and loaded it into passbook. When I use the Apple store app on my iPad, I don't see an option to use the Apple store gift card as a payment option. Any suggestions?

    What happens when you go to Settings>iTunes and App Stores and tap on the ID and sign out of existing one and ithen sign into the new one?

  • I had to buy a new computer because my old one died. When I sync my iPhone to my new computer, none of the existing content (apps, music, whatever) transfers. What do I have to do?

    When I sync my iPhone to my new computer, none of the existing content (apps, music, whatever) transfers. What do I have to do?
    iPhone 5 iOS 7.1.2
    Old computer Windows XP SP3
    New computer Windows 8

    Anything you purchased from the iTunes Store can be downloaded again, as often as necessary, as long as it still exists in the iTunes Store.
    Read:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • How to create a file in application data local folder which is not hidden in windows store app?

    I want to create a log file in ApplicationData local folder.
         m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    First time when my app is launched, the file gets created and logs are written.
    When I close my app, and re run the app once again, the log file that was created is now hidden and when i try to call
    the code :    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    m_StorageFile is NULL.
    How can i prevent the file from becoming Hidden or ReadOnly.
    Thanks

    Here is a very simple sample that works fine.  Start with this and see what you are doing different.
    XAML:
    <Page
    x:Class="LocalStorage.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LocalStorage"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" Loaded="Page_Loaded">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <TextBox x:Name="outputTxt" HorizontalAlignment="Left" Margin="76,82,0,0" TextWrapping="Wrap" VerticalAlignment="Top" AllowDrop="True" PlaceholderText="No Data read from local file" Width="791"/>
    <Button Content="Store Data" HorizontalAlignment="Left" Margin="73,145,0,0" VerticalAlignment="Top" Click="Button_Click" />
    </Grid>
    </Page>
    C#
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.Storage;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace LocalStorage
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    private async void Button_Click(object sender, RoutedEventArgs e)
    if (m_StorageFile != null)
    try
    string userContent = outputTxt.Text;
    if (!String.IsNullOrEmpty(userContent))
    await FileIO.WriteTextAsync(m_StorageFile, userContent);
    else
    // should be some info to write
    catch (FileNotFoundException)
    // do something
    private StorageFile m_StorageFile;
    private async void createFileOrGetFile()
    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("sample.log", CreationCollisionOption.OpenIfExists);
    private async void Page_Loaded(object sender, RoutedEventArgs e)
    createFileOrGetFile();
    if (m_StorageFile != null)
    try
    string fileContent = await FileIO.ReadTextAsync(m_StorageFile);
    outputTxt.Text = fileContent;
    catch (FileNotFoundException)
    // do something!
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Has anyone deleted the Lenovo Store app on an A1?

    I have no desire to use the Lenovo app store and I would like to delete the app which isn't a problem given that I have root access and the appropriate tool for deleting the app.
    My only concern is what will happen to the toolbar on the bottom of the launch page since it includes a shortcut for launching the Lenovo Store app...does that shortcut just "disappear" , is it replaced with a different shortcut, is the shortcut permanently stuck on the toolbar as a dead shortcut, or is the shortcut just replaced with a blank area, or what?
    Hopefully someone has already done this and can provide some feedback which would be appreciated.
    thanks
    *Smith & Wesson...the original point and click interface*
    Solved!
    Go to Solution.

    xwray wrote:
    Thanks...does the toolbar (and thus the shortcut) remain if you switch to a different launcher or will the new launcher now control the entire screen including the toolbar area? Or, is the toolbar a permanent fixture no matter what you do?
    I use the GO Launcher and the GO Locker. The toolbar becomes totally user definable. You can put anything at the bottom that you want. Very easy to use, and fairly intuitive. I have not found a way to get rid of the Lenovo App Shop. Pity.
    BTW Go Launcher and Locker are free. You might also want to check out the GO Keyboard. Yes I know we have that, but it is customized for Lenovo, I like the standard GO Keyboard much better.
    IdeaPad A1-07
    iPhone 3GS

  • My iPod touch with iOs 5 does not have the iTunes store app on it. How can I get it?

    I have recently upgraded my touch 4g to iOs 5, and I love the new iOs. There is only one problem, the native iTunes app does NOT EXIST. I have no problem connecting to the itunes store on my pc itunes program, but my ipod touch DOES NOT HAVE THE ITUNES APP and therefore has no way to access the itunes store mobilely. Please help. I tried restoring in itunes, did so, and still do not have the itunes store app on my ipod.

    You probably have restrictions set.
    iPod touch User Guide (For iOS 5.0 Software)

Maybe you are looking for

  • How do I change the default font for foot/end notes in Pages 09?

    The fonts for notes in Pages seems fixed to Helvetica, even when the font for the body has been changed. I've been able to save the font for the body by saving it as a tempate, but it doesn't seem to work for the notes. Any help?

  • How do I link clips in the timeline so that they move together?

    I cannot seem to effectively link my clips together in the timeline and it is causing me multiple problems. First of all, when I want to move a clip from one place to another, the other clips after it are not moving forward to close the gap. I tried

  • Handle to Java Frame in C

    I would like to obtain the handle to a Java window...... jawt gives only the handle to a canvas..... Please help me out.....This is urgent.......

  • Time stamp does not appear when referenced by a parameter

    In the following, I am successfully deleting the dbo.ssheet (line 2), but the insert into dbo.tlog (line 2) never shows a value for param2. I do see values as expected for param1 and 3. I am new to this. Am I correct in assuming that param1 refers to

  • ANN: Tutorial Series: Industrial-Strength BC4J

    Available 3/26/03 http://otn.oracle.com/sample_code/tutorials/bc4jvsm/bc4jvsmtoc.htm This series of tutorials uses the Virtual Shopping Mall sample application to demonstrate programming techniques that take advantage of features of Business Componen