Not receive payments when my application is downloaded

Hi all

I know that my application has been downloaded by at least 2 people however, my paypal account has not been credited. I made sure that my paypal account has been linked through the portal provider (details to manage an account-> payment information tab). However, I have not downloaded a tax document because I did not as I am a student. This would have something to do with why I don't receive payments? If this isn't the case, while it might be?

Any suggestion would be great...

I believe that this is the case. Sales made up toward the end of August should appear in a payment that will be held around September 25, assuming that they invoke the minimum threshold which, as I have noted, is recorded even if they have not applied it lately.

Tags: BlackBerry Developers

Similar Questions

  • BlackBerry app Push Notifications using PushWoosh does not receive notifications when closed and in the background

    I'm developing an application of crossed with phonegap and Jquery mobile platform. I'm trying to implement push notifications for the blackberry application using PushWoosh.

    I noticed that I'm not able to receive notifications when the application is in the background, or when it is closed. I get notifications only when the application is in the foreground.

    Any suggestions on this problem?

    I can use all the help.

    The app is a phonegap application Webworks.

    Thank you.

    Info:

    PhoneGap 2.8.0

    jQuery 1.9.1

    jQuery 1.3.1 Mobile

    SDK WebWorks

    PushWoosh

    Hello

    We just push our BB HTML5 / Webworks sample to our github repo:

    https://github.com/shaders/push-notifications-SDK/tree/master/SDK%20Sample%20Projects/BlackBerry-htm...

    Team Pushwoosh

    www.pushwoosh.com

  • account debited, app has not received payment

    Hello and thank you for your time,

    Have you never heard of the school of dragons app? Its a fun game (even so childish). I was a member for three months, after three months, that my subscription has expired. I tried to buy another three month subscription, this is where the problem happened. My bank account was charged, but she "could not sync with breaks ' stupidly, (after experiencing several problems) I uninstalled and then reinstalled the app thinking that might fix things. He did not. I contacted the support of app team, only to have them tell me (on my problem of membership) contact the store of windows (microsoft) application because they have not received the payment. I tried to contact microsoft - the cat to help seems to be stuck on a 1 minute wait, which was no help, and I found no other way to contact microsoft to resolve my problem. Is there a way to fix this? either my money back or have the payment to cross into the app? Or maybe another way to contact Microsoft? Thank you in advance, I appreciate your time.

    You will need to keep trying the procedure you gave.

  • Someone at - he managed to get the "page not available" message when you try to download apps?

    I recently joined the Adobe Creative cloud, but when I try to download one of the applications I get a blank page with the message "page not available", I tried both THE 11 and 14 of Chrome, both with the same results. I've also temporarily disabled firewall/scanner virus and anti spam, but without result. I use the optimized UK Server?

    I think it's due to the interruption of the Adobe server / comms reset

    Any ideas?

    David UK

    I have not seen other reports of this problem.

    I suspect that you have a local network problem.

  • BlackBerry smartphone App world works, but when the applications are downloaded they do not work... Help!

    Hi I have a blackberry curve.

    My balckberry app world works perfectly find allows me to download anything works very well. But BBM and facebook apps don't work or any other app that I download does not work. Please help me I need my bbm for businesses and personal uses. Thank you

    Hi and welcome to the Forums!

    I suggest the following, in order, even if they seem redundant to what you have already tried (steps 1 and 2, each should result in a message to your BB to come...) Please wait for this before moving on to the next step):

    (1) registry HRT

    • KB00510 How to register a BlackBerry smartphone with wireless network

    (2) remove and return Service directories

    • KB05000 Remove the maintenance book for the BlackBerry Internet Service email account in the BlackBerry smartphone
    • KB02830 Send the directories for the BlackBerry Internet Service

    (3) restart to take batt

    • Each time a random strange behavior or slow creeps, the first thing to do is a battery pop reboot. With power ON, remove the hood back and remove the battery. Wait a minute, then replace the battery and cover. Power on and wait patiently through the long reboot - about 5 minutes. See if things return to functioning. Like all computing devices, BB suffers from memory leaks and others... with a hard reboot is the best remedy.

    I hope that will move things again for you! If this isn't the case, then you should talk to your provider of official support and to ensure that you are subscribed to a data plan which is sufficient to enable the services you want:

    Good luck!

  • LocationListener does not receive updates when BrowserField 2 renders in 6.0

    I have an application that calls a mobile web site using BrowserField 2.  The application needs make the current GPS position to the mobile website with each request to the site.

    I used code MultipleFixDemo to get a LocationListener job.  Everything worked very well in the Simulator and all manual updates of location were received by the LocationListener in the application.

    I changed the display to include a component BrowserField 2 and the LocationListener does not update the location of the Simulator.

    Y at - it something I need to do something different when the user interface includes the BrowserField.  Can I have some kind of thread problem?  I only tested on OS 6.0 in the Simulator.  I don't have access to a real device.

    In the code below, I have two defined screens.

    If the pushScreen (new MultipleFixScreen() is uncommented and the pushScreen (new BrowserFieldScreen() is commented out, the LocationListener receives updates.)

    If the pushScreen (newMultpleFixScreen () is commented out and the pushScreen (new BrowserFieldScreen() is uncommented, the LocationListener gets no updates.)

    Here is my code:

    public class MultipleFixDemo extends UiApplication
    {
        private double longitude;
        private double latitude;
        BlackBerryLocationProvider myProvider;
    
        public static void main(String[] args)
        {
            new MultipleFixDemo().enterEventDispatcher();
        }
    
        public MultipleFixDemo()
        {
            startLocationUpdate();
    
            pushScreen(new BrowserFieldScreen());
            //pushScreen(new MultipleFixScreen());
        }
    
       private void startLocationUpdate()
        {
            try
            {
                BlackBerryCriteria myCriteria = new BlackBerryCriteria();
                myCriteria.enableGeolocationWithGPS(BlackBerryCriteria.FASTEST_FIX_PREFERRED);
                try
                {
                    myProvider = (BlackBerryLocationProvider)LocationProvider.getInstance(myCriteria);
    
                    if ( myProvider == null )
                    {
                        Runnable showUnsupportedDialog = new Runnable()
                        {
                            public void run() {
                                Dialog.alert("Location service unsupported, exiting...");
                                System.exit( 1 );
                            }
                        };
                        invokeLater( showUnsupportedDialog );
                    }
                    else
                    {
                        myProvider.setLocationListener(new LocationListenerImpl(), 2, -1, -1);
    
                    }
                }
                catch (LocationException le)
                {
                    System.err.println("Failed to retrieve a location provider");
                    System.err.println(le);
                    System.exit(0);
                }
            }
            catch (UnsupportedOperationException ue)
            {
                System.err.println("Require mode is unavailable");
                System.err.println(ue);
                System.exit(0);
            }
            return;
        }
    
        private class LocationListenerImpl implements LocationListener
        {
            public void locationUpdated(LocationProvider provider, Location location)
            {
                System.out.println("update location called");
                if(location.isValid())
                {
                    longitude = location.getQualifiedCoordinates().getLongitude();
                    latitude = location.getQualifiedCoordinates().getLatitude();
                    float altitude = location.getQualifiedCoordinates().getAltitude();
    
                    StringBuffer sb = new StringBuffer();
                    sb.append("Longitude: ");
                    sb.append(longitude);
                    sb.append("\n");
                    sb.append("Latitude: ");
                    sb.append(latitude);
                    sb.append("\n");
                    sb.append("Altitude: ");
                    sb.append(altitude);
                    sb.append(" m");
                    System.out.println("!!!!!!!Location update: " + sb.toString());
                    //MultipleFixDemo.this.updateLocationScreen(sb.toString());
                }
            }
    
            public void providerStateChanged(LocationProvider provider, int newState)
            {
                System.out.println("providerStateChanged called");
                // Not implemented
            }
        }
    
        class BrowserFieldScreen extends MainScreen
        {
            private BrowserField _browserField;
            private boolean _documentLoaded = false;
            private BrowserFieldRequest _request;
    
            /**
             * Creates a new BrowserFieldScreen object
             * @param request The URI of the content to display in this BrowserFieldScreen
             * @param enableScriptMenu True if a context menu is to be created for this BrowserFieldScreen instance, false otherwise
             */
            public BrowserFieldScreen()
            {
                super(Screen.HORIZONTAL_SCROLL | DEFAULT_CLOSE | DEFAULT_MENU);
                BrowserFieldRequest request = new BrowserFieldRequest("http://www.google.com");
    
                BrowserFieldConfig config = new BrowserFieldConfig();
                _browserField = new BrowserField(config);
                _browserField.addListener(new DemoBrowserListener());
                add(_browserField);
                _request = request;
            }    
    
            /**
             * @see Screen#onUiEngineAttached(boolean)
             */
            protected void onUiEngineAttached(boolean attached)
            {
                if(attached)
                {
                    try
                    {
                        _browserField.requestContent(_request);
                    }
                    catch(Exception e)
                    {
                        deleteAll();
                        add(new LabelField("ERROR:\n\n"));
                        add(new LabelField(e.getMessage()));
                    }
                }
            }
    
            /**
             * Returns this screen's BrowserField object
             * @return This screen's BrowserField object
             */
            public BrowserField getBrowserField()
            {
                return _browserField;
            }
    
            /**
             * A class to listen for BrowserField events
             */
            private class DemoBrowserListener extends BrowserFieldListener
            {
                /**
                 * @see BrowserFieldListener#documentCreated(BrowserField, ScriptEngine, Document)
                 */
                public void documentLoaded(BrowserField browserField, Document document)
                {
                    _documentLoaded = true;
                }
            }
        }
        private final static class MultipleFixScreen extends MainScreen
        {
            MultipleFixScreen()
            {
                super(DEFAULT_CLOSE | DEFAULT_MENU);
    
                RichTextField instructions = new RichTextField("Waiting for location update...",Field.NON_FOCUSABLE);
                this.add(instructions);
            }
        }
    }
    

    Any suggestions would be greatly appreciated.

    Thank you

    Jackie

    This is a limitation of the BrowserField.  The BrowserField also recorded a LocationListener that is use to power the GPS updates via JavaScript to pages it restores.  This LocationListener / that your application has already registered (given that the application can only record 1).

    There are two ways you can work around this problem.  You can save your LocationListener again after posting the BrowserField.  Note that if you take this approach methods JavaScript GPS won't within your BrowserField.

    The second approach is to poll for updates location, instead of using a LocationListener.  It should continue to work after posting a BrowserField.

  • I bought the CC of photographers and have not received any notification on how to download?

    I bought the student photographers CC version and have not been notified on how to download, do I need to check you as I am a student, if so, how long does take?

    Download and install the application of cc desktop after signing with the same identifier adobe used when you subscribed, https://creative.adobe.com/products/creative-cloud

    Use the desktop application to install your ps and lr.

  • Tried to download the last update, no compatible system, now browser does not work even when I tried to download it again. I have bookmarks, I want to come back.

    Currently, I have a Mac, version 10.5.8. My Firefox was slow so I tried to download the latest version. When it was downloaded, a message pops up saying that this version of Firefox is not compatible with my system. Well, ' don't quite no fault "I thought and I tired to go back to my previous browser.
    But when I went to click on it, there was a large circle with a line through it. I couldn't open anything. Firefox has actually been removed from my computer.
    Now it's ok if I can't start Firefox more but I got thousands of bookmarks, compiled over the years that I really want to go back. And I have no idea how to do that.
    Any help would be greatly appreciated.

    Hello world.
    I have downloaded the old version of firefox, replaced the new with the old and boom! They were there!

    Sorry for the runaround. Just goes to show that you should always have backups for things.

    Thanks anyway.

  • Cannot connect to windows live messenger, error is could not close program when you try to download the new version of windows live messenger

    When you try to connect to windows live messenger, I have error message a new version of messenger is available for download. When I select Yes, wat happens in it will not download new version of windows live messenger but it says could not close the programs. Please help me again

    Hello

    Method 1.
    Here's how you can solve this problem:

    a. download the latest version of Windows Live Messenger available onhttp://explore.live.com/windows-live-Messenger-XP

    b. update of Windows XP through Windows Update.

    c. go to "C:\Program Files\Windows Live" and remove the 'Messenger' folder (Note: replace 'C' with your root drive letter)

    d. go to "C:\programdata" (Note: replace 'C' with your root drive letter) and remove Windows Live install and WLInstaller, if you have a

    e. restart the PC.

    f. run the installation program that you downloaded.

    Method 2.
    If the problem persists I recommend you ask your question on the dedicated Windows Live forums.

    Here is the link to the Windows Live Messenger category.
    http://windowslivehelp.com/forums.aspx?ProductID=2

    I hope this helps.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • HP envy 5532: message key not valid error when you try to download the software

    I can't download my desire 5532 keep getting error message (key not valid for use in specified state).

    This problem is related to Microsoft Update KB2918614

    The solution is to remove this update.

    How to remove an update for Windows Vista

    If the fix works, I recommend that you 'hide' it so that it not be reinstalled automatically.

    Instructions below:

    If you don't want Windows to install an update, you need to hide.

    1. Open Windows Update by clicking on the button start . In the search box, type Update, and then in the list of results, click Windows Update.

    2. In the left pane, click Find updates.

    3. When Windows finds updates for your computer, do one of the following:

      • Click the link that tells you important updates are available if you have some updates to hide.

      • Click the link that tells you optional updates are available if you have optional updates to hide.

    4. Do right click the update you want to install, and then click Hide update. The next time you check the updates, the update will not be automatically selected or installed. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

  • OUTLOOK 2013 WILL NOT RECEIVE MAIL WHEN OPEN

    I'm under WIN8.1, IE11 and OUTLOOK 2013. Outlook began to behave strangely. It will only receive when it is opened no new messages. Suggestions? No problem with the mail server because it sends to my tablet as it should. Microsoft support is disappointing. It me sent to third-party programs which may fix it.

    What type of e-mail (Exchange, POP3, IMAP) Server? If the Exchange, in what year (2007, 2010, 2013)? If Exchange, your local or remote on the server? Is your statement saying Outlook retrieves only by e-mail at startup but not later (POP3/IMAP via Exchange via synchronization of the PRC, send/receive)? This will help identify your problem. Is your Outlook completely up-to-date (SP1, all window updates)?

  • My serial number will not be accepted when I try to download first elements 13?

    I have a MacBook Pro laptop computer and I recently bought first elements 13 because I need for school and work however when I get to the last phase of download, my serial number is not being accepted and I tried many methods of download! IF anyone has had the same or similar issues please let me know! I paid a lot for this and I really need the program.

    travisw

    Thanks for the update. I'm glad you have Adobe Chat comments on this issue of incorrect Mac serial number.

    A cat tried to create a new user account with administrator privileges, installation and you try to run the first Elements of her?

    I hope that Adobe Chat solves this with a new serial number that will work for you.

    Please update us on your progress as your schedule allows.

    Thank you.

    RTA

  • 20.0.1: file == > new window & private in new window only will not open then Firefox will not stop running when the application is closed

    Although nothing seems to happen when clicking new window or new private window, there seems to be some process started because when I try to close Firefox and reopen it, I get an error message saying that Firefox is already running. My only option then is to stop the process through the Task Manager. I tried (many times) to uninstall and reinstall.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the startup window Mode safe or make changes.

    Create a new profile as a test to see if your profile is the source of the problems.

    See "create a profile":

    If the new profile works then you can transfer files from a profile in the new profile, but make sure not to copy corrupted files.

  • I have not received payment of trade BlackBerry in December


    I received the payment and all is well

  • I'm not receiving calls when internet we


    Calls go to voicemail? There is an option under dual SIM settings > behavior Data > connection priority, which determines what happens for voice calls when data are on.

    It may also depend on what SIM card you are using for data / what SIM calls come to. He'll be right a SIM card, or both?

Maybe you are looking for