Update App errors with Application Loader

I have an application that I transferred to the itunes Connect and I try now get updated with a new version that I created in Indesign.

The version of the App has been 1.1 and the next version I want version 2.0

Adobe hit my app to version 2.0 for me so it should not error when I try to udate but I always get errors when downloading the .zip to the application loader file. See screenshot...

Screen Shot 2013-09-08 at 10.55.31.png

Is there something I should have done once hit the adobe version?

I'm kinda a loss about what to do next. Any Suggestions?

Ignore the warning for now. Apple is not reject apps because of this incompatibility. Not yet, anyway. The App Builder team is aware of this problem.

Tags: Digital Publishing Suite

Similar Questions

  • App rejected with application settings management

    Hello

    I am a new developer, and I'm trying to implement a configuration management in my application. I found some information on the forum and other Internet site. When I test it with the Simulator (10.2.1 and 10.3) and my devices (Blackberry Z30 and passport) it works without any problem.

    My question is when I am trying to release my app on BlackBerry World, BlackBerry test team rejected it and told me that they cannot launch my application when they tap the... I asked explanations more because I couldn't reproduce this problem and they sent me a video of the bug (every time they tap the add anything...).

    I still don't understand how they can have this question if the test tool with my devices, everything is ok...

    Can you help me understand what's wrong in my code that could explain this bug?

    Here is my code for layout management:

    main.cpp
    
    #include "applicationui.hpp"
    
    #include 
    
    #include 
    #include 
    
    #include 
    
    using namespace bb::cascades;
    
    int main(int argc, char **argv)
    {
        // this is where the server is started etc
        Application app(argc, argv);
    
        // localization support
        QTranslator translator;
        QString locale_string = QLocale().name();
        QString filename = QString( "PourcentagesFaciles_%1" ).arg( locale_string );
        if (translator.load(filename, "app/native/qm")) {
            app.installTranslator( &translator );
        }
        // create the application pane object to init UI etc.
        new ApplicationUI(&app);
        // we complete the transaction started in the app constructor and start the client event loop here
        return Application::exec();
        // when loop is exited the Application deletes the scene which deletes all its children (per qt rules for children)
    }
    
    Applicationui.hpp
    
    #ifndef ApplicationUI_HPP_
    #define ApplicationUI_HPP_
    
    #include 
    
    namespace bb {
        namespace cascades {
            class Application;
        }
    }
    
    class QTranslator;
    
    class ApplicationUI : public QObject
    {
        Q_OBJECT
        public:
        ApplicationUI(bb::cascades::Application *app);
        ~ApplicationUI();
    
        Q_INVOKABLE
        QString getValueFor(const QString &objectName, const QString &defaultValue);
        Q_INVOKABLE
        void saveValueFor(const QString &objectName, const QString &inputValue);
    };
    
    #endif /* ApplicationUI_HPP_ */
    
    applicationui.cpp
    
    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    
    ApplicationUI::ApplicationUI(bb::cascades::Application *app)
    : QObject(app)
    {
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
        qml->setContextProperty("_app", this);
    
        AbstractPane *root = qml->createRootObject();
    
        app->setScene(root);
    }
    
    ApplicationUI::~ApplicationUI()
    {
    
    }
    
    QString ApplicationUI::getValueFor(const QString &objectName, const QString &defaultValue)
    {
        QSettings settings;
    
        if (settings.value(objectName).isNull()) {
            return defaultValue;
        }
    
        return settings.value(objectName).toString();
    }
    
    void ApplicationUI::saveValueFor(const QString &objectName, const QString &inputValue)
    {
        QSettings settings;
    
        settings.setValue(objectName, QVariant(inputValue));
    }
    

    I found a solution to my problem by changing the code.

    I write the code in case someone had the same problem as me.

    main.cpp

    #include "applicationui.hpp"
    #include 
    
    #include 
    
    #include 
    #include 
    #include 
    
    #include 
    
    using ::bb::cascades::Application;
    
    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        Application app(argc, argv);
    
        ApplicationUI mainApp;
    
        return Application::exec();
    }
    

    applicationui. HPP

    #ifndef ApplicationUI_HPP_
    #define ApplicationUI_HPP_
    
    #include 
    
    namespace bb
    {
        namespace cascades
        {
            class LocaleHandler;
        }
    }
    
    class QTranslator;
    
    class ApplicationUI : public QObject
    {
        Q_OBJECT
    
            public:
            ApplicationUI();
            ~ApplicationUI();
    
            Q_INVOKABLE QString getValueFor(const QString &objectName, const QString &defaultValue);
            Q_INVOKABLE void saveValueFor(const QString &objectName, const QString &inputValue);
    
            private:
    
            Q_SLOT void onSystemLanguageChanged();
    
            QTranslator* mTranslator;
    
            bb::cascades::LocaleHandler* mLocaleHandler;
    };
    
    #endif /* ApplicationUI_HPP_ */
    

    applicationui.cpp

    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    
    ApplicationUI::ApplicationUI()
    {
        QCoreApplication::setOrganizationName("test babou en carton");
        QCoreApplication::setApplicationName("test babou en carton");
    
        mTranslator = new QTranslator(this);
        mLocaleHandler = new LocaleHandler(this);
        onSystemLanguageChanged();
        bool connectResult = connect(mLocaleHandler, SIGNAL(systemLanguageChanged()), SLOT(onSystemLanguageChanged()));
        Q_UNUSED(connectResult);
    
        QmlDocument *qml = QmlDocument::create("asset:///main.qml");
        qml->setContextProperty("_app", this);
    
        if (!qml->hasErrors()) {
            AbstractPane *appPane = qml->createRootObject();
            if (appPane) {
                Application::instance()->setScene(appPane);
            }
        }
    }
    
    ApplicationUI::~ApplicationUI()
    {
    
    }
    
    QString ApplicationUI::getValueFor(const QString &objectName, const QString &defaultValue)
    {
        QSettings settings;
    
        if (settings.value(objectName).isNull()) {
            return defaultValue;
        }
    
        return settings.value(objectName).toString();
    }
    
    void ApplicationUI::saveValueFor(const QString &objectName, const QString &inputValue)
    {
        QSettings settings;
        settings.setValue(objectName, QVariant(inputValue));
    }
    
    void ApplicationUI::onSystemLanguageChanged()
    {
        QCoreApplication::instance()->removeTranslator(mTranslator);
    
        QString localeString = QLocale().name();
        QString fileName = QString("testBabouEnCarton_%1").arg(localeString);
        if (mTranslator->load(fileName, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(mTranslator);
        }
        qDebug() << "language " << localeString;
    }
    
  • Community port-a-thon - error with applications accepted/releases

    Hello

    I've had a few requests of BB10 prepared during AllAboard port-a-thon, apps have been accepted, and I got information about the awards.

    Later, I have prepared something new (I improved the UI) and I downloaded the new versions. My problem is that I downloaded last weekend, in the community of port-a-thon. So, yesterday, I received by e-mail with the information that I get rewards of money for my 3 options for use. But it was just a new version, not a new application! I was even not recorded for the ptt community - I have had no new apps so I is not registered myself.

    I think it's unfair, I would ask RIM to stop my payment process for the port-o-thon community (for 3 apps).

     

    BTW: I know not if it is the error of someone or a bug in their system - if it's bug, someone can use it to get money just for new versions.

    I don't know the RIM email where I should send it this information, so for now I send him here, meybe a RIM person find.

    Thanks for reporting this.  I have to inform the owners of program which will focus on this.

  • Error with the loading of the XML file. Help me

    Hello!

    I'm doing a mp3 player for my website but I'm having a little problens and I hope you can help out me.
    It's a xml driven mp3player. I have a mp3player.as file and a songs.xml. Inside my flash animation, I have #include "mp3player.as".

    Here is my code of mp3player.as:

    [CODE]
    Audio Configuration object
    var s: Sound = new Sound();
    s.onSoundComplete = rhyme;
    s.setVolume (75);

    Palette of sounds
    var a: Array = new Array();

    Currently playing song
    CPS var: number = - 1;

    Load the XML into an xml file
    var xml: XML = new XML();
    xml.ignoreWhite = true;
    xml.onLoad = function()
    {
    var nodes: Array = this.firstChild.childNodes;
    for (var i = 0; i < nodes.length; i ++)
    {
    SA.push (nodes . attributes.url);
    }
    playSong();
    }

    XML. Load ("Mp3Player.xml");


    Read mp3 file
    function playSong(): Void
    {
    If (cps == sa.length - 1).
    {
    CPS = 0;
    s.loadSound(sa[cps],true);
    }
    on the other
    {
    s.loadSound(sa[++cps],true);
    }

    }
    [/ CODE]

    And here is my songs.xml file:
    [CODE]
    <? XML version = "1.0" encoding = "UTF-8"? >
    < songs >
    < url = "song music\setsite.mp3" / > "
    < song url = "music\Soul Magic - Magic.mp3 Soul" / >
    < song url = "music\Technotronic - NRG Flow.mp3" / >
    < / songs >
    [/ CODE]

    Whenever I have test my movie, I got this msg:
    Error opening URL "file:///C|/Documents%20and%20Settings/Administrator/My%20Documents/Web%20Sites/site%20MA IO%202007/undefined".

    What is wrong with my code?

    When I commented this line xml.load ("songs.xml") my film works very well. But I can't fix it...

    Thank you

    Thanks GWD... It was the capital I was causing the problem...

    Now, let me ask you something? If I do this mp3player with the loadSound (leader, true); will be music playing and stop because of some internet connections?

  • App Builder with dynamically loaded VI - please help

    Hello

    Please take a look in the ZIP file attached with the sample project. The appellant load sub dynamically. This works well in the development environment (LV 2011) but when I build the EXE, it stops working. Please take a look; Ideally, repost fixed project in this thread, others to take advantage of the way to solve this problem...

    Thank you!

    JorgeinSD

    Hi Jorge,.

    This is the problem of the ususal: in the executable path to your dynamically loaded VI Exchange.

    You have defined to be included in the executable. If the path passes to Appdir\DynLoad.exe\LoadMeDynamically.vi, but you try to open the path AppDir\LoadMeDynamically.vi...

    Options:

    -check the execution (by the property node) environment to decide which way to use

    -change the location of the VI to "support the directory", this will be a folder named 'data' next to your executable file. Call the VI of this folder. You can do the same thing inside your project to have the same calling conventions in the development and runtime environment...

  • Impossible to update app from Microsoft Store Windows 8 - error 0 x 80246007 and error 0x8001074a

    Hello community

    I can´t updated app, store, I have try all the solutions in this net.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_8-Winapps/unable-to-update-apps-error-some-thing-happened/494adef1-93C2-4D22-A963-61d050c79536

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_8-Winapps/unable-to-install-Microsoft-apps-from-the-store/3646c352-9e0f-4DBA-b1cd-6ef3baaecf61

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_8-Winapps/error-code-80073cf6/072950ed-8768-4517-BD85-553fd56abd67

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_8-Winapps/Windows-8-Pro-apps-update-error-message/33c90b48-6ABE-4C91-8244-58f4b9bf8a08

    and still the same error 80246007 x 0 and 0x8001074a error

    I need help please, because windows 8.1 is coming and I want to update

    also I try to communicate directly with Microsoft, and when asked for the PID (ID), I insert and always gives me a server error or other problems

    I need help please. Thanks in advance

    I ran into the problem last night where I could not install, reinstall, or update all apps in the Windows store.  I'm still under Windows 8 and 8.1 not for reasons known but that is for another place.
    This problem took me a day to find and troubleshoot, ALLL and I mean about 8 solid hours.  The error codes I received kept windows pointing store of problems with Windows Update or other corruptions of system, but after all of these solutions and executed the partner checks several times nothing was wrong with my Windows Update.  I would have guessed considering how I could still download updates from MS very well.
    What solved MY problem (and I bet that most of your establishments), was actually a file permissions issue.  There are TWO, count them 2 folders that you should be sure your username has full permissions.  I saw there of the patches that speak on one or the other, but you need BOTH.  Here is the path to these files file: (remember 'C' is my root drive, is the name of each user on the system, and if you have customized your installation of windows, or the location of the user folder, you must change this path to match)
    C:\Program Files\WindowsApps
    \AppData\Local\Packages C:\Users\
    Before you follow this procedure, access the Windows store and cancel all pending installations (or omitted).
    To set the permissions: (if at any time, the system asks the permission of the administrator, you must grant it)
    1. make sure that you logged in with an administrator account.
    2. open Windows Explorer and navigate to C:\Program FIles.
    3. Locate the file WindowsApps (all the way down)
    NOTE: this is a hidden folder, so do not forget, you go to the top of the window and click on the 'View' tab, then check the box next to "Hidden items" in the Show/Hide section.
    4. right click on the WindowsApps file and choose "Properties".
    5. click on the security"" tab.
    6. click on the button "Advanced".
    7.1 if your username is listed in the list under entity double-click on it (otherwise go to 7.2)
    7.1 a - ensure the Type: is 'Allow' and the applies to: is "this folder, subfolders and files.
    7.1 b - click the full control checkbox
    7.1.c - click OK
    7.2 If your username is not listed, click on the button "Add" below the list (you may need to click on 'Edit' to the 'Add' button to appear)
    7.2 a - click on "Select a main" link at the top.
    7.2 b-"Advanced", click on "find now".
    7.2 c - book here your user name in the list and double-click on it
    7.2d - click OK
    7.2E - ensure the Type: is 'Allow' and the applies to: is "this folder, subfolders and files.
    7.2f - click the full control checkbox
    7.2.g - click OK
    8. you should now see your username in the list of the "Advanced Security Settings for WindowsApps" with "Full control" in the access column (if you do not, go back to 7.1 or 7.2 and carefully follow the steps once again).  Click OK
    9 go to C:\Users\\AppData\Local
    NOTE: AppData is a hidden folder, so be sure you have the "Hidden items" box checked
    10. right click on the WindowsApps file and choose "Properties".
    11. click on the security"" tab.
    12. click on the button "Advanced".
    13 follow the same procedure in steps 7.1 or 7.2 to add your username to the list to this folder with full control permissions.
    14
    . Restart your computer.
    That's it, once your computer restarts, you should be able to use the store Windows to install applications and updates.
    Once you confirm that it works for you, I recommend you to create an image of the master volume of your Windows System.  All this happened to me while I was trying to get everything set up initially, but once you do, using the image as a good quick a good known Configuration reboot is a MUCH faster way to solve many problems with Windows... SAME A WAY TO GO BACK to Windows 8 Windows 8.1 IF YOU FIND THE NEED. I KNOW I DID!
    Hope that helps everyone!
  • Application loader error messages

    I get several error messages when you try to put my app via the Application Loader. Here is a screenshot of my error messages. Can someone please? Thank you.

    Screen Shot 2013-12-28 at 11.59.16 AM.png

    The error told you what the problem is. You have activated the newsstand for your app in iTunes connect but no has not activate the option of newsstand in App Builder when you made your request. Disable the kiosk for the app in iTunes or activate it in App Builder. Then submit your application.

    Neil

  • BlackBerry Smartphone Handheld application loader wizard

    This becomes a major problem for a lot of bb users.  I have worked for weeks to try to solve this problem for me with the bb to your PC desktop software.  With the help of Blackbeery destop software everythime I try and access the Applications or update the device "Handheld application loader wizard has encountered an error and needs to close" appears preventing you to access or update.  I think that the problem lies in the Loader file in program files/commonfiles/Apploader where, even after uninstalling the DTM and all the BB old device software and even delete this file, it seems to still stay on your computer and refuse, delete, or update.  Not that I am any expert just what I have gathered to try to solve this problem for weeks.  Has anyone found a solution or followed the steps that worked for them?  I know that many people have the same problem, but the help I followed I was not able to perform the tasks that I met other problems.  Help, please.

    I found a way to work around this problem, it is a solution.  If you get stuck let me know and I'll tell you how to circumvent this default

  • Update of the app with the application loader: bundle is not valid-&gt; error CFBundleShortVersionString

    Hello

    One of my clients is trying to update their app. They created a new viewer of several question (via ver18).

    When you download this app with the application loader that they receive the following error message:

    "This package is not valid. The CFBundleShortVersionString key in the info.plist file must contain a newer version than that of the previously downloaded version.

    (see screenshot)

    During the audit, the app update was indeed a (iTunes) version number lower than that already on the app store. So I thought that was the problem, but when you select a higher version and try again error still persists.

    I couldn't really find someone on the forum who has had this problem.

    Tips are always welcome

    Thank you

    bundle-error.png

    Bart - someone from Adobe can change the version number on the viewer Builder server. Contact your Adobe representative or Gold support.

    Post edited by: Matthew Laun, deleted the reference to my direct email address. All Support Gold have access to do it now.

  • How can I replace my app on iTunes Connect with a new version with air for iOS and app Loader?, how do I replace my app on iTunes Connect with a new version with AIR for iOS and the Application Loader?

    How can I replace my app on iTunes Connect with a new version with air for iOS and app Loader?, how do I replace my app on iTunes Connect with a new version with AIR for iOS and the Application Loader? I got an error that the version number needs to be updated. I created a new record in iTunes Connect with version 1.1 and I took ownership of my current app 1.1 in air for iOS section in Flash.

    Check your descriptor file to make sure that it shows the updated version, too.

  • iOS error ITMS-90478 and ITMS-90062 downloading with the Application Loader

    Hello

    When you try to download the latest versions of my apps on iTunes with the application loader, I see these errors:

    Screen Shot 2015-07-28 at 10.16.55.png

    I unzipped the ipa and checked that the current version number is actually 14.10.0, so I do not know why this error pops up. I tried other numbers version as well without success. I see this error with different numbers for 3 of my 4 apps. These 3 applications are 32-bit architecture right now, I'm trying to upgrade to 64-bit with this build. The 4th app was 64-bit from the start and did not show this error, but I don't know if it is related to the error.

    I compile with the SDK of Air in Windows (18.0.0.180), if that makes a difference. Any ideas why this error keeps popping up?

    Thank you

    The behavior of the two numbers has been changed recently. Previously you could not increase the number of generation without increasing the version number, which, when using test flight of Appl'e system means that the beta has go through approval each time. If you can keep the version number the same, but increase the build number, the new beta does not have to go through approval.

    Watch 'Number of Build in the iOS of the AIR' in the release notes:

    http://labsdownload.Adobe.com/pub/labs/flashruntimes/shared/air18_flashplayer18_releasenot es.pdf

  • Error using App Builder and the Application Loader

    Hello

    We have created for many App App Builder before and after the release of v27 we tried to put a couple of App update so we get in the App Designer, under the v26 version to v27 (has not changed anything else!) and rebuild the application. Now, we want to use the Application Loader to download the App on iTunes Connect, but whenever we receive this message:

    "The binary being analyzed must be an executable: /var/folders/9x/.../..._v27_distribution-viewer.zip/viewer.app/viewer.

    We are rebuilding the application several times, updated the App Builder but nothing works. Anyone have an idea?

    Concerning

    Sven

    You are using Mac OS X 10.6.8 or earlier? If so, it is probably the problem. We always try to know that if it's something the team of DPS App Builder control on. Until they learn, the best approach is to use a computer with Mac OS X 10.7 or later to install the loader app (available on a connection, iTunes link), copy or download the .zip file and download it. Alternatively, update your machine to use Mac OS X 10.7 or higher. I'll let you know when I find more information.

  • App integrated with Flash Builder 4.6 and compiled for iOS, error now when loading to the appstore

    I built a simple application using Flash Builder 4.6 and have successfully deployed to the Android Market (after testing on my own Android device).  I also took this same application and compiled for iOS and tested on my iPad.

    I then did the Release with the final 'Release for App Store Distribution' option in the release generation Wizard.  I have all the certificates supply correct in place and compiled the application in a .ipa file.

    At this point, you use a MAC, I ran the Application Loader utility to upload my app to itunesConnect portal to get it in the appstore.  I already went through the steps to enter metadata, pricing, and screenshots in itunes connect portal and just need to download it for review.

    When I download the .ipa file into the application loader, it gives me the following error:

    "iPhone/iPod Touch: contains executables of the application not supported architectures: arm.

    Anyone have any idea what this means and how I can fix this?  Any help is greatly appreciated!

    Thanks in advance!

    He solved.  Just add the following text in the tag for iPhone in my app descriptor XML file:

    UIRequiredDeviceCapabilities

    WiFi

    ARMv6

    ARMv7

  • Problem blackBerry Smartphones with updates/app loader/SoS - Blackberry Curve 8900

    The symbol of SoS came today and I looked up what may be causing it.  Nothing appeared to be damaged if the only other option was my software was not up to date.  Well, I installed the software for the device from RIM under my service provider, but oddly, I had no prompts to choose the directory in which I tried to install the software.  After installation, the Application loader loaded, and I clicked on "Start" on "software update."  I got a prompt saying: "Please connect your device" with a menu of dropbox and any options that it contains.   Now, my blackberry works with this computer (Windows 7) because I can access photos/music/etc through the storage using the USB.  The USB is connected when I try to use the Application Loader.   So ontop of the fact that I can't use my phone until it is updated and cannot update the phone due to software bug, I also can't FIND the path to failure again access software!  Like I said earlier, there is no no. PROMPTED to wonder where I have to install the software.  I looked on several forums for the automatic and same path SEARCH keywords such as "Research in Motion", "Device Manager", "Application Loader" and even "Blackberry" and none of these files allegedly exist.  I can access ONLY the charger of application through uninstalling and reinstalling the software, because it runs automatically after installation.  I hope that the program from a site legitimate BlackBerry (https://www.blackberry.com/Downloads).

    I am very, very upset by this phone. OnTop of the many bugs I've known throughout its use, its sad that I HAVE as a customer to update my phone my phone just otherwise stop across the network to my ISP until I do it.

    If I do not get immediate help on these issues through independent e-mail, personally never buy a Blackberry again and to discourage anyone from aswell.

    Kind regards

    Chris

    Already done this as I have explained in the original post.  Even then, I clicked on your link and was sent to the same Web site that I had already spent too except the one you sent me was strictly for East Asian languages, which I'm not going to download.  I had already downloaded the international and selected English.  The path to this program does not update the phone matter.  I have yet to come across a program that doesn't work than strictly on your C drive only.  Despite this, I have enough space on my C drive for the file - but it does not yet exist nor do ALL files/folders in the directory that was supposed to be created.
    Oh well, thanks for your help.  I guess I'll have to deal directly with RIM and waste more time with this phone.  Bugs, gel, blockings, reception loss/bad PC/updates to update software that are up-to-date and for the worst of all - a phone that forces all the reception off the power when you need to update, what a very good product.
    PS. other then Google Maps, no addons were never / have been installed. Phone never fell on a hard surface, but has a box of rubber for this instance.  Phone has no damage water (indicated by white strips) and no interior/exterior changes have been or is still made.  Never left in a hot/cold climate for long periods of time either.  So there is really no excuse other then a bad product.
    Wish me luck when they tell me to call my service provider of reception because it will not be the fault of phones; or, I will say to call microsoft, because it will not either rims software.  This is the circle of bad technical support.
    Thanks again.

  • Smartphones from blackBerry Bold 9900 stuck on the update with App error 602

    I tried to update my device software (Bold 9900).

    The 9900 is connected to my computer and through backup and installation, then stopped at the restart for a few hours. In 9900 message "App Error 602"

    What should I do next.

    Thank you

    Tom

    Something is wrong here if your all steps

    How to perform a clean reload of the BlackBerry Device Software using BlackBerry Desktop Software fo...

Maybe you are looking for