second app

Hello everyone, I created my first app bb10 and sent into the world of the app and everything was fine, but I created a second application and when I send the file to the second application tells me that the application id is already in use, how can I fix?

I use webworks

I'm sorry for my English, Italian

The Id in the XML descriptor file must be unique as well.

Tags: BlackBerry Developers

Similar Questions

  • IK heb een jaarabonnement second apps kan downloaden ik. Nu is mijn laptop gecrasht. Hoe kan ik het opnieuw op laptop sound?

    Hoe kan ik moet bestanden op mijn laptop sound?

    [Duplicate message... go to the link for your other message... Locking of... MOD]

    Double post.

    Reference: Ik heb een jaarabonnement second apps kan downloaden ik. Nu is mijn laptop gecrasht. Hoe kan ik het opnieuw op laptop sound?

    Concerning

    Megha Rawat

  • Messages app does not split view after put 10.11.2 updated

    My apologies if this is covered elsewhere, but it is a problem that arises for me after I've updated from El Capitan version 10.11.1 version 10.11.2

    Following the update of the system, the application messages appears more correctly in split view.  I can put messages and a second application in mode split as normal, but the message window is not reduced to fit in his half of the screen (the second app sits on her side of the screen and resizes properly).   The electronic app continues to fill the entire screen, with the second application instead 'window' is blocking half of the messages window when the second application is active, or with the second window app entirely hidden by the messages app when messages is enabled.  Messages worked normally in split in 10.11.1, it has started having this problem then I upgraded to 10.11.2 and it does appear that the messages app that does this.

    Hello

    I would like to start by a reset the NVRAM

    How to reset the NVRAM on your Mac - Apple Support

    21:29 Sunday; December 20, 2015

     iMac 2.5 Ghz i5 2011 (Mavericks) 10.9
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro (Snow Leopard 10.6.8) 2 GB
     Mac OS X (10.6.8).
     a few iPhones and an iPad

  • Not able to receive a Push Notification with App ID: 4531-* a76s4

    Hello

    I'm new to the Blackberry development,

    I signed up with the service to Push Black berry assessment

    and received the AppID as: 4531-* a76s4,.

    I used this App ID to test Push notifications for my sample Application,

    can I use the same ID App for multiple Applications to receive Push Notifications,

    because I can't register a new ID app for my other applications,

    Please suggest on this.

    Credentials EVAL, you can use the same credentials to push without much concern.

    However in general for PROD you wish to push single credential by application to avoid accidentally sending a big boost for an application to several applications. And since you want to PROD unique credentials for each application (except if you share them grows) then you can go as well with unique EVAL references as well.

    Why are you unable to save of new credentials to push for your second app?

  • split mode will just in full screen?

    I just upgraded to El Capitan - partly to take advantage of the split view.   When I hold the cursor on the green button with arrows of the window just goes full screen (fill page).   I read some support and went to Mission Control and checked the box on "screens have separated spaces."   And I opened a session and having done this.  There is no change.   I still can't get it to work in split view.   The same thing is happening: doc moves to full screen.

    You need to click and the green button until the screen turns blue on one side and then release the mouse button. Then click on the second app that you want to fill the other hald of the screen.

    Use both Mac applications side by side in split view - Apple Support

  • How to invoke the application of another background application?

    I created two applications.

    first application is listening push msgs and prompt user if no msg happens.
    If the user wants to launch second app, it should be called.

    Is it possible to invoke an application from different applications? can you please tell me how I can do this?

    Thank you

    Gunjan

    ApplicationManager launch allows you to run another application.

  • How to get the greatest value of the width and/or height of two open images?

    Re: Photoshop CS6, worm 13.0.1 (x 32) on Win 7 SP1 (64-bit) 16 GB of RAM

    My Photoshop workflow processes repeatedly changing the games of two images of an irregularly shaped object, centered on a white background. After completing the changes, each canvas needs to be cropped, then the two resizing to square canvas of the same size.

    The question I have is the last step: How can I determine the largest single dimension to use as the px width, height px square open two images?

    The following script seems to work, but I don't know if I correctly selects active documents. Is app.activeDocument = app.documents [0] always the document being edited? And app.activeDocument = app.documents [1] no active document!

    I am a programmer of VBA/VB.Net with no experience in Javascript. I'd greatly appreciate some expert opinions on what follows, my first attempt at a Photoshop script.

    #target photoshop
    < menu > automate < / menu >
    Save the current configuration
    var savedRuler = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    whole white background
    var backgroundC = new SolidColor();
    backgroundC.rgb.red = 255;
    backgroundC.rgb.green = 255;
    backgroundC.rgb.blue = 255;
    backgroundColor = backgroundC;
    get the maximum size of the first image
    app.activeDocument = app.documents [0] / / the value first image
    var h = app.activeDocument.height;
    var l = app.activeDocument.width;
    var maxDim = w;
    if(h>w) maxDim = h;
    measure the second image and then get the two images max dimension
    app.activeDocument = app.documents [1] / / for the second image
    H2 var = app.activeDocument.height;
    W2 var = app.activeDocument.width;
    if(W2>maxDim) maxDim = w2;
    if(H2>maxDim) maxDim = h2;
    resize image second
    app.activeDocument.resizeCanvas (maxDim, maxDim, AnchorPosition.MIDDLECENTER);
    resize the image first
    app.activeDocument = app.documents [0] / / the value first image
    app.activeDocument.resizeCanvas (maxDim, maxDim, AnchorPosition.MIDDLECENTER);
    clean
    app.preferences.rulerUnits = savedRuler;

    Try this

    #target photoshop
    //save the current setting
    var savedRuler= app.preferences.rulerUnits;
    var orig_display_dialogs = app.displayDialogs;
    app.preferences.rulerUnits = Units.PIXELS;
    app.displayDialogs = DialogModes.NO; // Set Dialogs off
    
    var defaultFolder = "~";
    var inputFolder = Folder.selectDialog("Choose a folder of images to process.", defaultFolder);
    var outputFolder = Folder.selectDialog("Choose a folder to export resized images to.", defaultFolder);
    
    var fileList = inputFolder.getFiles(/\.(nef|cr2|crw|dcs|raf|arw|orf|dng|jpg|jpe|jpeg|tif|tiff|psd|eps|png|bmp)$/i);
    if (fileList.length%2===0) { // even number of files
      // Loop through files
      for (var i = 0; i < fileList.length; i++) {
    
         app.open(fileList[i]); // Open First
         app.activeDocument.trim(TrimType.TOPLEFT);
         app.activeDocument.resizeImage(null,null,1200,ResampleMethod.NONE);
         var h = app.activeDocument.height;
         var w = app.activeDocument.width;
    
         i++;
         app.open(fileList[i]); // open second
         app.activeDocument.trim(TrimType.TOPLEFT);
         app.activeDocument.resizeImage(null,null,1200,ResampleMethod.NONE);
         var h1 = app.activeDocument.height;
         var w1 = app.activeDocument.width;
    
         var maxDim = Math.max (Math.max (w, w1), Math.max (h, h1)) +10;
    
         app.activeDocument.resizeCanvas (maxDim, maxDim, AnchorPosition.MIDDLECENTER); //resize
         // save second and close
         if (app.activeDocument.name.lastIndexOf(".")!=0 ) { var Name = app.activeDocument.name.substring(0, app.activeDocument.name.lastIndexOf(".")); }
         else {var Name =  app.activeDocument.name;}
         var saveFile = outputFolder + "/" + Name ;
         SaveAsJPEG(saveFile, 10);
         activeDocument.close(SaveOptions.DONOTSAVECHANGES);     // Close the just save 
    
         app.activeDocument.resizeCanvas (maxDim, maxDim, AnchorPosition.MIDDLECENTER); //resize
         // save and close First
         if (app.activeDocument.name.lastIndexOf(".")!=0 ) { var Name = app.activeDocument.name.substring(0, app.activeDocument.name.lastIndexOf(".")); }
         else {var Name =  app.activeDocument.name;}
         var saveFile = outputFolder + "/" + Name ;
         SaveAsJPEG(saveFile, 10);
         activeDocument.close(SaveOptions.DONOTSAVECHANGES);     // Close the just save
         }
      }
    else { alert("Odd Number of Files");}
    
    //clean up
    app.displayDialogs = orig_display_dialogs; // Reset display dialogs
    app.preferences.rulerUnits = savedRuler;
    ////////////////////////////////////////////////////////////////////////////////////////////////////////
    
    function SaveAsJPEG(saveFile, jpegQuality){
      var doc = activeDocument;
      if (doc.bitsPerChannel != BitsPerChannelType.EIGHT) doc.bitsPerChannel = BitsPerChannelType.EIGHT;
      jpgSaveOptions = new JPEGSaveOptions();
      jpgSaveOptions.embedColorProfile = true;
      jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
      jpgSaveOptions.matte = MatteType.NONE;
      jpgSaveOptions.quality = jpegQuality;
      activeDocument.saveAs(File(saveFile+".jpg"), jpgSaveOptions, true,Extension.LOWERCASE);
    }
    
  • IOS development certificates

    I created my first application last year. Of course, at this time there, I created required certificates. I'm ready to create my second application. I need to create new certificates for this second app?

    You don't need to create new development and distribution of certificates .p12. These same certificates to use for all your applications. But for the second application, you must create a new AppID and mobile available files based on this App ID. If you enable push notifications, you must also .p12 different certificates to push.

    Use the same for all applications:

    development .p12 certificate

    distribution .p12 certificate

    Required for each application:

    file of available mobile development

    file of available mobile distribution

    CERT to push development .p12

    CERT push .p12 distribution

  • Content Viewer

    I use the content viewer application to preview my publication on android devices, before that I publish. So far, I used the application called "Adobe Content Viewer". "Recently, I found and downloaded another app called" Adobe Content Viewer (legacy).

    On the second app, I also see my folios, but in a different way! While in my first Viewer I see everything clearly on the second words of documents are very difficult to read! O the first Viewer videos are also plays when recording in full screen, while the second clip can play online without coming full screen...

    Also on folios of fist covers Viewer is visible in both orientations (landscape and portrait), while on the second Viewer I can't be seen on the portrait.

    Does anyone know what are the differences of viewers and how can I be sure and who actually gives me the overview of my application since the two different spectators gives me a different view of the appearance of my application?

    The new native Viewer is to replace the legacy Viewer based on the platform of AIR limited. Here is an article:

    Digital Publishing Suite help | Development of DPS native apps for Android devices

  • Two projects of Toplink (two individual applications) in Weblogic11 (10.3.5)

    Hello
    I have two different applications using the version 11 g (11.1.1.0.1) Toplink and are deployed on a Weblogic Server (10.3.5) 11.
    If I application app1 first connection I can not connect to app2. If I connect to app2 firstly, I can't access app1. He worked in webloigc 10 earlier than after migration to weblogic 11, I am facing this problem.


    Both applications have their individual toplink map files (MWc) and two sessions.xml different files each connection to a different data source.

    Error-

    Description of the exception: descriptor missing query named [findHomeAndRoleByUser] to [com.setupNow.model.SNOUsers].

    --
    Sree
    Additional note
    I added this to the weblogic server startup script
    -Dtoplink.xml.platform = oracle.toplink.platform.xml.jaxp.JAXPPlatform

    You mention that each application has its own session.xml, but the example code shows only a single location sessions.xml - I guess the second app uses a name or a location different sessions.xml. If Yes, are the names of session within each sessions.xml also unique? This can be caused if the two sessions.xml use the same internal session name.

    If they use the same sessions.xml or the same session name, the problem might be that they both use the same static SessionManager instance - it depends on how operate Chargers custom classes and how you shared the TopLink jars in the earlier version of WebLogic. If this is the case, the first app works because it causes the SessionManager load in her sessions.xml/sessions using its ClassLoader. The second application then use the same SessionManager and use sessions with the ClassLoader of the first, resulting in exceptions seen.
    This should not happen if you have different sessions.xml and the names of different session so. If you do, try to also use the getSession method that takes in the Boolean shouldCheckClassLoader. For example:
    Server, serverSession = (Server) mgr.getSession (loader, getSessionName(), classLoader, true, false, true);

    Best regards
    Chris

  • Planning the Migration of the application.

    Hello

    I'll migrate planning application using LCM to the same environment and also prod DEV.
    So if I want to migrate an application so should I create second app with the same name and same Plantype name?
    Can I use different App name and name plantype for the second application?

    Thanks in advance.

    You can migrate applications at the same time, but they are few in number:

    Page 128 prior migration planning

    Planning of Migration considerations: Page 135
    http://docs.Oracle.com/CD/E17236_01/EPM.1112/epm_lifecycle_management.PDF

    See you soon... !!!
    Rahul S.

  • Newbie Question re showing new windows.

    IM used to VB, where I could design several forms, for example starts with a splash screen, then that unload and load a login form, then hide and display the main form etc.

    IM really struggling to understand how you get celebrate do the same thing in flexbuilder.

    How do you get the app to start with a 'form', and then on a user event that close and open the main application?

    A simple example, say a page with just a text area and a button above that da clicked opens a second app page that shows the text entered in step one (IE how to pass variables in all forms) it would help me to much to get my head around the concept in flex...

    It's just so different from what I'm used to, im faced with stuff that really should be easy and feel a bit ridiculous

    can any help?

    Hello

    Flex uses different States.  You can set States using code similar to this.


           
           
       

    And then you can include certain components in some States or all States using code similar to the following

    This will ensure that the textinput appears only on the first and not the second.  Allows it to appear on all the States simply omit the includein statement.

    You can then navigate through different States on the events of the user by using a function such as

    private void clicky (): void
    {
    currentState = "second";
    }

    And assigning attributes click to a button or something similar

    This will mean when we click on the button that the State being viewed changes from 'first' to the 'second '.

    In any case, here is a small example to ask for a name and then Exchange States, click on the button and display host + the subject name.


    http://ns.Adobe.com/MXML/2009.
    xmlns:s = "library://ns.adobe.com/flex/spark".
    xmlns:MX = "library://ns.adobe.com/flex/mx" width = "346" height = "242" >
       
           
           
       

       
           
       

       
       
            private void clicky (): void
    {
    currentState = "second";
    welcome_lbl. Text = "Welcome" + name_txt.text;
    }
               
    ]]>
       

       
       
       
       
       

    Hope this helps

  • Permutation of the Application ID in the workspace

    Hello

    I created an APEX application say BookApp that was created with ID 901.

    After completing the application, I published my App URL to the outside world so that users can use it... as https://apex.oracle.com/pls/htmldb/f?p=901

    Now as it comes to the production version, I copied the original application in another application with ID 902 in my workspace itself. I've made a few changes to this second application (902 a) and once I tested it successfully, I would like to publish this second app that has features enchanced.

    But I don't want to change the URL that I published earlier to the outside world...

    My Question is...
    How can I published the application that has the ID as 902, 901 URL?

    Please let me know if my question is not clear.

    Thank you
    Harish

    As a best practice, you should never publish the APP_ID, you should always use an APP_ALIAS - this is defined in the attributes of your application.

    https://Apex.Oracle.com/pls/HTMLDB/f?p=BOOKAPP

    And below, you can modify the alias to request to be BOOKAPP_BAK etc.

  • iPhone 6 problem after installing IOS 10.0.2 - phone app keeps freezing for 30 seconds

    After installing IOS 10.0.2 on my iPhone 6, the phone app keeps freezing when I open it and remains frozen for about 30 seconds.  Then it closes its doors.  Then only can open and use the phone/directory.  Does anyone else have this problem?

    My husband and my phone do the same thing. We are constantly reset. Very frustrating!

  • IOS 10.02: Phone/contact App suspended for a few seconds

    I'll have a problem in which whenever I go through contacts in the phone app or change any contact then iphone more 6s will hang for 2-3 seconds. I have IOS 10.0.2 will fix this problem but its not yet solved. My observation is that every time the application attempts to fetch/update of data in icloud then I'm having this problem.

    Any body had same problem?

    Hi there, ZshanTChawdhry!

    Thank you for using communities Support from Apple.  From your post, I understand that your phone app seems to become temporarily unresponsive when you edit your contacts. I'd be happy to help you!

    I have some troubleshooting I want to recommend. Before you begin, please create a backup of your iPhone, by following the steps described here: How to back up your iPad, iPhone or iPod touch

    Once your backup has been created, try the following steps, in order. Test after each step completed, stopping when the problem is resolved.

    1. Force to close the phone application, then restart it and return to the Contacts section. You can find a way to force close apps here: force a nearby app on your iPad, iPhone or iPod touch
    2. Restart the iPhone, as detailed here: restart your iPad, iPhone or iPod touch
    3. Restore iPhone to factory settings, following this article: use iTunes on your Mac or PC to restore the iPhone, iPad, or iPod touch to factory settings

      Once the restore is complete, configure the iPhone as a new device (i.e. without using your backup, at least temporarily). You can register in iCloud iMessage, FaceTime and iTunes and the App Store using your Apple ID.

      If adding contacts does not cause the application to phone to become unresponsive, you can restore your backup by following the steps described here: restore your iPhone, iPad or iPod touch from a backup

    See you soon!

Maybe you are looking for