App rejected

Hello guys,.

Please note that I only am facing a problem when apple rejected my application, error description:

We even found one or more bugs in your application when reviewed on iPad and iPhone IOS 9.3.2 Wi - Fi.

Please run your application on a device to identify the issues, and then to review and submit your control application.

Noting that the same code has been installed in the same version of ios same configuration (link to the same link HTTPs) with different layout profile (I changed the profile available to the development to be tested locally)

What are the reasons for rejection?

could be https, firewall configuration, the profile thing another provision?

I could be wrong, but I don't think that when they mention a Wi - Fi connection, they mean that there is a problem with a Wi - Fi connection.  I think it's just a big enough recurrent question that they could reproduce on a device connected to the Wi - Fi.

Tags: iOS Developer

Similar Questions

  • App rejected because the current problem does not become available

    I had an App rejected twice by Apple for not having the current edition becomes available for download after the user buys a subscription. See attached screenshot, taken by the examiner in Apple on their device. Also note that there are no tiles of graph in library view. Application built using DPS Pro V 23.

    Screen Shot 2012-11-08 at 19.13.16.png

    I guess that the problem for the reason explained here in this documentation http://helpx.adobe.com/digital-publishing-suite/kb/subscription-fail-ios-renditions.html

  • 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;
    }
    
  • App rejected, no idea why

    Hi people,

    Presenting my first PlayBook application last week and got a rejection notice this morning. The email said:

    - failure 500 no debug token found error when installing
    

    ... and related to this topic.

    I really don't understand what this means, I thought that the tokens were used to run unsigned when testing applications? I have a chip on my device to test, I have my signature keys configured in Flash Builder (on Mac) and I have a blackberry file - tablet.xml in the project with my authorId and a correct version number in my - app.xml file.

    What else am I missing?

    Thank you

    Do you mean that the experimental House actually sent that support you this as notice of rejection?

    That makes no sense to me... If you have submitted an application signed, you need to, do not deal with chips of debugging.

    Any chance simply didn't you sign, and their limited scope (if any) of the English language prevented explaining them their concern?

    Do you know how to check that you have correctly signed soft? There are beyond discussions if you need, or ask.

  • App rejected; about the brand.

    Hello people.
    I would like to ask for some advice on something. It's nothing relevant at all, just one "for fun" project I decided to take on. Basically, I wanted to turn my Wordpress Web blog in a native application of BB10. The problem is my blog is named Q and his BlackBerry (my name is actually queue), and the Web address is www.QandhisBlackBerry.com

    I received an email from App World, saying that the application has been rejected, based on the use of the name BlackBerry because it creates a "question of branding." They suggested that renaming Portal app name and the image of the banner I created inside the app. I don't know how I'm going to work but my real question is simple; I'm even allowed to enter the full Web address (www.QandhisBlackBerry.com) in the app description?

    I apologize that a player for the personal blog of someone application is not exactly relevant to anyone, but like I said it's something I wanted and my blog has a few years under his belt with it of very name showing where my allegiance lies. Just a little advice for the research. Thank you, whatever, for your time.

    I think that BlackBerry can only really answer that, I see no reason to not allow the use of a URL with BlackBerry in as do a lot of apps, but ultimately it comes down to context.

    Make the changes that they recommended and submit again and then going from there.

    If you are lucky, you can get a comment from one of the employees of BlackBerry who frequent this forum.

  • iOS App rejection - In - App Purchase restore presentation

    I recently submitted my application to Apple for approval and that it was rejected, this time because the binary allows a feature restore "already purchased In - App Purchase products"; However, in iTunes Connect I have something setup in the In - App purchases, and the price of the app is set to release.

    Here is the message from apple:

    Restoration In - App purchase

    We found that your app includes a feature to restore already bought products from the In - App Purchase.

    It would be appropriate to revise your binary to remove this feature.

    For more information on In - App purchase 'types of purchasability', please visit the Guide of purchase of iTunes Connect App Setup



    Here are two screenshots, they sent me to the problem.


    temp..ajoigsoa.png

    temp..ltrfqdjm.png


    You say that your application only has not any how in-app purchases implemented? If so, I would suggest to rebuild your application. The latest version of DPS 2015 included patch that removes the option 'Restore purchase' if the app does not purchase. See these bug fix release notes: https://helpx.adobe.com/digital-publishing-solution/release-note/bug-fix-release-notes.htm l

  • iTunes Connect Custom Nav Bar App rejection

    Apple rejected our DPS app updated recent based on the custom nav bar buttons that exist for two years now in the app:

    "Please remove the account record links and any other full link to your site which could indirectly give access to external purchases or subscriptions to use in the application, including links to web pages for more product information or program support, FAQ,".

    Our custom buttons nav has currently link to a digital FAQ page for iPad support and homepages for our products. Do you know if iTunes has recently changed its policy? Or if it's something that we can ask for another review?

    Thank you.

    This is not new. If you have links on a Web site for an FAQ, this page cannot, somehow, allow your user to navigate your site to a place that they can then make digital purchases.

    Heck, we had once rejected for this reason Adobe Content Viewer. The 'Forgotten password' link went to a page on www.adobe.com, and from there, you can use wider site navigation to go to the Adobe online store and buy stuff. LCA has been rejected, and we had to change the page so that you could not navigate to other parts of the Adobe site.

    Neil

  • DPS app rejection

    Hello

    have seen a few posts on the web about applications rejected by apple with messages about issues on the iphone 6 and 8 of ios. Does anyone have a solution to this. ?

    I have updated to the version v32 and rebulit ny app Viewer but continue to get a white screen when I discover the .ipa devleopment on my ipad. So I think it means rejection by apple again.

    After waiting 10 days for them to watch it, then found out, they were closed for Christmas, and when they finally looked at was rejected... equal to the total of very angry customer.

    If anyone has a solution please can you let me know...

    Thank you

    HOORAY! Finally got it work.

    I could go through all the various variations, I tried but will not bore you.

    The solution was quite simple that I completely deleted the folio, deleted all trace of DPS App Builder and created a new folio, then the app. I had created new files as well mobile configuration, but I don't think that was the issue.

    Thanks for all suggestions, much appreciated.

  • App rejected by apple 11.13.  Referenced the 'Create an account' link in the login box

    We have a right multi-folio (Enterprise level) application allows us to authenticate to our customers of current subscribers.  In various parts of the app we link to the site where a user can create an account and authenticate this account with a subscriber number.  The link goes to our site.  We are not trying to sell subscriptions through this process.

    The message from apple was the following:

    "The displayed pages have links to external pages for creating an account. The Connect dialog box also has a link to create an account that connects to the same Web page. It is illegal to 11,13 "

    It is the creation of account mentioned by Apple URL:

    http://www.ainonline.com/dpsregistrationform_isSubscriber

    Nothing has changed about this process, since we launched the app in April and now we cannot update the application.  Need to make the account creation process a function in application?  DPS has the tools to do this?  I imagine that most of the editors need a way to authenticate current submarines via some sort of authentication process and the App Builder has only an option to post a link to an external URL.

    Any guidance would be greatly appreciated - thanks.

    Dave

    Make sure your external Web site not to allow the purchase of a subscription and then appeal the rejection. The guideline says:

    "Apps that link to external mechanisms for purchases or subscriptions to use in the application, such as a 'buy' button that goes to a website to buy a digital book, must be rejected."

    Let them know that she does not allow the purchase of the subscription and is only to create an account for use in the application.

    Neil

  • App rejected without content in iOS8

    Apple rejected my application due to a "bug". Here is their statement:

    We found that your application exposes one or more bugs, when reviewed on iPad running iOS 8.1 and iPhone 5 s running iOS 8.1, Wi - Fi and cellular networks, which is not in conformity with the App Store Review Guidelines .

    Specifically, your application does not include any content.



    Is it me, or is there a problem with iOS 8? Development app works fine on my iPhone 5 with iOS8. He has also not loaded on Google game no problem, and it is sold with no complaints.

    If you have set up in public/retail and the questions appear that means that you don't have in-app purchase set up properly. Have you created product for your items in iTunes ID? Have you added your shared secret from iTunes to your publication account settings in the DPS dashboard?

    I suggest you call our support line of business for assistance at this stage as they guide you through common causes. To find contact information, connect to http://digitalpublishing.acrobat.com/ and in the Middle at the bottom of the screen.

    Neil

  • Newsstand App rejected - in-app purchase issue

    Hello

    We submitted an application multi-folio subscription for review, but it was rejected for the following reason:

    "2.3 we found that your application did not reach the basic functionality described in the release notes or your marketing material, as required by the App Store Review Guidelines.

    When the application is launched, all the available numbers can be downloaded for free. Although the user can buy renewable subscription automatically, buying renewable subscription automatically does not have any content.

    It is expected that buying renewable subscription automatically provides more recent issue.

    It would be appropriate to review your app to ensure that this function is implemented entirely or to review your Description of the Application, Release Notes and screenshots to remove this content. »

    Could someone advise me on this? The situation is that we have a free and open application which contained a "sample issue" folio (not a complete problem). This folio has been set free and public.

    In-app purchase, we submitted it was a subscription 1 year renewable automatically, which has been set to "allowed to sell.

    My questions are:

    1. is it OK that argued us that a sample, no number 1 (I have been informed by a reseller DPS it's OK).

    2. If the app renewable subscription purchase is automatically changed to be NOT allowed to sell, this difficulty? My thought is that in this way, we want to erase only the subscription for sale once that question 1 is transferred.

    Thanks for any help!

    Yes. You have already published the free/public folio, and now you need to publish a folio of retail/public. When you publish the folio, you must specify the product ID. This product ID must match the product ID for no consumables in-app purchase that you set up in iTunes Connect. In this way, Apple can test your content at retail.

    A common error is to use the same product ID for all folios you post. Don't, don't. For each sheet of the retail sale, you will need to implement a different product ID in iTunes Connect. For best results, use the format com.mycompany.myapp.issuename , such as com.bobpublishing.nwscenery.20140601 for the June issue and com.bobpublishing.nwscenery.20140701 for the July issue.

    The folio of detail you post doesn't have to be finished. Apple just needs to be able to download something when the app is approved. Just make sure that you control when the app goes live during the presentation of the app.

    Note that you can send a whole bunch of in-app purchases to Apple for future folios retail. This so that you don't have to wait for approval from Apple to publish the folio. When you submit these in-app purchases, Apple didn't need to see the corresponding folio.

  • (Help!) Subscription free magazine app - rejected twice for the same bug - specifically, the activity in

    Hello

    Here is the response of rejection of the application.

    ---------------------------------------------------------------------------------------------------------------------------------------------------------

    2.2

    We found that your application exposes one or more bugs, when the review: iPad iOS 7.1, running on Wi - Fi and cellular networks, which is not in accordance with the App Store Review Guidelines.

    Specifically, the activity indicator turns indefinitely subscription. Please see the attached screenshot for details.

    For questions at the level of the discrete code, you can check with Assistance technique Apple Developer. When the DTS engineer follows upward with you, please be prepared to provide:

    -all the details of your rejection problem (s)
    -screenshots
    -steps to reproduce the problem (s)
    - symbolicated crash logs - if your problem results in a crash log

    If you have difficulties to reproduce a problem report, please try to test the workflow as described in <https://developer.apple.com/library/ios/qa/qa1764/ > Technical Q & A QA1764: how to reproduce a bug or crash who see only App Review or users.

    ---------------------------------------------------------------------------------------------------------------------------------------------------------

    I had the same rejection of the first time. After watching Adobe online, thought it was a billing issue, so I managed to get this rectifed. I hadn't used a shared secret (as he had not shown because I thought, the billing was not setup correctly). After that we have fixed the billing, I had access to the shared secret that I used.

    Any ideas what this could be?

    The app is a magazine app that's free subscription. It is the inapp purchase. No folio in app purchases don't, because they are free. Sent with the first version on the magazine published, although Apple coulnt got her in the form of time subscription.

    Help! Because it is the second rejection, it's two weeks and I'm getting closer an event that I have the app live for.

    Thanks for any help,

    Matt

    Hello

    First of all, thanks a lot for all the help of Bob, Neil and Jr. Your responses were quick and very useful.

    Gold support were also very good. Thanks to the DOE for this one.

    Solution: because the product ID are marked as such in a few different places, and I was trying to make sure that his marriage with them upward, I gave the folio and the same subscription ID. Maybe, he could help mark the folio and subscription IDS differently? (I so myself and I remembered, as soon as it has been pointed out. Well! Can't see the forest for the trees sometimes).

    _01 added to the Folio Product ID and try again. Wish me luck!

    I found very good support Adobe's Gold.

    Kind regards

    Matt

  • V29 iOS app rejected because of the advertisingIdentifier

    Apple responded to my request for app v29 with a release indicating the application uses an advertisingIdentifier without including in-app ad functionality.


    "We found that your application uses iOS identifier for advertising but does not include the ad feature. This does not meet the terms of the developer program license agreement, such iOS required by the App Store Review Guidelines. »

    I never had the intention to pay anything whatsoever with the ad or advertisingIdentifier feature. I don't know how to remove this form identifying the container application. It is a feature that is activated by clicking on an option checkbox inside the application builder. I never had this problem with presentations previos version. V29 is this unique?

    Yes. It is a novelty of A29 and exposed through the API store/library custom. We are looking inside and to contact Apple. It nothing to you, a DPS customer, can do right now on this problem. This is the new behavior of Apple rejecting these applications. Go us to them and keep everyone informed.

  • App rejected because of "missing iOS integration."

    I received the following message when apple rejected my folio-app:

    We have found the following issues with the user interface of your application:

    -Do not integrate the features of iOS. For example, the Contact details should integrate with email, phone and other relevant applicable iOS features to your app concept.

    N ' had no integration of iOS.

    These examples to identify the types of problems found in your application, but don't represent these questions. Should carefully evaluate your application to respond to these types of problems.

    As it is completely non specific I don't know what to change to improve, and homologate.


    It's a unique edition of subscription.


    Thank you

    It is a typical Apple reaction when your simple editing application lacks interactivity. Have what type of content you filed? How much interaction is there? What kind of overlays were you using? How many pages long is your app SE?

    Neil

  • App rejected without content ipad 3

    I submitted my application to the apple store twice, twice rejected.

    They tell me

    "We found that your application exposes one or more bugs, when the review: iPad 3rd GEN running iOS 6.1 on both.

    Networks Wi - Fi and cellular, which is not in accordance with the App Store Review Guidelines.

    Specifically, your application does not include any content. »

    In my folio producer I have two versions of my publication.

    An iPhone version of size to 480 x 320

    and an ipad version of size 1024 x 768

    They both have the same product id, both are published.

    What I am doing wrong, why content will not appear for the 3rd gen iPad?

    Ipad 3 is not suitable content as does the phone? or is there something else I'm missing?

    Please help, urgent problem

    Thank you

    I talked to Josh and took care of this by telephone. ID title used and the account of the application (in this case master ID) are different - was the reason behind folios not appearing.

    Somehow, they were able to publish under their master ID folios, which should not have been in reality. At some details and will he sent to engineering for investigation

  • iPad App rejected

    I recently submitted an application designed in InDesign and then converted in an iPad using Adobe Digital Publishing Suite application. After a two-week assessment process we have been notified that the app was rejected for the following reason:

    2.21


    We found that your application is before a whole book and is therefore not appropriate for the App Store, as shown in the App Store Review Guidelines .


    Books should be submitted to the iBookstore. To work with Apple on the distribution of the iBookstore, first make sure that your content meets the following requirements:


    -The ISBN numbers for the titles that you want to distribute

    -Is in EPUB format, passing EpubCheck 1.0.5


    To get an ISBN for your content and learn more about ISBN numbers, please see the US Agency ISBN . Then complete theiTunes Connect app online.


    Visit aggregators iBookstore for more information on working with the iBookstore aggregators.

    This application is composed of several pictures and text. Any ideas how to get the app approved? Thanks in advance for any help you can provide.

    It is a common rejection of Apple. If all you did was to create a publication with text and images they will reject it that you should rather use iBooks author. You must add real interactivity to the publication, and should not be entered in a book when you submit it to us.

    Neil

Maybe you are looking for

  • Controller IDE - Code 39 driver

    Hello, my Satellite A210 played until the last few weeks (will not open anything, random blue screens, white screens random BSOD). I just found that my IDE controller driver is corrupted or missing. Can someone help or more information? Could be the

  • LawrJet M277dw: The LaserJet M277dw not automatic duplex of boot and copy?

    Hello: The LaserJet M277dw copy Auto-duplex, or should I flip the book being copied by hand for the copy on the other side. What about the 2-sided?Automatic or manual? Thank you DaleBr

  • I need to install silverlight

    I need to install silverlight

  • C:\cabs\win95-98-peut it be deleted?

    Hello I am running XP Pro Version 5.1 (Build 2600.xpsp_sp3_gdr.101209 - 1647: Service Pack 3) and am looking to get rid of unnecessary files. C:\cabs\win95-98 can be deleted? Thanks in advance, Bill B.

  • power icon

    The power icon is missing from the notification area in my installation of windows 8.   I tried to customize the notification area. The window for the filming of the icons or disable shows power as off.  But it is grayed out and I can't do altered to