Collector Push for BB Z10

Hi friends,

IAM developing a notification of transmission of conataining app. I saw tha sample app "collector push."

My problem is:

(in what the two sample files are provided 1) 10.1 and less than 2) for 10.2 and more

My Question is:

If Iam using the folder for the 10.1 and lower grades and my App is currently in version 10.1. If the user is updating their device at 10.2 will be the works of push. How can I make my push notification App works for all versions.

Please please help me

In my view, that the folder with "10.2" contains just the new "headless" form of the application, which is OPTIONAL.

It is quite possible to continue to use the approach 10.1 without any component even headless to 10.2. If you want to target the two versions of the OS for now with a single application, simply use the approach 10.1 and everything "should" work fine on 10.2.

Tags: BlackBerry Developers

Similar Questions

  • Server Push for Blackberry in c#

    Hello

    I am creating the push server for sending notifications of type push on the BlackBerry with BIS in c#. I registered for eval and received an email with all the related information.

    Also, I got a few samples for the PAP xml generated for sending notification to the device.

    But when I send this request, I have "unauthorized" in response.

    The request looks like:

    -PMasdfglkjhqwert123 Content-Type: application/xml; UTF-8
    http://www.openmobilealliance.org/tech/DTD/pap_2.1.DTD">

    deliver-before-timestamp = "" 2013-01 - 14 T 17: 27:56Z ">"





    -PMasdfglkjhqwert123
    Content-Encoding: UTF - 8
    Content-Type: text/plain
    Push-Message - ID:1358164672884

    Hello, KK...
    -PMasdfglkjhqwert123-

    Is the url that I send you this application is correct? The url is: https://cpxxxx.pushapi.eval.blackberry.com/mss/PD_pushRequest (xxxx here: content provider ID)

    Also, please tell me the steps to Push for BB server application.

    Tomcat is necessary in the case of c# (.NET)?

    I know, it is first the camera records the hoop. (we are able to register)

    Then, details are passed to push the content provider registration server.  (How?)

    Then the request is made to send a notification on the device (if necessary). (had the format of the query, but don't understant why am I getting "unauthorized").

    Please answer.

    Its urgency and I do not get examples or links.

    Thanks in advance.

    Hello

    You need to perform basic authentication. http://en.Wikipedia.org/wiki/Basic_access_authentication

    You provide the Authorization header with your App ID and password under your HTTP request?

    Thank you

    Matt

  • BlackBerry Z10 how to check that the battery is 100% charged for Blackberry Z10

    Hi, how do I know how much percentage does the battery get charged for BB Z10 mobile.

    Your battery gauge is usually a pretty good indication of what your battery level currently is.  If you want to see expressed as a number instead, drag down and follow the settings > on.  Make sure that the category is set to hardware and look for.  You can also get a lot of apps free battery in BlackBerry World, which shows the level of your battery.

    I hope that helps you.

  • BlackBerry 10 solar charger for my Z10

    I am considering buying a rollable and portable solar charger for my Z10. Would be such a product with these specs,Max Power: 4.8 Watts, 300 my (model f15-300) produce enough power to safely recharge my device?

    300 my is not close enough for a modern smartphone. You will need at least 850 my. Better to invest in a battery that can recharge your phone several times.

  • PUSH for the Runtime Android blackBerry 10 problem

    I'm having a problem with my BB10 Android runtime, it fails when you try to contact CWM and therefore do not send a token valid push on our server.

    I followed the instructions to the letter here: http://developer.blackberry.com/android/apisupport/creating_push-enabled_android_apps.html

    My BAR a /android/android.cfg file that looks like:

    
    
       
          215-513Bxxxxxxxxxxxxxxxxxxxxxxxxxxxx
          http://cp215.pushapi.na.blackberry.com
          bb-
       
    
    

    The credentials are the production and worked when they tested them.

    / META-INF/MANIFEST. MF has the following line adds automatically via the Nature Blackberry plugin:

    Entry-Point-User-Actions: access_internet,read_geolocation,access_shared,play_audio,post_notification
    Entry-Point-System-Actions: _sys_use_consumer_push
    
    Archive-Asset-Name: android/android.cfg
    Archive-Asset-SHA-512-Digest: 0iYhu0YnKDy8vnMxTElTXSD-oEXw8vvVBSBxDI_LxcR_B4w53SoXBW7NbRMAD-ZYmQDnMs_aUQrQaNEssmp36Q
    

    Running a push of the application works very well with android, but it does not work with my BlackBerry 10 Dev Alpha, and we also tried with a Z10. The Alpha DEV us running OS 10.2.0.341.

    There were a few problems of verification of BlackBerry I'm not sure if they are relevant or not:

    targetSdkVersion: 17 is higher than 10:required minimal OS version=10.2
    uses-permission: com.google.android.c2dm.permission.RECEIVE:required minimal OS version=10.0.9
    

    the operating system is running well version 10.2.0.341 on the DevAlpha.

    Edit: added trouble spot:

    When you debug the application on the devalpha, using the standard tools of GoogleCloudMessage, the call

    int googlePlayCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
            Log.i("GooglePlayCode", "Code:" + googlePlayCode);
            if (googlePlayCode == ConnectionResult.SERVICE_VERSION_UPDATE_REQUIRED
                    || googlePlayCode == ConnectionResult.SERVICE_MISSING
                    || googlePlayCode == ConnectionResult.SERVICE_DISABLED) {
                GooglePlayServicesUtil.getErrorDialog(googlePlayCode, this, 1).show();
            }
            else if (googlePlayCode == ConnectionResult.SUCCESS) {
                regid = getRegistrationId();
                Log.i("RegistrationId", "regid:" + regid);
                if (regid.length() == 0) {
                    getSenderIdThenRegisterBackground();
                }
                gcm = GoogleCloudMessaging.getInstance(this);
            }
    

    This part:

    int googlePlayCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
    

    returns 9, which from here: http://developer.android.com/reference/com/google/android/gms/common/ConnectionResult.html#SERVICE_I...

    is SERVICE_INVALID.

    EDIT:

    I tested the gcm by skipping the verification for MCG avaliability and my code attempts to record with CWM VIA:

    String msg = "";
                    try {
                        if (gcm == null) {
                            gcm = GoogleCloudMessaging.getInstance(context);
                        }
                        regid = gcm.register(senderId);
                        msg = "Device registered, registration id=" + regid;
    
                        // Save the regid - no need to register again.
                        setRegistrationId(regid);
    
                        // Send the registration ID to our server over HTTP,
                        // so it can use GCM/HTTP or CCS to send messages to our app.
                        sendRegistrationInfo(context, regid);
                    } catch (Exception ex) {
                        StringWriter sw = new StringWriter();
                        ex.printStackTrace(new PrintWriter(sw));
                        String exceptionAsString = sw.toString();
                        msg = "Register Error :" + exceptionAsString;
                        //msg = "Register Error :" + ex.toString();
                    }
    

    that throws an exception, with the stack trace:

    java.io.IOException: SERVICE_NOT_AVAILABLE
        at com.google.android.gms.gcm.GoogleCloudMessaging.register(Unknown Source)
        at com.joemobi.APP_ID.JoeMobiActivity$9.doInBackground(JoeMobiActivity.java:887)
        at com.joemobi.APP_ID.JoeMobiActivity$9.doInBackground(JoeMobiActivity.java:1)
        at android.os.AsyncTask$2.call(AsyncTask.java:287)
        at java.util.concurrent.FutureTask.run(FutureTask.java:234)
        at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:230)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)
        at java.lang.Thread.run(Thread.java:856)
    

    Help, please!

    A possible cause of this problem uses the SDK Service software play Google to enable GDM. Play Google Service is not supported on BlackBerry 10 is why any reference to the API of GCM would fail.

    Using the stand-alone GCM library should still work on BlackBerry 10 and is still said to be supported by Google:

    «The client library for assistance was offered in previous versions of the MCG works always...» »

  • No Push for Facebook Messenger notificatifications

    Hello

    I can't type notifications push on iOS devices for the purposes of Facebook Messaging.

    Don't know what the problem is.

    notifications are enabled in the application as well as in the settings > > notifications

    What Hat I'm missing?

    Hi Jesse000,

    I understand that you are unable to get notifications of Facebook Messaging. I know it's nice to be alerted to new messages, so I'm happy to help you.

    Looks like you've got a very good start check these settings for your notifications. Let us make sure that you have verified that the other basic settings for the notifications listed here as well:

    Use the Notifications on your iPhone, iPad and iPod touch - Apple Support

    If you do not see the notifications for a specific application

    To get notifications, connect to a Wi - Fi or cellular network. If you do not receive notifications for a specific application, try the following steps:

    1. Make sure that the application supports notifications. Go to settings > Notifications, select the application and make sure that Notifications are turned on.
    2. If you have enabled for an application of notifications, but you are not receiving alerts, the alert style can be set to None. Go to settings > Notifications and check that your alert Style is set on banners or alerts.
    3. Make sure that you are connected to your Apple ID go into settings > iTunes & App Stores and enter your Apple ID and password.
    4. Make sure you do not disturb is turned off. Go to settings > do not disturb and tap manual if it is enabled.
    5. If you have recently installed an app or restored from a backup, open the app to start to get notifications.

    Beyond these measures, some common troubleshooting steps may be valid for that as well. Despite this article being called for an application by not answering, these steps are still valid for your question:

    If an application you have installed unexpectedly closes, unresponsive, or will not open - Apple Support

    Thank you for using communities Support from Apple. See you soon!

  • No synchronization of calendar push for iPad

    If I get the new appointments in the calendar on my desk that they are 'push' synchronized my iPhone via iCloud, but not for my iPad.

    However, if I get a new appointment on the iPad it then sync to my desktop and "search" also all iCloud unsynchronized data.  It is indeed the synchronization on demand.

    How to persuade the iPad "search for" automatically new iCloud data? Or for iCloud automatically onto the iPad?

    I am connected to iCloud on all devices and on the iPad iCloud calendars are enabled.

    iOS 9.3.1

    iPad - settings - Mail, Contacts etc - is the parameter set to 'Push '.

    If it is, then do the following

    On the iPad

    Sign up to find iPad

    Disconnect from the iCloud

    Delete the email / calendar account

    START the iPad

    Restart your iPhone, iPad or iPod touch - Apple Support

    Then sign in all of the above

  • OTA link register to Push for implementation of Runtime Android Blackberry 10

    Him "BlackBerry push Service Production and changes form" requires a live download link.

    (see https://www.blackberry.com/profile/register.jspr)

    I've migrated an android app for blackberry with blackberry for android runtime.

    Review of push service works very well. Now, I want to prepare the global release of BB and register for push production service. I use the blackberry tools 2 beta command line for the conversion.

    The OTA link is required in the form of Production to push. I couldn't find any information how to set up OTA for a bar file. I read the following: "BAR of the files cannot be deployed OTA from a web server, such as the files of COD." They can be installed via BlackBerry World. ", see here:

    http://supportforums.BlackBerry.com/T5/testing-and-deployment/how-to-install-a-bar-file-in-OTA-downl...

    I also read that the jad / cod of OTA files have a limit of 128 KB file. My bar is ~ 600kb.

    (see the video here: http://supportforums.blackberry.com/t5/Testing-and-Deployment/BlackBerry-Smartphone-Over-The-Air-Dow... )

    The questions now: How can I register for the Production Service to push? Can I stuff OTA? How to generate?

    I provided just the bar file as a link and got to push the production credentials.

  • Play Free Sims and Candy Crush for BlackBerry Z10

    Hello

    I don't know if I'm doing this right but here's.

    I'm a Blackberry user for a long time and now I just got the Z10 but I regret a little get it because android obtained as Candy Crush and especially free Sims game games aren't on the BlackBerry

    I would love to see this app World added games

    can someone tell me if this will happen or if its possible or not?

    Thank you very much

    Welcome to Amsterdam

    The best way to get these games in the world of BlackBerry is to contact the developers themselves. They will have the games to BlackBerry port (or create a few new releases for BlackBerry 10). Or maybe they can provide you with the necessary information.

    TL; Dr: the developers for more information, request information or if they are planning to port to BB10

  • Search for Email Z10 Blackberry blackBerry Z10

    I'm an end user who has purchased recently a Z10 Blackberry from Verizon. This end user wishes to be able to search Gmail emails using the native client to find emails more than 30 days, but can't. Is there a way to get around this limitation? Really, she love the new feature but will return for and IPhone if not.

    The most characteristic of 30 days is coming, BlackBerry has promised.

    She really should take for her, the Z10 is so much better than the iPhone.

  • Options for blackBerry Z10 Snooze for calendar reminders

    When I get a reminder on my new Z10, my only choice snooze is for a 5 minute NAP.  Is it possible to get other choices - my old BB has allowed me to snooze a reminder up to a week.

    Press the calendar reminder > edit > and define the snooze function.

  • BlackBerry Spotify for BB Z10 Z10

    Hello

    I can't Spotify on my Z10. It worked perfectly on my old Bold 9900, but not on this one.

    What can I do?

    (I have Softwareversion 10.1)

    Thanks much for any help!

    Greetings

    Or even simpler:

    You set your BB native browser in "Desktop" mode (in the application's preferences)

    and then you go directly to http://play.spotify.com/

  • Simulating touch for Blackberry Z10 gestures

    I want to simulate the gesture of touching the Z10 Blackberry. In the QML we keywords such as onClicked, onTriggered etc and there is action accordingly. But would it be possible without touching imitating the same onClicked, onTrigger actions?

    Anyone can submit a code sample for the same where a touch gesture is needed for action and affect the same gesture is then simulated in the files/SRC or .qml?

    It depends on how your code is structured and if you need to use a signal, or if you want to call the function directly.  If your interface user is written in QML, but the logic is in C++ it can look like this.

    QML:

     Button        {            text: "Click Me!"            onClicked:                {                    _app.buttonClicked();                }        }
    

    And in your C++:

    void ApplicationUI::simulateClick()
    {
        buttonClicked();
    }
    
    void ApplicationUI::buttonClicked()
    {
        qDebug() << "CLICK!";
    }
    

    And don't forget to set the context property so that you can enter your QML calls C++:

        // Create scene document from main.qml asset, the parent is set
        // to ensure the document gets destroyed properly at shut down.
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
        qml->setContextProperty("_app", this);
    
  • Just an exported bar-file for Q10, Z10, and necessary peripheral Alpha SDK native 10.1.0.338?

    Hello

    Here's a simple question probably, but an answer would help me a lot.

    I build an application against the new version of the native SDK (10.1.0.338) - the beta version for the features of Q.

    Then I tested it with the SDK on Alpha device, Z10 (both 1280 x 768) and also of Q10 (720 x 720) and it works fine.

    Then, I produced a bar file to export to the world of BB. My hypothesis is correct that I need a simple bar-file for all devices (Q10, Z10, Alpha device)?

    Thank you very much in advance for your help and your best regards

    Andreas

    That's the way I do now, so as far as I know, this should be sufficient.

  • Visual Voicemail for blackBerry Z10

    I continue to receive windows popup indicating that I have VVM which cannot be displayed and call my VM. There is none on the PCV on the Z10 and when I call VM, no message.

    Any ideas?

    Thank you

    VIC

    Thanks for the reply vgbaron,

    Do you receive only visual voicemail notifications or what is happening to email, SMS messages?  If it is visual voicemail only, I would say contacting your service provider network that they control this request.

    See you soon.

Maybe you are looking for

  • alignment of the tip

    I'm calculation of top place for several graphs that may vary slightly. This slight variation causes the position of the peaks to move. I want to be able to do is take this cutting-edge information and realign it in the columns of a table. The way I

  • Windows 7 - cannot install updates KB979440 KB980376, KB2202131

    Hello Help, please Last updates several automatic updates does not install... I am running Windows7 and Office 2007... KB97440, KB980376, KB2202131 KB980371 I did several attampts, but doesn't have... How can I install individual Thanks in advance

  • Pavilion Dv6t - 6 c 00: casing system

    Please my laptop is very damaged and I need to repackage it or change at least make a plastic cover to protect it. Please where I can get this and with a price affordable price too.

  • Formatting a hard drive

    All tips on how to format a hard drive to full capacity, this hdrive is external and Im running XP media edition It's a Western Digital 160 gig drive, but watch still smaller much smaller is usually 32, using a limit of unit type to format external u

  • Smartphones blackBerry how to move everything to one BB to another?

    I have a 8520 and looking at goes a Bold 9900. I have four sons of my phone e-mail account, more texts, etc. I want to spend all THE e-mails and folders from the e-mail to the other account. A year ago, I had to do this as my old 8520 died, but the t