Need quick help to package and sign the application.

Hey guys,.

I'm trying to submit my application.

I crossed the babou of my product management process and added the product. Now I see my registered product name, status shows the project and releases and merchandise see none.

What should I do now to present my application? What is cargo? Do we need to do?

Question 1: How do I package the application?

Question2: I sign the application money for the free offer of PB?

I know that I can follow a few threads to sign, but I can sign an application later. If it's possible, I'll try to postpone to save time and submite the app before midnight.

Thank you

harshvt wrote:

Hey guys,.

Question2: I sign the application money for the free offer of PB?

No you don't need to sign in order to qualify. You will need to sign it later so that you can actually so people can actually buy/download your application.

Tags: BlackBerry Developers

Similar Questions

  • Cannot get my BlackBerry packaged and signed application

    Help, please.

    I am currently submit a deployable package for testing to my clients who are waiting to test the application, and I was stuck with it. During packaging and signing, the progress indicator is stuck at 99%, and the window "Tool of signed" says "Receive the response" all the required signature and doesn't get anywhere.

    I decided to try it with the simple "HelloBlackBerry" application (you know, like "Hello World"), and it does not work either. Note that he had worked until I think that last night. Is there something to do with the BB Signing Server?

    Urgent response appreciated my customers are waiting on the other end.

    Thank you so much in advance.

    It is Java. BlackBerry Java plug-in Eclipse. BlackBerry API 5. Windows XP, packaging for 8520 (but one last question?). Do not worry about that now, however. Another machine was able to package and sign, so I was saved, and the package was delivered to the customer. But it still doesn't on my PC the last time I tested.

    But the project is, and I think this will be my last project of BlackBerry. Honestly, it was a real pain, and we decided to stop accepting the BB development project for good.

    Thanks anyway, The_Anomaly.

    PS since this topic is not really resolved. Do you know what I have to do?

  • Package and sign Air apps for BlackBerry 10?

    Hello

    I use Flash CS6 and Air under Windows 3.1 to build my apps BlackBerry 10.

    What tools are available to package and sign the apps?

    Thank you.

    Vibes

    There is an AIR application that helps organized all the stages together (Blackberry Tablet OS graphic Help)

    http://supportforums.BlackBerry.com/T5/testing-and-deployment/BlackBerry-Tablet-OS-graphical-aid/TA-...

  • Hi someone help please I am signing the apple tv correctly and it says the password for itunes that is incorrect. However, I am now connected from my computer and it is OK

    Hi someone help please I am signing the apple tv correctly and it says the password for itunes that is incorrect. However, I am now connected from my computer and it is OK

    Have you tried to reboot your router, correct your location settings, you use audit stage 2.

  • Need help to find and install the game Chess Titans Windows Vista for XP

    Need help to find and install the game Chess Titans Windows Vista for XP

    Hi SBOYDC130guy,

    We will not be able to install titan of failures on windows XP because it is designed for Windows Vista and Windows 7 and it's built-in game.

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Package and sign

    Hi all

    I use mac and I tried to package and sign with ripple and this is the error I got

    "Oh Snap!" "Build request failed with the message: [ERROR] CAP exception has occurred.

    Really need help heeeellllppppppp

    Use the search .

    http://supportforums.BlackBerry.com/T5/Web-and-WebWorks-development/RAPC-exception-occurred-v-doesn-...

    http://supportforums.BlackBerry.com/T5/Web-and-WebWorks-development/Hello-world-app-RAPC-exception-o...

    http://supportforums.BlackBerry.com/T5/Web-and-WebWorks-development/error-compiling-WebWorks-app/m-p...

    http://supportforums.BlackBerry.com/T5/Web-and-WebWorks-development/problem-with-number-of-files/m-p...

    You probably have a syntax somewhere error...

  • Packaging and signing in Flash Builder Burrito using 0.9.4 SDK

    Hey guys. I know frankly, there are 1 million post on the forums about this, but I wanted to be sure and had a few questions myself. Good so I used Flash Builder Burrito to sign and package my request. My app is a Mobile Flex Application and I use 0.9.4 SDK. I used the MANY post on this forum through signature and methods of packaging and it worked perfectly, no errors at all. The two files that I got after conditioning and signature was my apps .bar and bar.sign files. I saw in other post to extract the .bar file to see if its signed and if the icon is there. How do you do this will WinRAR or PowerISO to extract this file type. I fear only because all Iv seen post are all saying theres tons of bugs with the packaging and signing using burrito, but all I could see was that they were using the SDK 0.9.3. Should I have a problem with my .bar file? I don't know how to extract my .bar file to view the contents, so I can at least check to make sure that it is signed and packaged properly. Can someone me another message or an article on how to extract the .bar file and check to make sure that its all good to present, RIMM. My previous version was rejected of RIMM is not signed and sent the Bug of version. I have just re-climbed the .bar I got to use the new SDK and had no errors, so I hope this is right. Anyway thanks in advance and any help would be great.

    The .bar file is just a zip file.  It will work any util that allows to read a zip file.  If you need to rename the .bar to a zip file, which is OK, but be sure to rename it before upload.

  • Help with packages and functions that it

    Hello, I need help with the package.
    I have two tables of the employee base (id, firstname, lastname, etc..) T1 and T2.
    What I need, it's a package and two features inside. First function reads the data from T1 and passes to the second function, where second function reads data from T2 and concatenates the data just read with data from function1 and data T1 + T2 function2 goes on the main program that displays this data.

    So far, I have:
    create or replace type emp_type as object
    (id number,
    firstname varchar(20),
    lastname varchar(20),
    salary number(9,2));
    
    create or replace type emp_type_table as table of emp_type;
    
    create or replace package my_package
    is emp_table emp_type_table:= emp_type_table();      -- *not sure if this line is correct*
    function get_T1_emp return emp_type_table;
    function get_T2_emp (T1_emp in emp_type_table) return emp_type_table;
    end my_package;
    
    -- *confusion begins*
    
    create or replace package body my_package as 
    function get_T1_emp
    return  emp_type_table as 
      emp_table emp_type_table:= emp_type_table();
    begin
         for i in (select * from T1) loop
             emp_table.extend;
             emp_table(emp_table.count):= (emp_type(i.id, i.firstname, i.lastname, i.salary));
          end loop;
        return emp_table; 
    end get_T1_emp; 
    - get_T1_emp function seems to be quite beautiful. At least it works separately
    function get_T2_emp (T1_emp in emp_type_table)
    return  emp_type_table  
      emp_table emp_type_table:= emp_type_table();
    begin
         for i in (select * from T2) loop
             T1_emp.extend;
             T1_emp(T1_emp.count):= (emp_type(i.id, i.firstname, i.lastname, i.salary));
          end loop;
        return T1_emp; 
    end get_T2_emp;
    end my_package;
    
    
    DECLARE
      v_Return emp_type_table;
      v_Return2 emp_type_table;
    BEGIN
      v_Return := get_T1_emp;
      v_Return2 := get_T2_emp(v_Return);
      for i in 1..2 loop
        DBMS_OUTPUT.PUT_LINE(v_Return2(i).id || ', ' || v_Return2(i).firstname || ', ' || v_Return2(i).lastname 
        || ', ' || v_Return2(i).salary || 'EUR');
      end loop;
    END;
    So basically I don't know about my tax package.
    Most important, I don't know how to write the get_T2_emp function. And also not very sure of my main function. Please can someone help my with my problem

    Published by: dber November 6, 2011 21:22

    Published by: dber November 6, 2011 23:38 added
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    Hello

    Here you go

    SQL> DROP TABLE t1;
    
    Table dropped.
    
    SQL> DROP TABLE t2;
    
    Table dropped.
    
    SQL> CREATE TABLE t1 (id NUMBER,
      2                   firstname VARCHAR2(100),
      3                   lastname VARCHAR2(100) );
    
    Table created.
    
    SQL> CREATE TABLE t2 (id NUMBER,
      2                   firstname VARCHAR2(100),
      3                   lastname VARCHAR2(100) );
    
    Table created.
    
    SQL> INSERT INTO t1  (SELECT 1,'SURI','DAMA' FROM dual
      2                     UNION ALL
      3                     SELECT 2,'SRINU','DAMA' FROM dual);
    
    2 rows created.
    
    SQL> INSERT INTO t2  (SELECT 3,'ABC','XYZ' FROM dual
      2                     UNION ALL
      3                     SELECT 4,'DEF','PQR' FROM dual);
    
    2 rows created.
    

    Package code

    
    SQL> CREATE OR REPLACE PACKAGE test_array_pkg
      2  AS
      3    TYPE test_array1 IS TABLE OF t1%rowtype  INDEX BY PLS_INTEGER;
      4    TYPE test_array2 IS TABLE OF t2%rowtype  INDEX BY PLS_INTEGER;
      5
      6    FUNCTION get_t1 RETURN test_array1;
      7    FUNCTION get_t2(p_t1 IN test_array1)
      8    RETURN test_array2;
      9
     10  END test_array_pkg;
     11  /
    
    Package created.
    

    Package body

     SQL> CREATE OR REPLACE PACKAGE BODY test_array_pkg
      2  AS
      3    t1_array1 test_array1;
      4    t2_array2 test_array2;
      5
      6    FUNCTION get_t1
      7    RETURN test_array1
      8    IS
      9
     10      n NUMBER :=0;
     11
     12    BEGIN
     13
     14     FOR i IN (SELECT * FROM t1)
     15     LOOP
     16
     17       t1_array1(n).id:= i.id;
     18       t1_array1(n).firstname := i.firstname;
     19       t1_array1(n).lastname := i.lastname;
     20
     21       n:=n+1;
     22
     23     END LOOP;
     24
     25     RETURN t1_array1;
     26
     27    END get_t1;
     28
     29    FUNCTION get_t2(p_t1 IN test_array1)
     30    RETURN test_array2
     31    IS
     32
     33      n NUMBER:=0;
     34
     35    BEGIN
     36
     37     FOR i IN p_t1.FIRST..p_t1.LAST
     38     LOOP
     39
     40       t2_array2(n).id:=p_t1(i).id;
     41       t2_array2(n).firstname:= p_t1(i).firstname;
     42       t2_array2(n).lastname := p_t1(i).lastname;
     43
     44       n:=n+1;
     45
     46     END LOOP;
     47
     48     FOR i IN (SELECT * FROM t2)
     49     LOOP
     50
     51       t2_array2(n).id:=i.id;
     52       t2_array2(n).firstname:= i.firstname;
     53       t2_array2(n).lastname := i.lastname;
     54
     55       n:=n+1;
     56
     57     END LOOP;
     58
     59     RETURN t2_array2;
     60
     61    END get_t2;
     62
     63
     64  END test_array_pkg;
     65  /
    
    Package body created.
    

    Main script

     SQL> declare
      2
      3     t1_result test_array_pkg.test_array1;
      4     t2_result test_array_pkg.test_array2;
      5
      6  begin
      7
      8    t1_result:= test_array_pkg.get_t1;
      9    t2_result:= test_array_pkg.get_t2(t1_result);
     10
     11    FOR i IN t2_result.first..t2_result.last
     12    LOOP
     13
     14      dbms_output.put_line(t2_result(i).id||' '||t2_result(i).firstname||' '||t2_result(i).lastname);
     15
     16    END LOOP;
     17
     18  end;
     19  /
    1 SURI DAMA
    2 SRINU DAMA
    3 ABC XYZ
    4 DEF PQR
    
    PL/SQL procedure successfully completed.
    
  • Need quick help

    Hello

    I need quick help, the hp that we use at work has a background that someone else put (a new), I change back to the normal background but the picture is still on the menu so that everyone could see it or it could put it again. Someone knows what to do?

    (by the way I'm new to this forum so I could have failed by asking)

    Green as grass

    This solved so nvm but it's XP thanks for trying to help if

  • WebWorks & ripple: package & sign: cannot sign the application - could not find signature keys

    Hello

    I am developing a prototype for my company using ripple and Webworks.

    If I package it without signing my BB returns an error "must sign this."

    If I try to sign, I get an error "cannot sign the application - could not find signature keys.

    Somewhere on the net, I realized that I am required to buy RIM signing keys, is this true?

    Is it possible to have temporary keys for testing purposes?

    Thank you

    Roberto.

    Signing keys are free and available here

    https://www.BlackBerry.com/SignedKeys/Codesigning.html

  • BlackBerry Tablet OS graphical help cannot sign the application

    I use BlackBerry Tablet OS graphics helps convert the apk to bar. It convert the application but cannot sign the application.

    Here's my output of the operation

    Batch process Bar signatory began...

    -------------------Fling.bar-------------------
    Signature with the key to the RIM...
    java.lang.NoClassDefFoundError: com/trustpoint/asn/AsnChoice
    at java.lang.Class.getDeclaredMethods0 (Native Method)
    at java.lang.Class.privateGetDeclaredMethods (unknown Source)
    at java.lang.Class.getMethod0 (unknown Source)
    at java.lang.Class.getMethod (unknown Source)
    at sun.launcher.LauncherHelper.getMainMethod (unknown Source)
    at sun.launcher.LauncherHelper.checkAndLoadMain (unknown Source)
    Caused by: java.lang.ClassNotFoundException: com.trustpoint.asn.AsnChoice
    java.net.URLClassLoader to $1.run (unknown Source)
    java.net.URLClassLoader to $1.run (unknown Source)
    at java.security.AccessController.doPrivileged (Native Method)
    at java.net.URLClassLoader.findClass (unknown Source)
    at java.lang.ClassLoader.loadClass (unknown Source)
    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (unknown Source)
    at java.lang.ClassLoader.loadClass (unknown Source)
    ... 6 more
    Exception in thread "main".
    -Completed: 0 minutes: 0 dry -

    Batch process Bar signatory resulted in the: 0 minutes: 0 seconds

    Summary:
    Total number of found unsigned bars = 1
    Total number of bars successfully signed = 0
    Total number of signatures has no bars = 1

    Please give me answer its very urgent.

    Thanks in advance.

    This is caused by a bug in the 1.5.0 packaging Android tools.  To resolve the problem, upgrade to version 1.5.2 .

  • Please, I need urgent help. I can not install applications, the site says I have not produced, but I pay every month!

    Please, I need urgent help. I can not install applications, the site says I have not produced, but I pay every month!

    Hi Jose % 20Dieciseis,

    I checked your account via email that you used to register on the support Forum, it shows not all subscription registered on your Adobe account.

    could be a possibility that you used an e-mail to subscribe to the composition.

    If there is no trouble finding that-

    Please contact Adobe customer care http://helpx.adobe.com/contact.html

    • Remember that you are logged on the page with your Adobe ID.
    • Select your product and what you need help with
    • Click on the blue box "still need help? Contact us. "
  • my client must have acrobat DC to sign the document that I send him? or is my schedule account for them to complete and sign the document in some way?

    If my company has an account DC is - it enough for my clients to complete and sign the document that I send to bring them back to me?

    Hello

    The signer didn't need to have an account Adobe E-Sign or Acrobat to sign the document. The email sent to the signature contains the document link that is opened in the browser.

    Kind regards

    -Usman

  • What app do I need to make a movie and change the sound of the film? Thank you Michael

    What app do I need to make a movie and change the sound of the film? Thank you Michael

    Please check the first Pro CC 2015.

  • Once I have purchase the monthly package and load the programs on my computer, I am able to load presets, I bought outside of adobe for programs?

    Once I have purchase the monthly package and load the programs on my computer, I am able to load presets, I bought outside of adobe for programs?

    If the presets are compatible with the versions you are installing, Yes.

Maybe you are looking for

  • Satellite L300-215 - BSOD after upgrade to Windows 7

    Just upgraded 32 bit Vista to Windows 7 32 bit but keep getting BSOD (Blue Screen Of Death) when using the laptop. The events of the problem like log file below and it fails every time is same error code except BCP2 can change different Hex value. Ha

  • Exchange records between A10 and 2410

    Do Satellites - the 2410 and the A10 - and would like to know if I can swap the drives? (1) so the first thing is confirm compatibility? (2) someone at - it links to some good step by step instructions how to do this? (3) if not, would you recommend

  • will I get updates

    Hello I unlocked my bootloader to my E BIKE (XT1022) India. will I get the latest updates OTA for my phone, and his is just unlocked the bootloader and it is not rooted and did not use other custom ROM. Please help me >

  • Updates step 3-0 percent.

    I encountered a problem where my system was downloading Stage 3, updates from windows.  Unfortunately, my system restarts continuously with the message, "updates stage 3 remains at zero percent" and ultimately does not complete updates to my system. 

  • Cannot install the drivers for the wireless card

    Hello people! I G42-415DX laptop and I recently installed Windows 7 but after installation that the wireless network adapter has not worked, I already downloaded and installed the drivers from this site but nothing happened, the wireless network card