What is the license for an App Store App?  In-App Purchase?  Re-downloads?

Hello All!
I purchased an iPhone 3G when they initially came out. My wife bought one (and uses my iTunes account on it exclusively) about six months later. I couldn't find and understand what the licensing agreement was about installing the same app on multiple devices. I wanted to be legal and do it right, but I knew I could download the same app on both phones (with a single purchase) since they both use the same iTunes account.
I asked the iTunes store support via e-mail for a clarification of the policy since I couldn't find or understand the legal version of application licensing through the iTunes store on the Apple website. I got the run-around and no simple yes or no answer after several back and forth replies. So, I posted a message here and received a number of replies telling me that it was legal (not just possible, but LEGAL according to the EULA and the iTunes Store's licensing agreement -- which does vary considerably with each type of product sold). I proceeded accordingly since then based on that information, since I couldn't get a simple yes or no answer from iTunes Support about the really simple question I asked them. I was just attacked about my total ignorance on a different website by a user when I questioned the change in In-App purchase policies. I know Apple has seen a spike in these purchases, but it's been driven (quite literally) by the GPS app subscriptions, not true in-app product purchases.
Up until now, I've avoided in-app purchaes because I just didn't like the fact that if it was lost due to some failure in hardware (or backups not working correctly, as that was a real problem with the iTunes software for some time for me), I had no ability to re-download it again, like the app itself. Now, with the policy change allowing for developers to avoid having to make a Lite version and make buying the full version an in-app purchase, this will make it unavoidable for certain applications if I want the full version.
*So, I've got several questions, and would appreciate an Apple employee response, in addition to others who really know (and aren't just doing what is possible). Is it legal for a purchased app to be installed on multiple devices concurrently? If that is legal, can an in-app purchase be installed on multiple devices concurrently (and is possible to make this download without additional charges)? And finally, can in-app purchaes be downloaded again if there is a hardware failure (and no valid backup to restore from) or do I have to buy it all over? If that last question has an answer of no, it's going to help me determine who I buy from.*
I'm not a fan of these in-app purchases since they weren't re-downloadable when problems occurred (as least that's what I was told), so as I said, I've avoided them. Obviously, I'm going to have to change that policy, but I want to know that my purchases will be safe. I like seeing the app on my computer's hard drive as a real file (and in iTunes as a listed application).
I'd appreciate someone clearing this up for me as I took the first time I asked as a basis for my decisions since then and now I'm being told that was all wrong. I wish there was a simple link, in non-legal terminology, that would explain the licensing rights for each type of product being sold in the iTunes store on the Apple website itself. If there is such a place, iTunes Support should have told me about that when I contacted them in the first place when my wife first got her phone (but instead, I had to get answers here because it seemed like Apple's support is just automated computers guessing at appropriate responses to questions). It was such a simple question and I couldn't get an answer, even after 2 or 3 back and forth replies. It was rediculous!
Would someone please clear this up for me?
Thanks!
Jim

@wjosten:
I really appreciate your input, but I'd like an Apple employee response to rest my hat on (like JasonL, who has responded to my posts previously -- his user account is marked with an Apple icon and says Apple Employee on it). I know it's not official, but after getting attacked on another website for this question, I knew I had to head here. I couldn't get straight answer from Apple's iTunes Store Support, so I wanted to have someone attached to Apple sticking their neck out.
*A few questions for you, though, with the in-app purchases of both subsciptions (like with the GPS apps) and product additions, since I've never used them before because of fear of losing them. When you make an in-app purchase, and then I want to put it on my wife's phone, does it come up the same box saying it's free to download because you've already purchased it? How does this work with subscriptions, which would have to update the developer's servers somehow (to know how long to provide a service for)? I have MotionX GPS and need a subscription for esentially the app to work fully. I'm still in the 30-day free window, but it's not installed on my wife's phone. If I want to continue the service, will I be able to buy one subscription and just re-download it on her phone (and it would give her phone the same expiration date for her service from them)? Would it just update MotionX's system when the initial purchase is made and any additional downloads would be ignored (as long as they were made under my iTunes account)? This is particularly confusing because MotionX says you can stack subscriptions, so I would think each download would have to be paid for in order to do this. See what I mean?*
*I know about music being non-redownloadable, but also thought the same was true for all media except for apps (movies, TV shows, etc.). Is that also not true? It's not a big issue for me, since I don't get most of my media from iTunes, but I'd like to know the right answers when I do.*
Thanks for helping someone who doesn't understand Apple's SLA's or how to find them online on their system. Yes, I'm a PC, but am considering a Mac for the near future, but I've never had a lot of luck finding information in Apple's support knowledgebase at all. Microsoft's KB works better, but it just may be I'm used to it since I've used it for almost 20 years. I've only been using Apple's for going on 15 months.
Really, if you can clear up these other questions, I'd be happy to call it solved. I appreciate it a bunch!
Take care!
Jim

Similar Messages

  • What is the license for the MH DDK?

    Hello,
    I am hoping to include a simple driver for the PCI-6220 acquisition card in a software distribution.  I would like to know what the license is for the whole DDK?  Usually this information is present in the download of the source code, but I saw no LICENSE.txt file or anything similar.  The only information I have found is that the Linux 2.6 kernel portion of the driver is licensed under BSD (in the NI-MHDDK Readme file).  However, there is no license for the rest of the package.  Is this code freely modifiable and redistributable?
    Thank you.

    Hello, I've just hit on another license-related issue.
    I've developing some Linux software on top of the NIRLP driver, using the NIMHDDK (osiBus) layer.
    So far so good.  However, in modifying the NIRLP driver I've hit a legal wall:
    You claim that the NIRLP driver is licensed with BSD:
    ftp://ftp.ni.com/support/daq/mhddk/readme.htm
    However, the MODULE_LICENSE line in nirlpk.c says the following:
    MODULE_LICENSE("Copyright (c) 2006 National Instruments Corporation.  All Rights Reserved.");
    Which does not specify BSD.  In any case, it hasn't been a problem since Linux has technically allowed linking against non-GPL licensed code.
    However, there has been a movement to start marking new functions exported in the kernel API as "GPL-only" symbols.
    I started modifying NIRLP to announce itself on sysfs, so that it would be noticed by udev and show up under /dev automatically.
    This requires calling the function "class_create()".  When I compiled the module calling this function, I got the following error:
    make[1]: Entering directory `/usr/src/kernels/2.6.24.4-64.fc8-i686'
      Building modules, stage 2.
      MODPOST 1 modules
    FATAL: modpost: GPL-incompatible module nirlpk.ko uses GPL-only symbol 'class_create'
    make[2]: *** [__modpost] Error 1
    make[1]: *** [modules] Error 2
    make[1]: Leaving directory `/usr/src/kernels/2.6.24.4-64.fc8-i686'
    make: *** [default] Error 2
    So, technically it is now a bit of a problem that the module is BSD-licensed, since it is impossible to mark the module GPL in order to bypass this error.  (BSD is techically incompatible with GPL.)  The kernel documentation recommends that BSD code intended to be used in the kernel should be dual-licensed as BSD/GPL:
    http://www.kernel.org/pub/linux/docs/lkml/
    I highly recommend that NI consider dual-licensing the NIRLP driver for Linux if they intend to support it further, or allow their customers to modify it.  I believe this would be in the spirit of the original license, but would allow better integration with the direction in which Linux is moving.  Currently I'll have to instruct my users to manually create a device node instead of having it appear automatically, which is slightly annoying in terms of usage.
    Thanks,
    Steve

  • TS1702 I use iphone5, I see an app update on the app store. but when App store and click on the update tab, it doesn't show me which application to update.. just give me a blank page.!!!! what is the solution for this.!!!!

    I use iphone5, I see an app update on the app store. but when App store and click on the update tab, it doesn't show me which application to update.. just gives me a blank page.!!!! I wouldn't able to know what app has to be updated, untill and unless i get check for each every app on the app store installed on my iphone... what is the solution for this.!!!! can any1 one help me out.!!!!

    Cc2528 wrote:
    The iTunes Store on my iPad is set up with all my music already. And at the very bottom it shows my apple Id username. The only place it shows the previous owners id is in the App Store...
    You can probably change the ID in the "iTunes and App stores" settings on the iPad....click on the wrong account ID , select sign out, then log in with your own ID, I have not done this but I think it works.....
    but I would be more inclined to to the factory reset and start afresh.

  • App-V 5.0 Sequencing Office 2010 - Cannot verify the License for this Application KMS

    Hey Guys,
    i already found some Topics about my Problem, but None of the Solutions i have found, help in my case. I hope someone can help...
    I Sequenced Office 2010 Professional Plus x86 on an App-V 5.0 Sequencer Client (x64) and streamed it to Windows 7 x64 and Windows Server 2012. While i was sequencing, i followed the Articles at
    http://blogs.technet.com/b/office_resource_kit/archive/2011/06/15/sequencing-office-2010-for-app-v-part-1-considerations.aspx and also used the Parameter:
    msiexec/i OffVirt.msi ADDLOCAL=Click2runMapi,Click2runOWSSupp,Click2runWDS,OSpp,OSpp_Core PROPLUS=1
    In the sequencing Process anything ist working fine, i can start Word, Excel... and Office is activated. When i publish the Application and stream to the Client or RDS, i get the Error message in the Screenshot.
    I also tried to create a new Package and type in the KMS Client Key directly to Office, didnt work. In a third Sequencing Process (also new Sequence) i tried with an another Script what i have found: msiexec /i OffVirt.msi PROPLUS=1 KMSSERVICENAME=”SERVERNAME”
    KMSSERVICEPORT=1688
    Please help!!
    Best regards

    I am having this same exact issue; however, I have done everything in the App-V 5.0 Sequencing document, and I have enabled Set-AppVClientConfiguration -EnablePackageScripts 1.
    The sequencer is on a Win 7 32-bit machine, so I used the following:
    msiexec
    /i OffVirt.msi ADDLOCAL=OSpp,OSpp_Core PROPLUS=1
    KMS is registered in DNS, so I shouldn't have to specify KMS.
    As soon as I start Office on a machine, setup screen comes up briefly, and then I see the: 
    "Microsoft Office cannot verify the license for this application. A repair attempt failed or was canceled by the user. The application will now shut down."
    I would use the package accelerator; however, it's a new Pro Plus 2010 build, and it says 12 files are missing from the install (files like the actual OffVirt.msi and manifest files).
    This is getting a little frustrating, as I've already tried the package 4 different times. I also tried this version:
    msiexec/i OffVirt.msi ADDLOCAL=Click2runMapi,Click2runOWSSupp,Click2runWDS,OSpp,OSpp_Core PROPLUS=1
    I am also using the latest SP2 client, Sequencer, and then the AppV 5.0 SP1 server is using the latest hotfix 4 which was released in April 2014.

  • What is the alternative for DisplayMemberPath="Value" for Windows Store applications?

    I think there is a bug with Windows Store Applications when it comes to using DisplayMemberPath="Value".
    Here is my code
    <ComboBox Height="40" VerticalAlignment="Stretch" SelectedValuePath="Key" DisplayMemberPath="Value" x:Name="comboBox1" FontSize="25"/>
    var source = new Dictionary<string, double>();
    source.Add("Item1", 0.4);
    source.Add("Item2", 0.3);
    source.Add("Item3", 0.1);
    source.Add("Item4", 0.1);
    var formateDSource = new Dictionary<string, string>();
    foreach (var item in source)
    formateDSource.Add(string.Format("[{0}, {1}]", item.Key, item.Value), item.Key);
    comboBox1.ItemsSource = source;
    If you use this code in WPF in works perfectly. However if you use this code in a Windows Store Application then the Combo Box is empty and an error is thrown. So is there an alternative way to do this in Windows Store Applications and have I unearthed a
    bug? Because I have researched the Web for days and found no solution to this.*please do not comment unless you have tried my code as a Windows Store App not a WPF in Visual Studios. Can Someone post an example based on my code that works in Windows Store
    Apps please because this is terrible.
    Thanks

    It looks like you got an answer on SO:
    http://stackoverflow.com/questions/29817124/what-is-the-alternative-for-displaymemberpath-value-for-windows-store-applicat
    This does look like a bug.
    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.

  • Hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    Legality aside (I'm not a lawyer and have no opinion on the matter) in order to make a purchase of an iPhone 5 you would need to travel to a country where they are for sale and purchase it there. Be sure to get one that is officially unlocked or you would not be able to use it with your cell carrier. Be sure that your carrier supports use of the iPhone before you buy. Also note that the warranty of the iPhone is only valid in the country of purchase.
    Appe does not ship outside of the countries where it sells the phones.

  • Whenever I try to download or update an app from the App Store it says " App Store is not available" What should I do?

    Ok so I've had my iPod for almost a year now and I have never had this problem before. But now I'm not able to download apps from the App Store. I am able to get into the App Store and browse apps, but as soon as I try to download something it says "app store is unavailable"
    What should I do?
    BTW!
    I tried signing in/out

    Do you have any Restrictions set that would do that? Settings>General>Restrictions
    Where are you located?
    Are you using the country's store for where you are located?

  • What are the requirements for publishing an App for private distribution, not sale.

    I need to create an App in English and 4 other languages for private distribution to individuals. What are the requirements for doing this please? I currently have a just a Single Edition license. Am I right in understanding I need a Cloud subscription and an Apple Developer subscription also?

    My client desire is to only make their accessible to paying members requiring a sign–in before download. Does this fall into a private distribution deployment.

  • HT201304 Kindle Amazon app store has an app called childs place. It's a parental control app that allows the parent to put only apps into it for childrens access & requires a password to get out of. Anyone know if there is a similar app in the Apple app s

    Kindle App Store has an app names Child's Place. It lets you add only the apps you want your child to access and requires a passcode to exit it. That way your child cannot access any other content except what you have allowed in this particular app. Does anyone know if Apple App store has anything comparable? I know you can set up restrictions in settings but this is different.
    Thanks

    Sorry but no, that is not possible in iOS. Other than what is offered in the Restrictions, there is no way to lock apps in general unless the app itself has a password feature. You can in iOS 6 lock the iPad into a single app, but that's your only option.
    It's a tradeoff; apps can't affect each other except in very restrictive ways in iOS which makes such features from third parties impossible, but it also renders getting malware infecting your iOS device extremely unlikely, something not the case with Android-based devices.
    Regards.

  • What are the license conditions for the customer ?

    What is the license agreement for the customer to use Beehiveonline ? Is it similar as the OUM Customer model copied below? thanks Francis
    OUM Customer Program: The OUM Customer Program allows customers to obtain copies of the method for their internal use by contracting with Oracle for a services engagement of two weeks or longer. Customers who have a signed contract with Oracle and meet the engagement qualification criteria as published on Customer tab of the OUM Website, are permitted to download the current release of OUM for their perpetual use. They may obtain subsequent releases published during a renewable, three-year access period.

    Hi,
    We do not have a license requirement for BeehiveOnline as this is a service provided by oracle for Oracle customers, partners etc. to allow them to work more efficiently with Oracle. It is not a system that the customer can control as the groups are maintained by the Oracle,contact.
    We rely on the normal terms and conditions that all users sign up to when they create an oracle.com website account.
    So in short - it is a free-to-use service licensed under the same agreement as the normal oracle.com websites acount.
    Phil

  • Is Firefox available for use in a Citrix environmet, what are the licensing implications

    Is Firefox available for use in a Citrix environmet, what are the licensing implications

    Licensing is easy: the [http://www.mozilla.org/MPL/2.0/ Mozilla Public License] is free and open. Naturally, it contains the customary disclaimers and limitations.
    Implementation might be more of a challenge because Firefox presumes certain things about the system.
    I suggest joining the Enterprise Working Group Mailing List to connect with an audience of corporate implementers on this issue and search the list archives.
    * http://www.mozilla.org/firefox/organizations/
    * https://mail.mozilla.org/listinfo/enterprise
    If you find other good resources, would you mind contributing them back to this thread? Thanks.

  • HT1918 Hi,   I need to change the country for my Apple store account but this message appears "You have a store credit balance; you must spend your balance before you can change stores." but my credit is 1.58$ only and I couldn't buy any app with this amo

    Hi,
    I need to change the country for my Apple store account but this message appears "You have a store credit balance; you must spend your balance before you can change stores." but my credit is 1.58$ only and I couldn't buy any app with this amount! Any way how to fix that and I don't have a problem if I lose this 1.58 $?

    If you can't spend it then you can try contacting iTunes support and ask if they can remove the balance from your account : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • What is the URL for the keynote help link in the keynote app

    what is the URL for the keynote help link in the keynote app on the ipad. I have a firewall in place to keep student from accessesing unwanted/restricted information, where can I find the url/ip address to unblock this site. Thanks

    Hi Ravi,
    As such there is no path for directly opening Visual Composer from the Netweaver system (I suppose this is what you mean by the acronym nws). Visual Composer can only be opened by the URL as given by Rahul:
    http://<hostname>:<port>/VC
    Bye
    Ankur

  • ITunes store took 51 INR after giving my account info, what is the money for?

    Recently i updated my account info in iTunes store, It just took 51 INR right away, what is the money for?
    In the transaction description I got /APPLE ITUNES STOR/LUXEMBOURG/
    Help me out.

    If you updated your credit card details then you probably had a temporarry holding charge applied to the card which is to check that the card is valid and active - it should disappear within a few days
    There is more info here : http://support.apple.com/kb/HT3702

  • Yesterday I purchased credit from App Store in "maaii app" 4.99$, that credit is not come in maaii credit balance and deducted the amount from my credit card. What happened that amount?

    Yesterday I purchased credit from App Store in "maaii app" 4.99$, that credit is not come in maaii credit balance and deducted the amount from my credit card, Where is that balance?

    Hello there, jobymk.
    The following Knowledge Base article shows how to report an issue with your App Store purchase:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

Maybe you are looking for

  • Flashing Question mark Folder and clicking - no start up.

    Dear Mac Users, I've already got some info on the above, but my 3.5year old G5 iMac wont get past the flashing question mark folder icon. It can't find the start-up drive. The think the hard drive is dead - if I start up from external HD it's OK and/

  • HT204088 How to cancel a purchase order

    I received a invoice no 208036682224 with an amont of  5.44 I want this canceled I did not authrize this

  • DML on multiple tables in one Page

    Hi, Requirement is there are 6 tables. Depends on the input parameter we need to perform DML operations on the tables. Is there any way to build VO(Based on EO) dynamically linked to a table and performs DML. If this is possible we pass table name as

  • How to Mapping with AP to GL Reconciliation Process

    Hi All We are using Oracle R 12. I have to Reconcile with Ap to GL. When i Reconcile with AP to GL (AP Trial Balance = GL Trial Balance ) should nock off but Closing Balance is Not Matching, Its showing some differance in morethan GL TB Closing Balan

  • 'download error' in my itunes downloads iPhone 5

    i have a 'download error' in my itunes downloads.  it says 'tap to retry'  but i always get the same error-  "unable to download movie'.    I would just like this errored movie out of my downloads,  but i can't get rid of it