Your application BlackBerry PlayBook is BlackBerry 10 ready!

Hey guys,.

I just got an e-mail from you "your BlackBerry PlayBook 10 BlackBerry app ready!"

I was so happy to hear that my PlayBook apps are ready BB10. I already posted almost 20 apps for BB10!

The post includes a code to ask me my reward points. But the link is broken.

The link in my mail starts like this:

http://lyrislist/t/ and then some numbers. So I guess that there is a missing domain or something?

Please let me know

Best regards

Hello

Apologies for this.  We send an email to update with corrected quickly links.

In the meantime, here's the link:

https://developer.BlackBerry.com/jam/rewards/

Tags: BlackBerry Developers

Similar Questions

  • Errors of blackBerry Smartphones My World ' year error occurred while updating your application list.

    Whenever I select my world of the web page, I'm prompted for my blackberry id username and password, if I get the right user name and the password that it continues to ask me for my credentials, everywhere else looks that I am enrolled in fine with my code. On my Blackberry, I get the error "year error occurred while updating your application list" when I opened my world. I contacted Rogers for support and they told me that I have to contact Blackberry

    Edit: I already tried ALT RST. And I tried different phones as well. Using a different ID for Blackberry works fine.

    Rogers took a week to move to the Blackberry on that. It was a bug in version 3 of App world that they felt was set at 4, I am now the 2nd person to report in the last two weeks.

    Basically, I've had too many blackberries and too many applications in my App World and the list is time when pulled.

    So his way for BB to developers to get fixed.

  • Please help me port an android application BlackBerry App. How to wear an android app to a BB app

    Please help me port an android application BlackBerry App.  How to wear an android app to a BB app

    The best way is to follow this start: https://developer.blackberry.com/android/documentation/gettingstarted.html

    Using Eclipse to develop the Android app?
    -> Then follow this guide: https://developer.blackberry.com/android/documentation/install_plugin_prerequisites_1895476_11.html

    It's a time to port (you do not plan on the continuation of your request later)?
    -> Then you can use the online tool to make your application: https://bdsc.webapps.blackberry.com/android/bpaa/

    Otherwise, you can use the command line tool (https://developer.blackberry.com/android/documentation/preparing_android_apps_for_bbtos_1729415_11.h... or the graphical help of BlackBerry)

    If you encounter problems, poster and we'll try to help as much as possible you

  • How to debug the java application BlackBerry on Eclipse with a BlackBerry Smartphone?

    Problem:

    How to debug the java application BlackBerry on Eclipse with a BlackBerry Smartphone?

    The following procedure:

    http://docs.BlackBerry.com/en/developers/deliverables/12002/Debug_an_app_on_BB_device_656366_11.jsp

    Error:

    An internal error occurred during: "launch WMMS_ACC_video_test0".
    java.lang.NullPointerException

    I found that other methods of debugging.

    If anyone knows how to do it please tell me.

    Thank you for your attention.

    http://www.BlackBerryForums.com/developer-forum/107455-debugging-live-device.html

    Solution:

    Start the IDE
    Connect your device to the PC via USB
    compile your application and load on the device
    in JDE - Debug - attach to-Pocket
    ignore all dialog boxes
    do the breakpoint
    Start your application on the device

  • Displaying the icon on Applications BlackBerry csreen

    Hello

    I developed an application, I m on a blackberry Simulator tests,

    It is the display with the default icon...

    Please let me know, how I can cnahge my application icon into the Applications Blackberry screen...?

    Thanks in advance

    Take a look at this article and follow the three simple steps the end of it:

    Create an icon for an application

    Kind regards

    yosoh

  • Modifing XML file supplied with my application on PlayBook

    Hi all

    I have an app for Blackberry PlayBook WebWorks.

    It has a flash file that after reloading, reads an XML file which is of course included in the deployment of my product.

    My product has to change the XML file after a picture taken using the camera.

    The XML file essentially contains the path to the image that needs to be changed.

    Get the path to the image is fine, but it seems to me impossible to locate the XML file that I have 'ship' with the product.

    I can't find the flash applet or an other images used in the program.

    What is a security thing? I was just expecting to be able to find the path of the XML file and record a new on it with the new path to the image.

    dirs.app.storage.path
    

    Hello

    You should be able to reference the resources packaged in your BAR file using the local: / / / Protocol.  If you have a file settings.xml file in root of your application, so it should be local:///settings.xml.

    Note: You can not change this file after it was packed. At this point, it is read-only.  If you want to update these data after the fact, I suggest to load this information into localStorage (API HTML5) at the start of the first time and changing the numbers in there.  localStorage is a persistent store where you can save the values between the application restarts.

  • Use the image in your application

    Hello

    I am building a blackberry application that can connect to the camera. How to save a captured image and use it in your application? For example, in blackberry messenger, you can capture images and set it as your display picture. I plan to do the kind of the same thing like that.

    Thanks a bunch before!

    dsutandi

    This is the code to call the camera and save the captured image

    private void takePhoto()
        {
            final FileSystemJournalListener listener = new FileSystemJournalListener()
            {
                long lastUSN;
                boolean hasAppPermission;
                public void fileJournalChanged()
                {
                    long USN = FileSystemJournal.getNextUSN();
                    outer: for (long i = USN - 1; i >= lastUSN; --i)
                    {
                        FileSystemJournalEntry entry = FileSystemJournal.getEntry(i);
                        if (entry != null)
                        {
                            if (entry.getEvent() == FileSystemJournalEntry.FILE_ADDED)
                            {
                                if (entry.getPath().indexOf(".jpg") != -1)
                                {
                                    lastUSN = USN;
                                    photoPath = entry.getPath();
                                    try
                                    {
                                        ApplicationPermissionsManager apm = ApplicationPermissionsManager.getInstance();
                                        ApplicationPermissions original = apm.getApplicationPermissions();
    
                                        ApplicationPermissions permRequest = new ApplicationPermissions();
                                        if(original.getPermission(ApplicationPermissions.PERMISSION_INPUT_SIMULATION) != ApplicationPermissions.VALUE_ALLOW)
                                        {
                                            permRequest.addPermission(ApplicationPermissions.PERMISSION_INPUT_SIMULATION);
                                            permRequest.addPermission(ApplicationPermissions.PERMISSION_DEVICE_SETTINGS);
                                            permRequest.addPermission(ApplicationPermissions.PERMISSION_EVENT_INJECTOR);
                                            boolean acceptance = ApplicationPermissionsManager.getInstance().invokePermissionsRequest(permRequest);
                                        }
    
                                            EventInjector.KeyEvent inject = new EventInjector.KeyEvent(EventInjector.KeyEvent.KEY_DOWN,Characters.ESCAPE,  50);
                                            EventInjector.invokeEvent(inject);
                                            EventInjector.invokeEvent(inject);
                                            EventInjector.invokeEvent(inject);
    
                                            if(photoPath != null)
                                                photoPath = "file://"+photoPath;
    
                                            if(photoPath != null && !photoPath.equals("file://"))
                                            {
                                                 UiApplication.getUiApplication().removeFileSystemJournalListener(this);
                                                Bitmap bmp  = ResizeImage.getBitmapImageFromFilePath(photoPath);
                                                /**
                                                                       here you will get the image path what you captured. By using this path you can get the image
                                                                       */
    
                                            }
    
                                     }catch (Exception e){
                                            System.out.println("Exception caught :" + e);
                                     }
    
                                    break outer;
                                }
                            }
                        }
                    }
                    lastUSN = USN;
                }
            };
            UiApplication.getUiApplication().addFileSystemJournalListener(listener);
            Invoke.invokeApplication(Invoke.APP_TYPE_CAMERA, new CameraArguments());
        }
    
  • Register your application as a search provider webworks

    Hello

    My webworks app is used enterprise search & discover tap application into LDAP. The app is built almost 100%. I would like to use the amazing kind and go BlackBerry 10 features, especially those who use a device of Q10. For this I tried to register my app as a search engine so that all the user has to do is to just start typing the name of the person and my application should appear as one of the applications in the area of research extend to the user can click on my icon of the application there and provide an entry in my application for the continuation of research outside the traditional way to launch the application and then do a search.

    I have read the material and that you have followed the steps to do this. The naked body parts of my application so as to focus on the problem are the following:

    changes to the config.xml file:

    Add the following code to register my app as a research target

    APPLICATION

    bb.action.SEARCH.EXTENDED

    application/vnd.bb.Search.Criteria

    Add the following function id

    In the file index.html (starting point for my app) add the following code in the webworksready event

    document.addEventListener ('webworksready', Function {}

    If {(webworksreadyFired)

    return;

    } else {}

    webworksreadyFired = true;

    }

    blackberry.event.addEventListener ("called", function (invocationInfo) {}

    If {(invocationInfo.target)

    currently put in comment

    }

    If {(invocationInfo.type)

    currently put in comment

    }

    If {(invocationInfo.action)

    currently put in comment

    }

    If {(invocationInfo.data)

    currently put in comment

    }

    });

    (}, false);

    Now when I try this after signing my application and deployment on the Q10, I tried searching "Bob," for example, and my application does not appear in the search, expand, according to the documentation.

    Is there something that I am missing here. Can someone please advise. I would treat it as the most important characteristics, showing the power of 10 of BlackBerry that would be a distinguisher and distinguish it from other platforms, and I'd love to integrate this into my business application.

    Thank you best regards &.

    Hello

    Tim Windsor published an example that shows how to integrate your application with Extended Search:

    https://github.com/BlackBerry/BB10-WebWorks-community-samples/tree/master/extended%20Search

    This is the documentation calls you?  It works as expected on your Q10?

    See you soon,.

    Adam

  • people getting an e-mail address/blackberryid during the installation of your application.

    Hello

    I have a question, I installed the app BeWeather Pro today, during the installation, the only permission that I have authorized has been 'place '.  A lot of my surprise moments later I received an email from welcome with a registration code to my email/blackberryID account...  How the app got my blackberry ID to email me?, I guess it is in payment services that I had to log in using my ID / password before installing the app?  If so I can't seem to find any property of blackberryID in the payment api services in order to extract this info...

    Thanks in advance.

    It's likely auto.  In payment services (addons or ordinary) If you set your application to use a product key, you will need to provide the BB with the keys (to a point), and they send out them, as I have noticed with other applications that require keys as well.

  • Invalid launch image - your application contains a launch image with a size modifier which is only supported

    I use the latest Adobe AIR and SDK, 3.5. The app works on my iPhone 5 and displays the loading screen, but by doing an app store version and upload I get this:

    Dear developer,

    We found one or more problems with the delivery of your recent for "eat sleep skateboarding". To process your order, the following questions must be addressed:

    Invalid launch image - your application contains a launch image with a size modifier which is only supported for applications built with the iOS SDK 6.0 or later version.

    Once these issues have been fixed, go on the release Details page, then click on "Ready to Upload binary." Continue through the submission process until the status of the app is "Waiting for Upload. You can then deliver the binary has been fixed.

    So he complains on my [email protected] I think. If I delete it, he could accept the file, but I really want to a loading screen. So, how can I fix? I only find solutions for xcode developers

    You are probably not using the last available AIR SDK. Labs releases contained a bug leading to this issue.

    So, update your AIR SDK from http://www.adobe.com/devnet/air/air-sdk-download.html should solve the problem.

  • "Please update your application.

    Hello.

    I got this massage, om my ipad in the Adobe viewer - after update the software from the DPS homepage.

    "Please update your application.

    This problem is available for download, but requires a newer version of the application. Please update your app on the App store.

    This Adobe viewer is not ready now to itunes. If I install version 1.7 of the 15/11/2011 on the Adobe download site.

    Now, the manufacturer of madness say "an update is required to use Folio Builder.  Please click here to download the producer Folio tools. »

    So my question is: how will I receive around "an update is necessary" and that it will be possible to create Follies that work?


    Tonny

    Hi Mark

    It seems so easy, but it won't work!

    I uninstall, emty trash, restart and install producer of madness, then the Panel:

    But what is start indesign, it says "you have not a plug-in compatible digital publication.  Click here to download the producer Folio tools. »

  • Your application is temporarily unable to process. ?

    He managed to get a very strange problem when I try to upgrade my Paypal account in iTunes, I get this message. ((Your application is temporarily unable to process)) that this may be due. because according to me, it seems strange, since never before errors in when you have to pay? and the strange thing is that I started to be brought to PayPal and back to iTunes but after some times try as I become completely failed to submit the article and just gets received by the message, try again later?

    What also concerns my iCloud account because I was downgraded to 5 GB, I can't go until I did my exceptional with iTunes, so hope for a solution. help me with this problem?

    Thank you in advance for the answers

    friiso

    You can contact iTunes Support cat - they may be able to solve the problem!

    https://www.Apple.com/support/iTunes/

  • NET of Microsoft. Framework error - Unhandled Exception has occurred in your Application

    Microsoft.Net Framework error message: Unhandled Exception has occurred in your application I receive this title of Microsoft.NET Framework error message: unhandled exception has occurred in your application.  If you click on continue, the application will ignore this error and attempt to continue.  If you click on leave. the application closes immediately.

    Help, please! I was told by some tech online that my registry keys have been corrupted or something! I don't know what to do, and I hope that this will not affect my computer like a virus or something. I tried to "repair" of microsoft .NET framework in my programs and features, but it did not work. What I'm doing!

    Microsoft.Net Framework error message: Unhandled Exception has occurred in your application I receive this title of Microsoft.NET Framework error message: unhandled exception has occurred in your application.  If you click on continue, the application will ignore this error and attempt to continue.  If you click on leave. the application closes immediately.

    Help, please! I was told by some tech online that my registry keys have been corrupted or something! I don't know what to do, and I hope that this will not affect my computer like a virus or something. I tried to "repair" of microsoft .NET framework in my programs and features, but it did not work. What I'm doing!

    Clean your existing .net versions using .net Framework clean utility (if applicable)

    http://blogs.msdn.com/b/astebner/archive/2008/08/28/8904493.aspx

    Download and install the stand-alone Installer.... NET framework 4 and install it

    http://www.Microsoft.com/en-US/Download/details.aspx?ID=17718

  • Unhandled exception has occurred in your application.

    I am trying to install SQL server 2008 R2 to Windows Server 2008 R2 Enterprise, and I get the error message "unhandled exception has occurred in your application if you click on continue, the application will be Blons this error and attempt to continue."  If you click on quit, the application will close immediately. »

    «An error occurred creates the configuration section for userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings Manager: could not load file or assembly ' System, Version = 4.0.0.0.» Culture = neutural, PublicKey Token = b77a5c561934e089' or one of its dependencies.  The system cannot find the specified file. »

    Can you help me please?

    I am trying to install SQL server 2008 R2 to Windows Server 2008 R2 Enterprise, and I get the error message "unhandled exception has occurred in your application if you click on continue, the application will be Blons this error and attempt to continue."  If you click on quit, the application will close immediately. »

    «An error occurred creates the configuration section for userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings Manager: could not load file or assembly ' System, Version = 4.0.0.0.» Culture = neutural, PublicKey Token = b77a5c561934e089' or one of its dependencies.  The system cannot find the specified file. »

    Can you help me please?

    Repost this under http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?category=windowsserver

    and good exposure for your problem

  • Error unhandled exception has occurred in a component in your application. There is an error in XML document (0 0).

    Original title: Microsoft.NET Framework

    I got a message saying that the unhandled exception has occurred in a component in your application. There is an error in XML document (0 0). What should I do?

    Hello

    1. which version of the Windows operating system is installed on the computer?

    2. Once you get the error message?

    3. What is the exact error message you get?

    4 did you last modified the software on the computer?

    I suggest you go through the steps mentioned in the link. What version of the operating system Windows am I running?

    http://Windows.Microsoft.com/en-us/Windows7/help/which-version-of-the-Windows-operating-system-am-i-running

    Step 1:

    I suggest to start your computer in safe mode and check if the problem persists.

    Start your computer in safe mode

    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    Step 2:

    I also suggest you to perform a clean boot to safe mode and check.

    Clean boot:

    This could happen if one of the substantive programmes is in conflict with the proper functioning of your computer. To help resolve the error and other messages, you can start Windows 7 by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or Windows 7 http://support.microsoft.com/kb/929135

    Note: when you are finished troubleshooting, follow step 7 article to start the computer to a normal startup.

Maybe you are looking for