Apple App Store requirement for ADF Mobile Apps

I got updates from Apple that detect deployed ADF Mobile ipa that sent to Apple iTunes Connect As
Missing recommended icon file - The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format.
Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format.
Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format.
Non-PIE Binary - The executable 'qe.app' is not a Position Independent Executable. Please ensure that your build settings are configured to create PIE executables. For more information, refer to Technical Q&A QA1788 - Building a Position Independent Executable
How to solved it, as it might facing with rejection from Apple and really urgent issue.

Hi,
has this been rejected by Apple or is it just a warning flagged? What is the version of ADF Mobile. Did you download and install the recent ADF mobile version. Try Help --> About --> Extensions and look for the "ADF Mobile Framework" version. Ensure its
ADF Mobile Framework    oracle.adf.mobile    11.1.2.4.39.64.51
If the version is below, then use Help--> Check for update to install the latest version.
Frank

Similar Messages

  • I get but not the app. store in my doc. App. store is not installed, how do I do it for each other? I have my apple software update.

    Hello,
    I get but not the app. store in my dock.
    App. store is not installed, how do I do it for each other?
    I have my apple software update.
    App.store app but after my update is not in the dock and system.
    Kees.

    Hi Kees ...
    Your profile indicates you are running Leopard v10.5.8
    You need to upgrade to Snow Leopard V10.6 in order to use the App Store. This is an "upgrade", not an "update".
    Make sure your Mac meets Snow Leopard's requirements here.
    You must have the minimum of v10.6.6 installed in order to access the App Store.
    You can purchase Snow Leopard here > Mac OS X 10.6 Snow Leopard - Apple Store

  • Iphone app store asks for old apple id when i try to update apps

    I recently reset my apple id. However when I try to update apps in my iphone it asks for my old apple id info. When I enter this in it states that the info is incorrect and needs to be reset. However when I download new apps the app store asks for my recently updated apple id info. When I have tried to delete the apps that need to be updated and buy them again, I was charged for the app. As a result I cannot update any apps. How can I fix this?

    You changed it wrong. You should have done it this way:
    How to change the name you use for your Apple ID
              http://support.apple.com/kb/HE40

  • How much interaction is required for magazine type apps?

    Hi All,
    I have just had my app rejected for the second time. Apple quoted that it lacks interaction as well as expected qualities such as in app purchases.
    After the first rejection i went through and redesigned the app, putting in lots of scrollable text boxes, slide Multi Object states, Pan and zoom, Aspect differences (ie horizontal vs vertical), Web content (twitter feeds, facebook etc), video, navto links from content pages, slideshows, pull out tabs, live links etc. Each article has at least 2-3 of these in it.
    My question is how much do i need to put in? I think any more would be doing it just for the sake of it. It is an educational magazine on Marine Aquarium keeping, underwater conservation etc and has a lot of textual information as well as photos. I thought that bu adding a few different interactive features in each article that apple would approve it as it is now a lot more than what you could do as a web based app.
    Also quoting that it lacks in app purchases as a reason for rejection? I always thought that this was a developers option, not a requirement. We only have 1 app presently in review and want to know how this goes before committing to more apps. Therefore i chose a single issue license where in app purchases are not allowed. If i had known that this is a requirement for magazine stlye apps, then we wouldnt have gone down this path to start with as the $1000's of dollars for a professional license is not economically viable for a small business....
    Has anyone else been through this?
    Im happy to share our published folio to anyone for feedback, as at the moment im really not sure what Apple are requiring.
    If you have had a magazine type app approved in the App store and can offer any advice, it would be greatly appreciated. Email me your adobe email and i will share the published folio for your opinions.
    I appreciate any advice.
    Cheers,
    Michael

    Hi, Michael-
    We are experiencing the same response with our first app attempt. The review response was along the lines of 'simple interaction, would not appeal to a wide audience, and better suited as an HTML5 web mobile app (which apple claims they do not approve for the app store; such as mobile apps with a phonegap shell, etc).
    After our response referring to this as a multi-publication shell to which we would make additional content available, their reply was opaque stating that apps are not approved due to the number of features and capabilities, but primarily those that provide an in-app experience you could not get anywhere else. I was under the assumption the DPS system was pretty good at offering a rich experience compared to the print world it is modeled after.
    I was very excited after testing the capabilities of DPS but now see that regardless of the investments/time you put into these publications apple still has the final word on whether it will be available to the masses in their 'curated' store.
    Best of luck to you, let us not give up.

  • Web service Invocation from ADF mobile app errors

    Mobile App Gurus,
    The webservice when invoked from ADF web app is working fine but, when invoked from Mobile APP errors in emulator with as below...
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication serivce is oracle.idm.mobile.SSOAuthenticationService
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication context status is IN_PROGRESS
    D/oracle.idm.mobile.OMAuthenticationServiceManager_retrieveAuthenticationContext
    ( 1096): Authentication context for the key appsnet5login.sysadmin retrieved from the credential store is : null
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication serivce is oracle.idm.mobile.BasicAuthenticationService
    D/oracle.idm.mobile.OMAuthenticationServiceManager_onPostExecute( 1096): Authentication context status is IN_PROGRESS
    D/oracle.idm.mobile.OMAuthenticationServiceManager_doInBackground( 1096): Invalid Authentication URL.
    Please can you let me know if I am missing some step in ADF Mobile App framework.
    Thanks,
    Shreedhar
    Edited by: sh**** on Apr 22, 2013 5:11 AM
    Edited by: sh**** on Apr 22, 2013 6:50 AM

    I don't know if you fixed it already by this time or not. But here is my findings anyway, to be able to inject the security header correctly in any SOA Gateway service, you need to have your Mobile Application Secured, meaning that there is a prompt for username/password when you open it.
    Then you will have to make a Proxy service for the webservice you are using from apps. And you must create it with a SOAP Handler also and write below sample code in the handler to inject the security header in the SOAP call. At last, you are going to deploy this proxy service to your Application Server.
    These steps were taken on a Glassfish server not Weblogic. I think there is an easy way for this if you are using Weblogic..
    Sample handler is below:
    package com.mobile.xxsoap;
    import java.util.HashSet;
    import java.util.Set;
    import javax.xml.namespace.QName;
    import javax.xml.soap.Name;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPFactory;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.ws.handler.MessageContext;
    import javax.xml.ws.handler.soap.SOAPHandler;
    import javax.xml.ws.handler.soap.SOAPMessageContext;
    public class CustomSOAPHandler implements SOAPHandler<SOAPMessageContext> {
        private static final String AUTH_PREFIX = "wsse";
        private static final String AUTH_NS =
            "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
        public boolean handleMessage(SOAPMessageContext context) {
            try {
                SOAPEnvelope envelope = context.getMessage().getSOAPPart().getEnvelope();
                SOAPFactory soapFactory = SOAPFactory.newInstance();
                SOAPElement wsSecHeaderElm = soapFactory.createElement("Security", AUTH_PREFIX, AUTH_NS);   
                SOAPElement userNameTokenElm = soapFactory.createElement("UsernameToken", AUTH_PREFIX, AUTH_NS);
                SOAPElement userNameElm = soapFactory.createElement("Username", AUTH_PREFIX, AUTH_NS);
                userNameElm.addTextNode("redsam");
                SOAPElement passwdElm = soapFactory.createElement("Password", AUTH_PREFIX, AUTH_NS);
                Name passwdTypeAttr = soapFactory.createName("Type");
                passwdElm.addAttribute(passwdTypeAttr,
                                       "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText");
                passwdElm.addTextNode("123456");
                userNameTokenElm.addChildElement(userNameElm);
                userNameTokenElm.addChildElement(passwdElm);
                wsSecHeaderElm.addChildElement(userNameTokenElm);
            } catch (Throwable e) {
                e.printStackTrace();
            return true;
        public Set<QName> getHeaders() {
            return new HashSet<QName>();
        public boolean handleFault(SOAPMessageContext messageContext) {
            return true;
        public void close(MessageContext context) {
    I hope it is clear now...
    Regards,
    Mohamed

  • My iPhone3GS running iOS5 has recently been reluctant to upgrade Apps. The App store asks for my password and then marks all the Apps as being updated. Often only one or none actually update. Usually I get a message saying "Unable to download application"

    My iPhone3GS running iOS5 has recently been reluctant to upgrade Apps. The App store asks for my password and then marks all the Apps as being updated. Often only one or none actually update. Usually I get a message saying "Unable to download application" and "<app> could not be downloaded at this time - Done or Retry".
    It's not an iTunes login / password issue because sometimes one or two of the Apps will download and the others stall with the blank progress bar. The internet connection is working fine in all other respects.
    Sometimes, many restarts later the downloads will complete. Is this a known bug? Is Apple working on it? Any fixes?

    My iPhone3GS running iOS5 has recently been reluctant to upgrade Apps. The App store asks for my password and then marks all the Apps as being updated. Often only one or none actually update. Usually I get a message saying "Unable to download application" and "<app> could not be downloaded at this time - Done or Retry".
    It's not an iTunes login / password issue because sometimes one or two of the Apps will download and the others stall with the blank progress bar. The internet connection is working fine in all other respects.
    Sometimes, many restarts later the downloads will complete. Is this a known bug? Is Apple working on it? Any fixes?

  • I am trying to update my software through the app store but for some reason an error occurs and will not allow me to do so

    I am trying to update my software through the app store but for some reason an error occurs and will not allow me to do so. And when i go online to log into my apple id account it states that there is an error. Can someone help me solve this issue, its annoying me?

    Apple’s having trouble with the iTunes Store servers right now. Wait for them to resolve the issue.
    (123935)

  • I recently purchased, from the APP store, Lion for use on my MacBook Pro.  I wish to upgrade my IMac to Lion also.  Do I need to make a 2nd purchase or will the single purchase suffice?  If the single purchase will suffice, how do I facilitate ?

    I recently purchased, from the APP store, Lion for use on my MacBook Pro.  To upgrade my IMac to Lion, need I make an additional purchase?  If not, how do I facilitate the IMac upgrade?

    No, you do not need to re purchase Lion. You can re download Lion on all your authorized Macs using the same Apple ID.
    How to re download apps from the Mac App Store:
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.

  • ADF-Mobile app will not rotate in iOS simulator or device

    We have been coding an ADF-Mobile app in JDeveloper and testing on both a Motorola tablet and an iPad.
    Both our application, as well as the demo "Deployment Successful" (found here: http://docs.oracle.com/cd/E18941_01/tutorials/MobileTutorial/jdtut_11r2_54_1.html) application rotate fine from portrait to landscape and back on the Motorola device, however, the same code will not rotate on an iPad.
    I understand that the device orientation functionality is controlled in the deployment profile. I have been successful with forcing my app to launch in landscape mode OR portrait mode (By deselecting both portrait settings or both landscape settings, respectively in my deployment profile) however, when I leave all 4 enabled, my app seems to be locked in right-side-up portrait mode (It will not even rotate between portrait modes)
    Has anyone experienced this issue with iOS devices and the rotation functionality, and if so, is there a workaround?
    Any help is appreciated
    Gord Taylor

    Hi,
    There is a known issue when you use Xcode 4.5 and iOS SDK 6 to compile your app - the app would not rotate correctly. If you use Xcode 4.4.1 and the associated SDK, then rotation will work fine on both iOS 5 and 6 devices.
    Xcode 4.5 certification should be coming soon - for now please try to use 4.4.
    If you are already using 4.4, please let me know and perhaps there are configuration issues.
    Thanks,
    Joe Huang

  • ADF Mobile App integration with webservices, connection refused error

    I created an ADF application for department search with business components and exposed this as a webservice. I can access the WSDL locally from a browser. Then created an ADF mobile application and deployed it to android emulator. I am able to deploy the application to emulator and I can see the app on Android emulator. When I try to search for any department, I am getting "cannot connect to localhost on port 7101 : connection refused". My server is started already and the port number is also correct. Did any one came across this issue before? Even the WSDL URL is not accessible from the browser of android emulator.
    Edited by: adf_forum on Nov 16, 2012 2:16 PM

    Hi,
    One more thing to keep in mind is that Android emulator is itself a network host, and localhost will likely loop back into itself, i.e. emulator. Please try to set up the WLS to listen on an actual IP address for your development machine, create your WS DC using this real IP address, and then try to deploy/run the app.
    If you need to retrofit your app with an new IP address, please keep in mind there are several places you would need to manually fix up, including the connections.xml file.
    In general, if the device emulator's browser cannot hit a web service, then the ADF Mobile app will also not be able to hit a web service.
    The most reliable way is to treat the emulator like an actual device, then work out your application's connection accordingly.
    Thanks,
    Joe Huang

  • HT204053 What do I do when the app store asks for a credit Card and I don't have one

    What do I do when the app store asks for a credit card and I don't have one.

    See the following link that discusses doing what you want:
    http://support.apple.com/kb/HT2534?viewlocale=en_US&locale=en_US

  • ı try to re-download my purchased apps app store asked for money from me again

    I try to re-download my purchased apps from app store. app store asked for money from me again

    you can go to expresslane.apple.com and select itunes>store>purchices, billing and redemption> select apple id account billing. it will ask you to tell more about the issue, type there what u typed here, if you can include song names you have tried, select your counrty and click continue, itll give you a few options, select email to contact itunes store department directly; the more info you can give them the faster itll be, like the media titles (or if available the order numbers in the recipt u get in ur email) if you choose call in option they should be able to contact itunes for you but its really just a middle man between you and itunes (no phone number for them) and they wont always contact them for you if you havent tried expresslane.apple.com yet; good luck!

  • Can't dwnload paid apps from the app store. Can download  free apps but not paid for apps. How do I fix this?

    Can't download paid apps from the app store. Can download free apps but not paid for apps. Anyone know what is wrong?

    If you're using a first generation iPod touch, it is up to date. The higher iOS versions require a newer model.
    (68010)

  • My Ipad 2 has tried to shot down now for 3 hours, just before I could not open Itunes and App Store but Email and other apps was working. them I tried to shot down but I have now for 3 hours black screen whit turning wheel. any I deas what too do?

    My Ipad 2 has tried to shot down now for 3 hours, just before I could not open Itunes and App Store but Email and other apps was working. them I tried to shot down but I have now for now for more that 3 hours black screen whit turning wheel. any I deas what too do

    See Here for
    iPad Basic Troubleshooting
    http://support.apple.com/kb/TS3274
    Unresponsive iPad
    http://support.apple.com/kb/TS3281

  • Why the App Store ask for sq.after using it for years and how do find the answers

    Why the App Store ask for sq.after using it for years and how do find the answers

    Reset security questions
    http://support.apple.com/kb/HT5312
    If you do not have a Rescue email, you need to contact apple support, they will guide you through the process of resetting your security questions.
    https://ssl.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Mac won't open any apps

    I turned on my MacBook pro today and whenever I click on anything, I get a rainbow wheel. And whenever I click on apps they just bounce and won't open. And sometimes it will just rainbow wheel on login and won't let me in. Basically it's impossible t

  • What is the best way to get CD quality audio in a video with fcpx.

    I've been using fcpx to do everything for my videos, but the sound was...below par especially for what I want to do. I'm looking for the most efficient way of doing thing. I've been trying to record the audio into garageband, edit the sound in there,

  • Flow-logic

    Hi! I need to create a logic in class to check the list pricing For that I ahve created a method with follwoing parameters IV_KNUMV     Importing     Type     KNUMV IV_KPOSN     Importing     Type     KPOSN RV_IS_LIST     Returning     Type     BOOLE

  • I got an iPhoto app update error message "There was an error in the App Store. Please try again later. (4)"

    Does anyone know what's up here? Thanks.

  • Solaris 10 SCSI

    I'm using sol 10 as scsi initiator and linux 2.4 as virtual target (four disks are registered with the virtual disk). Sol 10 sends the scsi command for report_lun and shows 4 devices but they are just replications of disk 0 on linux. all the scsi req