In-app purchase to get rid of ads & family sharing

If we make an in-app purchase to get rid of the ads, buying the app will transfer to other members of the family through the sharing of the family?

My boys play a game that has obnoxious ads.  We are ready to buy the app, but I don't want to buy 2 x.

No, in-app purchases are not included in the sharing of the family, each person will have to buy it: What are the types of content can I share with sharing family?-Apple Support

Tags: iTunes

Similar Questions

  • Get rid of ads in outlook on a surface rt

    I have Office 365 and understand that I can't use it on the surface. The problem is that I have outlook on the RT and you really don't want to have to pay to remove ads since I own office 365 (subscription model). What is the policy of Microsoft for Office 365 will not work on the Surface RT? Any help would be appreciated.

    Hello JOHNPOHL,

    If you can access your mail Office 365 IE10, you can create a tile on the start screen to go directly to it, thus avoiding ads. If it is the Microsoft of account that you use to connect to the Surface RT when you connect to the Tablet you will automatically be connected to this email too.

  • In-App purchase issue

    While the investigation into the issue of images do not hit any fly/scrolling in a Webview (http://supportforums.blackberry.com/t5/Native-Development/Issue-With-Scrolling-Images-In-Webview/m-p...) I came across the question if a user buys my in-app purchase then removes the application and reinstall the in-app purchase did not work.

    First of all, in-app purchase is to remove the ads - it does that very well, but when the application is removed and reinstalled ads appear once more and I don't want to force consumers to pay twice, so I really need to get this fixed number as it is preventing me to release an update of my application.

    I'm working out of this example: http://supportforums.blackberry.com/t5/Native-Development/Sample-Removing-In-App-Ads/m-p/2783323/hig... and have used it to create buying app for my application.

    Here's my source, my main.qml of my application file code:

    import bb.cascades 1.0
    import bb.platform 1.0
    import com.sample.payment 1.0
    
    TabbedPane {
        id: tabbedPane
        property variant payment
    
        Menu.definition: MenuDefinition {
            id: appMenu
            actions: [
                ActionItem {
                    title: "About"
                    imageSource: "asset:///IMG/ic_info.png"
    
                    onTriggered: {
                        aboutSheet.open()
                    }
                },
                ActionItem {
                    title: "Contact Us"
                    imageSource: "asset:///IMG/ic_email.png"
    
                    onTriggered: {
                        emailInvocation.query.uri = "mailto:[email protected]?subject=Shopping For eBay App: Contact"
                        emailInvocation.query.updateQuery();
                    }
    
                },
                ActionItem {
                    id: upgradeAction
                    title: "Remove Ads"
                    imageSource: "asset:///IMG/ic_clear_list.png"
    
                    onTriggered: {
                        if (tabbedPane.payment) {
                            /* replace the values in quotes "" below with the values from
                             * your vendor account for this application's add-on. */
                            payment.mPaymentControl.pid = "{REMOVED}"
                            payment.mPaymentControl.sku = "{REMOVED}"
                            payment.mPaymentControl.name = "Remove Ads"
                            payment.mPaymentControl.metadata = "Purchasing this will remove the adverts!"
                            payment.mPaymentControl.getPrice(payment.mPaymentControl.pid, payment.mPaymentControl.sku);
                            payment.mPaymentControl.purchase(payment.mPaymentControl.pid, payment.mPaymentControl.sku, payment.mPaymentControl.name, payment.mPaymentControl.metadata)
                        }
                    }
                    attachedObjects: [
                        // Definition to hold the PaymentControl so it is only created when neccesary
                        ComponentDefinition {
                            id: paymentdef
                            Container {
                                id: payContainer
                                onCreationCompleted: {
                                    console.log("Payment Definition Created - Checking for Existing Purchases")
                                    paymentControl.getExisting(true);
                                }
    
                                property alias mPaymentControl: paymentControl
    
                                attachedObjects: [
                                    PaymentServiceControl {
                                        id: paymentControl
                                        property string pid
                                        property string sku
                                        property string name
                                        property string metadata
    
                                        // Play receipt animation on purchase response
    
                                        onPurchaseResponseSuccess: {
                                            cpp.saveValueFor("removedAds", "23");
                                            root.removedAds = 23;
                                            console.log("purchaseResponse - " + receiptString)
                                        }
                                        onInfoResponseError: {
                                            console.log("Purchase Error - " + errorCode + " - " + errorText)
                                        }
    
                                        onExistingPurchasesResponseSuccess: {
                                            if (receiptsString == "(No purchases)") {
                                                console.log("existing unable to find receipt")
                                            } else {
                                                console.log("existing receiptString - " + receiptsString)
                                                cpp.saveValueFor("removedAds", "23");
                                                root.removedAds = 23;
                                            }
                                            console.log("existingPurchaseResponse Success - " + receiptsString)
                                        }
                                    }
                                ]
                            }
                        }
                    ]
                },
                ActionItem {
                    title: "Share App"
                    imageSource: "asset:///IMG/ic_share.png"
    
                    onTriggered: {
                        invokeShare.trigger("bb.action.SHARE")
                    }
                },
                ActionItem {
                    title: "More Apps"
                    imageSource: "asset:///IMG/ic_buy.png"
    
                    onTriggered: {
                        invokebb.trigger("bb.action.OPEN")
                    }
                }
            ]
            attachedObjects: [
                Sheet {
                    id: aboutSheet
                    About {
                    }
                },
                Invocation {
                    id: invokeShare
                    query {
                        mimeType: "text/plain"
                        data: qsTr("Get your shopping done easily on your #BlackBerry10 with 'Shopping For eBay'; check it out in @BlackBerry World: http://appworld.blackberry.com/webstore/content/35964888/")
                        invokeActionId: "bb.action.SHARE"
                    }
                },
                Invocation {
                    id: invokebb
                    query {
                        mimeType: "text/html"
                        uri: "appworld://vendor/64825/"
                        invokeActionId: "bb.action.OPEN"
                    }
                },
                Invocation {
                    id: emailInvocation
                    query.mimeType: "text/plain"
                    query.invokeTargetId: "sys.pim.uib.email.hybridcomposer"
                    query.invokeActionId: "bb.action.SENDEMAIL"
                    onArmed: {
                        emailInvocation.trigger(emailInvocation.query.invokeActionId);
                    }
                }
            ]
        }
        showTabsOnActionBar: false
        Tab {
            title: qsTr("Home") + Retranslate.onLocaleOrLanguageChanged
            imageSource: "IMG/101.Home.png"
            NavigationPane {
                id: navigationPane0
                Page {
                    onCreationCompleted: {
                        root.removedAds = parseInt(cpp.getValueFor("removedAds", ""))
                        if (root.removedAds != 23) {
                            tabbedPane.payment = paymentdef.createObject(navigationPane0);
                        } else {
                            console.log("Not Creating Payment Definition, User has Already Paid To Remove Ads")
                        }
    
                    }
                    id: page1
                    //actionBar actions
    
                    //Title bar
    
                    Container {
                        id: root
                        property int removedAds
    
                        onRemovedAdsChanged: {
                            if (removedAds == 23) {
                                myAds.visible = false
                                myAds2.visible = false
                                appMenu.removeAction(upgradeAction)
                            }
                        }
                        Container {
                            id: myAds
                            horizontalAlignment: HorizontalAlignment.Center
                            layout: StackLayout {
    
                            }
                            MyAds {
                                horizontalAlignment: HorizontalAlignment.Center
                                topPadding: 15.0
                            }
                        }
                        Container {
    
                            layout: DockLayout {
    
                            }
                            // To enable scrolling in the WebView, it is put inside a ScrollView.
                            ScrollView {
                                id: scrollView
    
                                scrollViewProperties.overScrollEffectMode: OverScrollEffectMode.None
                                // We let the scroll view scroll in both x and y and enable zooming,
                                // max and min content zoom property is set in the WebViews onMinContentScaleChanged
                                // and onMaxContentScaleChanged signal handlers.
                                scrollViewProperties {
                                    scrollMode: ScrollMode.Vertical
                                    pinchToZoomEnabled: true
                                }
    
                                //Webview
    
                            } // ScrollView// A progress indicator that is used to show the loading status
                            Container {
                                bottomPadding: 25
                                horizontalAlignment: HorizontalAlignment.Center
                                verticalAlignment: VerticalAlignment.Bottom
    
                                ProgressIndicator {
                                    id: progressIndicator
                                    opacity: 0.0
                                }
                            }
                        }
                    } // End of container
                }
            }
        } //End of first tab
    } //End of tabbedPane
    

    Any help and advice in this regard would be greatly appricated.

    Thanks in advance!

    If you test using a sandbox past purchases account cannot be restored. Purchases made with a sandbox account did not get connected to the server, so if you try to restore (ex after you remove and then re - install the app even) then no purchase will be returned.

    You can test your rollback logic with purchases in the same session of the app: open the app, make a purchase, try a restore, all this without closing the application.

    The only other option would be to remove your account from the sandbox and try buying using real $$

  • I can't get the family sharing to work properly

    I want my daughter to be able to see the items I purchased.  Audit on my iPAD, family sharing is set up and its ID is.  I can even see applications that she bought on my iPAD. But on his Mac, I see no sign of my purchases (music or TV shows).  Running his Mac OSX 10.9.5.  Its iTunes shows no sign of my apple ID - for example it is supposed to be a drop-down menu beside the words BOUGHT on the upper left side of the various windows you get in ITunes by selecting purchased.  There is no drop-down list.

    I have tried all the usual suggestions by logging on iTunes and iClod and then again (using his AppleID), restart the computer, etc..  But his iTunes seems to still know nothing about the fact that she is in a family.

    I was going to buy a TV series about ITunes, but if she has xcannot see it I don't want.  Why Apple made things so difficult!

    An additional piece of info.  I just hand on my iPhone of girls.  Looking at the app Store of Itunes, I can see my purchasies.  So family sharing was set up fine, it's just the Mac iTunes who can't seem to see.  Unfortunately, this is used to view movies etc., not the iPhone!

  • IPhone 4 ios 7 can not get on the family sharing for itunes

    Hi, my son got a new second hand phone. try to get him on the family sharing so he can listen to the music, but whenever he's trying to do a song, his view as a purchase. his name is included, but it has version 7. We have updated the phone on itunes and its not updated it to ios8 one had success with this?

    Thank you

    Hello evechoccy!

    Thanks for reaching out on the share of the family option does not arise with the iPhone of your son 4.

    The reason for this is the iPhone 4 can only go to iOS 7 and sharing of the family did not become an option until iOS 8 and later versions. You can see the family sharing requirements here: family shares - Apple Support

    Kind regards.

  • Get rid of 'Entertainment' & similar sections in iOS app News

    Is it possible to get rid of swathes?  I have no need of 'Entertainment', but compels me to browse wastewater to the stories of music production that I really care to find.

    Hi there, kelverde!

    Thank you for using communities Support from Apple! After reading your post, I understand that you are looking for ways to customize the news application. I know how convenient it is to have the most important stories for you is easy to reach and would be happy to help you!

    To start, I recommend you to check on the following article.

    Use the news on your iPhone, iPad or iPod touch

    I would say particularly interested in the "Customize For You" section, which allows you to add topics and channels that interest you in a single window. Information and instructions are as follows:

    Customize for you

    Add themes and channels that interest you in the section Explore to your Favorites. This allows new decide what kind of stories you show for you.

    To display the list of channels and topics you follow, tap on Favorites.  If you subscribe to a channel, there is a separate section in the Favorites for your subscriptions. You can also sort the bookmarks by name, visited recently, or most visited. Just tap Favorites at the top of the screen, then choose how you want to sort them.

    You want quick access to headlines? Learn how to Add the new app to your Widgets on your iOS device.

    Add a subject or a channel

    1. Tap Explore the bottom of the screen.
    2. Browse the categories, channels and topics that interest you.
    3. When you find a channel or a topic you want to add, click on .

    Looking for a specific topic or channel? Click the Search tab and enter what you are looking for. You can also add a topic or a channel, you are looking for to your Favorites. Just type in next to the search results.

    Enjoy!

  • How to get rid of the app iOS 10 beta feedback?

    I made the beta of iOS 10, and it came with the app of feedback. I updated my phone to the iOS version final 10, but the feedback app is still on my phone. I tried now button but no little 'x' appears. Can someone please.

    You go to settings > general > profiles. Then, select the Beta iOS 10 profile and delete it. This will remove your device from the 10 future iOS betas and get rid of the app of Feedback.

  • How can I get rid of many ads and coming dating site in my email

    How can too many ads I get rid of this junk

    Even if your profile says you're on 10.8 concepts are the same

    Address postal (Yosemite): reduce the spam in your Inbox

    any with your email in their address book on a public messaging system like yahoo and google, etc. can inadvertently also contribute to your number of spam. If you sign up for sites with your e-mail address or if someone is using your email address then expect entities behind these sites to continually bombard you with junk because it costs them nothing to do, and they can make money by selling your account info.

  • Container plugin for firefox still plays the audio ads. I'm deleting it and he returned without permission. How can I get rid of him?

    I got it removed from the location of the file several times. The only solution I found is to stop the process in the Task Manager, but it of a pain and should be repeated several times within minutes of each other. How safely get rid of this to always unless it somehow being added again. Thank you

    Hello
    You talked about the process of container Plugin, so I assume you really mean ads Flash. In this case, you need at least a few options to choose from:
    (1) you can uninstall the Adobe Flash plugin . This will get rid of the real plugin, the Plugin container 'contains', but it will most likely be unwanted side effects: you will not be able to play some Flash games, or watch Flash video on Web sites that use them (e.g. Facebook).
    (2) you could install an ad blocking extension in Firefox, like AdBlock Plus. These lots of ad, Flash extensions block not only those, but they can not and do not all ads block. If this is the path you choose, just head to the Addon Manager, enter 'Adblock' in the search field and install extensions referring to research. I do not use one of them myself, so I give my opinion on which of them, you need to install.
    (3) my personal way preferred: Set Adobe Flash "Click to play" on Firefox. This will keep the Flash Plugin on your computer, but will allow you to opt-in to each page to see what the plugin is set to display (you can always allow websites that you want to enable Flash automatically, it just will not be the default behavior for more).

  • How can I get rid of "Roll round ads"?

    Today. I am suddenly being plagued by "Roll around ads", how do I get rid of this? Roll autour does not appear in my list of programs, but a file extension does not exist in my file (x 86) programs, please see joint image print screen

    Here's my method to track down and clean up bad Add - ons and other ad injectors. Sorry for the length - it is not as bad as it sounds:

    (1) open the Control Panel, uninstall a program. After the loading of the list, click on the column heading "installed on" to group infections, I mean additions by date. This can help the undisclosed items bundle smoker who snuck out with some software, you have agreed to install. Out as much garbage as possible here.

    (2) open Firefox page modules using either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click on Plugins. Set essential and unrecognized plugins 'never enable '.

    In the left column, click Extensions. Then, in case of doubt, disable (or delete, if possible) not recognized and unwanted extensions.

    Often, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    Any improvement?

    (3) you can search the rest of problems with scanning/cleaning tools listed in our technical support article: Troubleshooting Firefox problems caused by malware. These scanners on request are free and take a long time to run. If they end quickly, especially if they require the payment you have a serious infection. I suggest the specialty forums listed in the article in this case.

    Success?

  • I have a Yahoo Search bar acting as a tab App that I can't get rid of. There is no option to unpin when I right click on it.

    I have a yahoo search bar, which was installed during a download and the installation of a http://gtopala.com/of SIW.exe system information application. This is the freeware version which is add-based software. However I wasn't expecting that the search function would be such a nusance and interfere with the functions of Firefox.
    The search bar behaves as a tab App that I cannot move or get rid of. There no option to pin the object when I right click on the bar or to modify it in any way using the function 'group your tab' to the right of the tab toolbar.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • On the App Store app apps watch 17 update, but all are, how do I get rid of the number

    a mini iPad with iOS 9.2, showing the number 17 in App Store app need to be updated, but all are. How can I get rid of the Red number. A cut but did nothing.

    If you do not want the Red number appears next to the app store, you must disable its insignia in notifications settings.

    To do this, go to settings > notifications > AppStore > and disable the badge icon

    Although this does not prevent the updates to appear once your in the app store, it's the next best thing by you annoying is not with the small number of red while you are on your home screen.

    Hope this fixes your problem,

    gdamato17

  • How to make the darker text and how to get rid of the ads on my toolbar

    original title: GI 82 and my text is too light, how to make it darker also how can I get rid of the ads on my toolbar

    Just do my text coming or in your darkest records

    Hello

    1 are you referring to the ads in the Internet Explorer toolbar?

    2. are you referring to the policies of the Internet Explorer icons?

    Method 1: You can change the theme of the operating system Windows 7 high contrast themes that will make the text and the darkest record.

    Follow the steps below to change the high contrast theme.

    1. open Personalization by clicking the Start button, then Control Panel. In the search box, type personalization, and then click customization.

    2. under Basic and high contrast themes, click Windows 7 Basic or one of the high contrast themes.

    Method 2: In order to disable ads in Internet Explorer disable all modules and check if this is useful.

    No add-on, run Internet Explorer mode.

    a. Click Start, point to programs, point to Accessories and system tools

    b. click Internet Explorer (No Add-ons).

    If this resolves the problem, follow these steps to isolate the browser add-on that is causing the problem:

    a. click Tools and then click Internet Options.

    b. click on the tab programs, then click on Manage Add-ons.

    c. click an add-on in the name list and then click on disable.

    d. Repeat step c until you identify the add-on that is causing the problem.

    If this solves the problem, this could be caused by an adware installed as add-on. See the link below for more information.

    http://Windows.Microsoft.com/en-us/Windows/help/Internet-Explorer/slow-five-tips-to-boost-performance

  • After downloading an application I see is no longer the splash screen, how can I get rid of the app and restore my pc when I do not see the screen

    After downloading an application I see is no longer the splash screen, how can I get rid of the app and restore my pc when I don't see the screen, please help

    Hello

    Do a system restore to a date before you had this problem:

    "How to make a restore of the system in Windows 8 and 8.1" . "

    http://www.eightforums.com/tutorials/4692-System-Restore-how-do-Windows-8-a.html

    Follow this path to a Safe Mode system restore:

    "5 ways to boot mode safe Windows 8 & Windows 8.1"

    http://www.7tutorials.com/5-ways-boot-safe-mode-Windows-8-Windows-81

    See you soon.

  • Is it possible to get rid of the splash screen, the screen of the app and go straight to the desktop?

    Original title: I h8 windows 8.

    I don't like having to go through two screens to start my computer and two screens to close.  Add the startup of the screen and the screen of the application tiles does improve performance, they interfere. I don't see what's the difference between have icons on my page tiles and the application windows on my screen, except that the former is more efficient.

    Is it possible to get rid of the splash screen, the screen of the app and go straight to the desktop?

    Easy solution for this. You can download the Start button after the installation your computer will work like all the other previous windows and ordinarysoft.com. You will have all the programs with your button/start menu 'start '. The installation start opt to escape metro and you never see it again. Tell me if you have any problem to find the button start or downloading from the link I told you. Its free of cost.

Maybe you are looking for

  • Sort by name in Mail went (new)

    An old bug in Mail is back with Sierra: Yosemite has no sorting by name in Mail "most people see mail sorted by date, as I was.  But sometimes I want to see all messages from a particular sender.  All previous versions of mail allowed you simply clic

  • write table 2D data in the file but the file is empty

    Hello I tried to write all reading of powermeter data to a file in two ways, I can see the output in the Arrais indicator data but when I write to "File.vi of the worksheet" or write to 'text file', the files are empty. Please help me.

  • Clipboard in Windows 8?

    I started with 'Basic' in the 1980s, graduated for DOS, windows 3, then 95, 98, ME. I use xp, sp3 now because I think that more than a decade, I've never had problems with xp, that cannot be easily solved. My father had a computer dell laptop with xp

  • printer has no illumination and cannot print manually - HP Officejet 6700 Premium

    I have a HP Officejet 6700 Premium - I can print from my computer, but can't print manually.  The button does not illuminate.  I can't scan, print manually.  Suggestions how to operate manually the this printer?

  • OfficeJet Pro 6835: Printer reset the date and time and other actions not initiated

    My printer (Officejet Pro 6835) turns on randomly and want to reset/confirm the date and time settings.  Sometimes even lights up and wants to resume a scan or fax that was never launched.  I want to stop this behavior.