ANT build produces not working package with 3.5 AIR SDK

I used AIR SDK 3.1 and have ANT script to compile and package iPad(AdHoc for testing) application. I tried to switch to 3.5 SDK today but when I install *.ipa and launch on iPad it hangs at the spalsh screen.
I tried to make release build using Flash Builder UI and it worked. So the question is has anything changed in terms of packaging/compilation options?
Just in case attached my current ANT script:
<target name="Compilation" depends="Initialization">
     <mxmlc file="${main_class}" output="${swf_file}" locale="${LOCALE}"  static-rsls="false" accessible="false" configname="airmobile"
                optimize="true" actionscript-file-encoding="UTF-8" keep-generated-actionscript="false" static-link-runtime-shared-libraries="true"
               debug="${debug_mode}"  failonerror="true" fork="true"  maxmemory="1024m">
          <source-path path-element="${class_path}"/>
          <load-config filename="${FLEX_HOME}/frameworks/airmobile-config.xml"/>
          <load-config filename="${config_file}"></load-config>
          <library-path dir="${lib_path}" includes="*.swc" append="true"/>
     </mxmlc>
</target>
<target name="Packaging" depends="Compilation">
      <java jar="${ADT}" fork="true" failonerror="true">
          <arg value="-package"/>
          <arg value="-target"/>
          <arg value="ipa-test"/>
          <arg value="-provisioning-profile"/>
          <arg value="${ios_provisioning}"/>
          <arg value="-storetype"/>
          <arg value="pkcs12"/>
          <arg value="-keystore"/>
          <arg value="${ios_keystore}"/>
          <arg value="-storepass"/>
          <arg value="${ios_pass}"/>
          <arg value="${ipa_file}"/>
          <arg value="${app_descriptor}"/>
          <arg value="${swf_file}"/>
          <arg value="-C" />
          <arg value="${class_path}"/>
          <arg value="assets/icons"/>
          <arg value="-C" />
          <arg value="${release_path}"/>
          <arg value="Default-Portrait.png"/>
     </java>
</target>
Thanks

You may want to try using the settings used by Flash Builder to package the application, more details of which can be found at:http://helpx.adobe.com/x-productkb/multi/compilation-results-flex-builder-flex.html
Update your ANT script with these, and try again.
Please get back and tell if it resolved the issue and what change you had to made in your ANT script.
Thanks,
Neha

Similar Messages

  • App Builder produces "Not Executable" error with Strictly Typed VI Refs

    There is a very frustrating problem with the app builder in LV 8.0.1.  Certain VIs compile and run fine in labview, but the app builder
    refuses to make them into applications.
    The error message is very long and ends with something like "The VI is not
    executable".  Standard advice for this problem is to force LV to recompile
    everything you're building by either mass compiling or ctrl-shift clicking the
    run arrow, but this hasn't worked for me in two separate cases (completely
    different projects).
    It seems that this problem is caused by wiring a strictly typed VI reference to
    an invoke node with the FP.open method selected.  In both cases I resolved
    the issue by changing the Static VI Reference to be weakly typed (right-click
    the static vi reference and make sure "Strictly Typed VI Reference"
    is unchecked). After that, the project build successfully.
    This is very hard for a user to track down for several reasons:
     - The error message in the application builder does not give any
    indication as to what the real problem is
     - The app builder reports that the top-level VI is broken, even when the
    strictly typed reference and invoke node may occur in a sub VI
     - Nothing (that I can
    find at least) in the documentation suggests that strictly typed references
    won't work with the Open.FP method. 
    There is a page that says "some of the properties and methods do
    not work when you configure this function to output a strictly typed VI
    reference," but no indication is given of which methods fail
    Note that in one case I was also able to make the project
    build by deleting an instance of "IMAQ Create.vi" from the top-level
    VI.  I 
    have no explanation for this.
    Hopefully this post will save some other users the trouble
    of tracking this down and maybe even get NI to correct the issue for future
    versions.
    Adam Brewster

    Hello Adam,
    Thank you for sharing your experience and insight.  Your post was well thought-out and offered a
    good description of the problem as well as some possible workarounds.  I believe that the issue has been filed and
    is under investigation (3TU8T8V9).  Feel
    free to post back after the next LabVIEW release and inquire as to its status.
    Thanks again,  
    Travis M
    LabVIEW R&D
    National Instruments

  • Ant build script not working...

    Hi!
    I'm having problems using Ant to build a WLI-application in a HP-UX
    production environment. I exported the Ant buildscripts in Weblogic
    Integration (in NT) and made minor adjustments which do not change
    classpaths or anything for the taskdefs used. All of the builds I do for
    other parts of the app work just fine, but when compiling the processes
    (.jpd-files) I get the following error for each process:
    [webappbuild] DESCRIPTION: An I/O Exception occurred while attempting to
    write the deployment descriptors for Enterprise Java Beans. Error:
    Production rule file
    '/com/bea/wlw/runtime/core/bean/codegen/ejb-jar.template' not found.
    the "ejb-jar.template' file resides in the knex.jar file which is
    included in the classpath used for the build. Can anyone help me out
    here on this one? One other thing to mention is that when I build the
    application using Workshop in our development environment, there are no
    problems, even if we have switched from using the "IDE build" to using
    the Ant build even there....
    Here is the Antscript for the processes:
    <?xml version="1.0" encoding="UTF-8" ?>
    <project name="Web Application project build" default="build">
    <property environment="env" />
    <!-- Load local and user build preferences -->
    <property file="../build.properties"/> <!-- Component
    local -->
    <property file="${user.home}/build.properties"/> <!-- User local
    -->
    <!-- These properties are auto-set to match correct local values when
    executed within the IDE. -->
    <property name="project.local.directory"
    value="${app.local.directory}/PrimaVera" />
    <!--end auto properties -->
    <path id="task.classpath">
    <!-- External dependencies -->
    <fileset dir="${platformhome.local.directory}">
    <include name="javelin/lib/javelin.jar"/>
    <include name="common/lib/log4j.jar" />
    <include name="server/lib/knex.jar" />
    <include name="server/lib/xbean.jar" />
    <include name="server/lib/xqrl.jar" />
    <include name="server/lib/weblogic.jar"/>
    <include name="server/lib/wli.jar"/>
    <include name="server/lib/xmarshal.jar"/>
    </fileset>
    </path>
    <!-- WLI IDE Classpath -->
    <path id="ide.class.path">
    <pathelement location="${javalib.home}/lib/tools.jar"/>
    <pathelement location="${javalib.home}/jre/lib/rt.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/knex.jar"/>
    <pathelement
    location="${platformhome.local.directory}/common/lib/log4j.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/debugging.jar"/>
    <pathelement
    location="${platformhome.local.directory}/javelin/lib/javelin.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/wlw-lang.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/weblogic.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/webservices.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/webserviceclient.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/webserviceclient+ssl.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/wli.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/xbean.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/xmarshal.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/xqrl.jar"/>
    <pathelement
    location="${platformhome.local.directory}/server/lib/netui/netui-compiler.jar"/>
    <pathelement
    location="${app.local.directory}/APP-INF/lib/iaik_jce_full.jar"/>
    <pathelement
    location="${app.local.directory}/APP-INF/lib/iipax_shs_api.jar"/>
    <pathelement
    location="${app.local.directory}/APP-INF/lib/iipax_shs_sdk.jar"/>
    <pathelement
    location="${app.local.directory}/APP-INF/lib/PVDatabas.jar"/>
    <pathelement
    location="${app.local.directory}/APP-INF/lib/RIBrygga.jar"/>
    <pathelement
    location="${app.local.directory}/APP-INF/lib/Schemas.jar"/>
    <pathelement location="${app.local.directory}/APP-INF/lib/Vera.jar"/>
    <pathelement
    location="${app.local.directory}/APP-INF/lib/Gemensam.jar"/>
    <pathelement location="${app.local.directory}/APP-INF/lib/Vera.jar"/>
    </path>
    <taskdef name="webappbuild"
    classname="com.bea.wlw.runtime.core.ear.WebAppBuildTask"
    classpathref="task.classpath"/>
    <taskdef name="webappclean"
    classname="com.bea.wlw.runtime.core.ear.WebAppCleanTask"
    classpathref="task.classpath"/>
    <target name="build" description="Build this Web project">
    <property name="class.path" refid="ide.class.path"/>
    <antcall target="clean" />
    <webappbuild appdir="${app.local.directory}"
    appname="${appname}"
    servername="${servername}"
    domainroot="${domainroot}"
    verbose="false"
    nowarn="false"
    noerr="false"
    serverbuild="true">
    <Webapp name="${webappname}" contextroot="${webappcontextroot}"
    uri="${webappuri}" classpath="${class.path}"/>
    </webappbuild>
    </target>
    <!-- Clean resources -->
    <target name="clean" description="Clean this Web project">
    <webappclean appdir="${app.local.directory}"
    appname="${appname}"
    servername="${servername}"
    domainroot="${domainroot}"
    webappname="${webappname}"
    webappcontextroot="${webappcontextroot}"
    webappuri="${webappuri}" />
    </target>
    </project>
    Thankful for any help on this matter,
    /Eje Thorarinsson

    I found this post which gave me a clue as to what was happenning: http://forums.adobe.com/message/4653048
    The app id was wrong.

  • [svn:fx-trunk] 7473: Fix for 'ant asdoc' does not work.

    Revision: 7473
    Author:   [email protected]
    Date:     2009-06-01 12:09:26 -0700 (Mon, 01 Jun 2009)
    Log Message:
    Fix for 'ant asdoc' does not work.
    It should now work from both svn and package zip.
    Bugs: SDK-15306
    QE Notes: None.
    Doc Notes: None.
    tests: checkintests
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15306
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.xml

  • Build is not working in SAP NWDS version 7.0.09

    Suddenly the build is not working for my SAP NWDS version 7.0.09. It used to work fine before.
    When you create a DC and do a Development Component --> build . nothing is happening. In the
    General user output view, nothing is printed also.. I think the built is not actually happening now. So I tried uninstalling the NWDS and installing again. I also tried changing the default workspace. But still the problem do exist. what can be the possible reasons for this ? Please help.. Your valuable answers will be highly appreciated.

    Hi Garcia,
    I have checked with the Network team who manages Exchange server and they have mentioned that it is bouncing back from our CRM host with the error as below,
    said: 553 5.1.8 <[email protected]>... Domain of sender address
        [email protected] does not exist (in reply to MAIL FROM command)
    Regards,
    Arpit

  • Order by in MATERIALIZED VIEW not work successfully with first column (ID)

    Dears,
    I am trying to create a Materialized View as below:
    CREATE MATERIALIZED VIEW HR.MV_EMP
    PCTFREE 10
    MAXTRANS 255
    TABLESPACE users
    STORAGE (
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    BUILD IMMEDIATE
    REFRESH ON DEMAND
    AS
    SELECT *
    FROM employees
    where rownum < 5000 order by employee_id desc ;But while querying the MATERIALIZED VIEW, it did not work successfully as the data did not appear in the accurate order.
    I tried to create the same MATERIALIZED VIEW but order by another column (Column Date), it worked successfully and the data appeared in the accurate order.
    It means that MATERIALIZED VIEW not work successfully with the first column (id).
    Can you please help me in this ?
    Thanks & regards,,

    A few pointers :
    1. As has been pointed out, the ROWNUM has been incorrectly placed. ROWNUM values are assigned as rows are fetched from the source before the ORDER BY. You need to ORDER BY first (in a SubQuery) and then ROWNUM afterwards (outside the SubQuery).
    2. I wonder why you want only the last 5000 EMPLOYEE_IDs. What if Employee_ID 1 is still an active employee (he is the founder, first employee and CEO ?). There could be very many "low" EMPLOYEE_IDs that are still active.
    3. Logically I would expect some filter other than the ROWNUM ... ORDER BY to be used to select candidate rows. Then, an ORDER BY in the CREATE query would be unnecessary.
    4. When querying the Materialized View you must explicitly ORDER BY (irrespective of whether you did or did not do an ORDER BY in the CREATE ...)
    5. How do you expect to refresh the MV ? Will it always be a COMPLETE Refresh ? Remember that your "5000 employees" filter would likely exclude older employees at the next refresh. If you use some other filter, it should be consistent across all refreshs.
    Hemant K Chitale

  • Is it possible to build a captive runtime package with native extension?

    Hi. Now I try to build a captive runtime package with one native extension file(ANE) for Windows.
    I use Flash Builder 4.6 Premium and try to export release build.
    But Flash Builder warns that captive runtime can not bundle ane file.
    So I can not build package.
    Official document seems that captive runtime  supports native extensions.
    Does anyone know about?

    Hi. Now I try to build a captive runtime package with one native extension file(ANE) for Windows.
    I use Flash Builder 4.6 Premium and try to export release build.
    But Flash Builder warns that captive runtime can not bundle ane file.
    So I can not build package.
    Official document seems that captive runtime  supports native extensions.
    Does anyone know about?

  • I am new to xCode and SDK Disks. My Interface Builder will not work and 'quit's unexpecteldy'. What can I do? I really want to create an applicaiton. Thanks

    Hi, I am a new user to xCode and just recently downloaded a SDK Disk image and also an older version of xCode from the Apple Developer site. I opened the 'Interface Builder' for the first time and it worked. Next, when I tried to open it again (with and without the xCode 'Mainmenu.xib' attachment file from xCode) it kept showing the message "it quit unexpectedly".
    I need to create an application for a project I am working on. If anyone who can resolve my problem of why the Interface Builder is not working, that will be great.
    If you need additional details (like which versions etc.) please ask, for I am desperate to find an adequate solution to this problem.
    Thanks.

    If you need additional details (like which versions etc.) please ask, for I am desperate to find an adequate solution to this problem.
    Without intending any disrespect, if you had suspected these would be questions and if you're in a hurry for an answer, then why did you exclude the information?  And yes, knowing the Mac OS X version (preferably Mac OS X 10.5.8 or 10.6.7) , as well as the Xcode version might shed some light on this.  Might.  And I'll presume there's a specific reason you downloaded what I will assume is an Xcode3 version.
    Was this an existing Xcode project, or did you start with a new project here?  If it's an existing project, it could well have a corruption or an incompatibility.
    Initially, I'd probably start with a new project, and load in newly-copied source files.  On the off chance the project is corrupted.
    Failing that, I'd deinstall Xcode using the documented procedures, and would then reload it.  If there was an old version of Xcode around on the system, sometimes wonky stuff can happen with an installation.
    And FWIW, the Apple Developer Forums and the Apple mailing lists tend to see far more developer-related traffic than do these particular forums.  (There's an Xcode users' mailing list around which sees regular traffic, too.)

  • Shape Builder tool not working on shapes in a clipping mask

    Hello again,
    Why is the Shape Builder Tool don't work on shapes inside a Clipping Mask? The Pathfinder does work but for the Shape Builder Tool: NADA!
    Thank's for answering,
    Lindberg

    Hi,
    Thank you for answering. No it will work correctly. The Pathfinder work inside a clipping path and in any situation but not the Shape Builder Tool. Unless this is normal, I think that the specialist at Adobe should have a look at this annoying behavior and try to release an upgrade with this behavior corrected in a near futur.
    Thank’s again for answering,
    Robert Marchand
    [email protected] <mailto:[email protected]>
    Le 8 avr. 2015 à 10:41AM, Larry G. Schneider <[email protected]> a écrit :
    Shape Builder tool not working on shapes in a clipping mask
    created by Larry G. Schneider <https://forums.adobe.com/people/LarryG.Schneider> in Illustrator - View the full discussion <https://forums.adobe.com/message/7418340#7418340>
    If you release the Clipping Mask and try the Shape Builder tool then, does it still balk at making the shape?
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7418340#7418340 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7418340#7418340
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Illustrator by email <mailto:[email protected]m> or at Adobe Community <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=14&container=33 67>
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624 <https://forums.adobe.com/thread/1516624>.

  • Remote not working properly with Apple TV...sporadic fuctioning

    Hello,
    I have no idea what caused this to happen, but both my remotes (I have one from my MacBook Pro and one from my AppleTV) seem to not work properly with AppleTV. It sometimes works but it is extremely frustrating as it only registers about 1 out of every 10-20 clicks then continues to remember the previous clicks therefore making it essentially impossible to select the desired menu/item. Basically it just seems like it's out of control!
    I tested whether it was the remote or AppleTV that was causing the problem by running Front Row on my MacBook Pro and both remotes seem to navigate Front Row perfectly fine. They both act the same way with AppleTV, whether they are paired or not. It seems as though something happened with my AppleTV. This problem occurred randomly, with no specific cause I can think of.
    Please let me know if any of you have ever experienced this problem and what your solution was, if any!
    I have tried restoring to factory conditions, resetting settings, ran diagnostics, unplugged and replugged it, and nothing seems to be working!
    Oh, and I just replaced the battery on one and have tried swapping batteries, etc.
    HELP PLEASE!
    Thank you,
    Travis

    The menus have never been as responsive as they used to since the 2.0 update in my opinion - basically AppleTV seems to cache/buffer remote click if it is busy or perhaps waiting for something to stream from itunes, and when resources become available it suddenly executes all command rapidly which makes it behave wildly in menus.
    Usually happens I find after restarting the unit or if streaming drives have gone in to power saving modes and there's a delay while they wake up to feed the AppleTV.

  • HP computer will not work properly with an HP printer

    I have the following two items that I am trying to use together:
     - HP 23" TouchSmart Desktop, T6500 2.1GHz 4GB DDR3, 500GB HDD (Windows 7)
     - HP OfficeJet 6500 Multi-Function Printer/Scanner/Fax
    When I try to scan to Adobe Acrobat Professional 9.0, the document goes through the scanner, however the dialog box that I would expect (e.g. "Next Page" or "Done") never shows up.  At this point, the system is unresponsive with respect to Adobe or the printer.
    I suspect that it is waiting for the input from the dialog box that never showed up.  I tried to move the other windows to see if the dialog opened in the background, however I am not able to select any of them (they remain frozen).
    I contacted HP Support, only to have them tell me it must be the driver, and I have an "old" printer.  (I did not realize that a 9 month old printer was considered "old").  I have tried all of the possible drivers that are available (original disk, downloads, other downloads from HP tech support), none of these resolves the problem.
    In any case, they were unable to resolve the problem of having an HP computer work properly with an HP printer.  (The printing function seems to work, just very slowly).
    Has anyone else heard of this?  Is there a resolution?

    Update: I am still looking for a solution to this problem - the scanning portion of the Multi-function OfficeJet 6500 does not work properly with the HP TouchSmart computer.
    I have not been able to find anyone in HP that can tell me when (or if) new drivers will be released for this printer.
    I decided to investigate upgrading to a newer version of printer since HP told me the 9 month old printer I have was "obsolete", only to find that the identical printer is still on sale in many stores.  Hmmm....
    I feel like I am getting the run-around from HP.
    I have since tried several more driver/software combinations, but every time I have the same problem (as described in the previous post).
    If anyone has any ideas or suggestions, I would be most happy to hear them.
    Thank you.

  • Help, web cam is not working properly with win vista

    Hii.. my web cam is not working properly with win vista..even if the icon appears bt it does nt start.. its
    lenovo easy capture 2.5...so if u cud suggest me anything...
    Moderator note; subject edited

    re-install drivers and try again. ( also easy capture )

  • Since I downloaded the upgraded software, my charger that came with my phone says "this cable or accessory is not certified and may not work reliably with this iphone"  It worked before but now it doesn't...I don't think I should have to buy a new one...

    since I upgraded to the new operating system my charger no longer works...
    It says"this cable or accessory is not certified and may not work reliably with this iPhone"

    Try checking your cable socket/lightning cable for dirt, grime, pocket lint, etc. I could not find the solution to this issue myself and after much searching I found someone stating that cleaning this out helped them immensely.
    After taking a wooden toothpick (making sure the phone was OFF first) and gently clearing out the edges and inside of the lightning socket this went away.) It is worth noting that I had a significant amount of dust or lint buildup along the edge rails which I think was causing the iphone to believe it was plugged into something when it was not.
    Try it and see, ensure you are very careful and do not use any conductive tools to clean the area in question. Compressed air also does wonders here.

  • HT1476 upgraded my IPOD 5 to iOS 7.0.2 and will not charge battery. when plugged in gives message "This cable or accessory is not certified and may not work reliably with this IPOD".

    Just Upgraded my IPOD 5 to iOS 7.0.2 and it will not charge the battery anymore.
    When I plug it in, it now gives the message "This cable or accessory is not certified and may not work reliably with this IPOD".
    Anyone else have this issue after they upgraded the iOS system?
    Thanks,

    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar 

  • Klipsch S4i headphones do not work properly with iPhone 5

    I've got a really weird issue with my iPhone 5.  I previously purchased an iPod Nano 16GB as well as Klipsch S4i headphones.  The headphones has a console with 3 buttons.  The topmost button is to increase volume and conversely, the lowest button decreases volume.  No problem with either of these buttons.
    The center button is operated by the number of times you push it.  One push pauses the track (song) being played.  A second push resumes play.  Two pushes in a row causes the iPod to advance to the next track in the playlist.  Three pushes in a row cause the iPod to go back to the beginning of the track being played.  If you push three times consecutively then you go back to the track prior to the track which is being played, and so forth depending upon the number of times you keep pushing three times.  With me so far?  So the S4i console works just fine with the iPod.
    However, the S4i console does not work well with the iPhone 5.  I went to the Apple store this evening and they restored (reset?) the iPhone 5.  I then restored the data to it from my computer once I got home.  So the state of the S4i console is this.  Push the center button once and it pauses.  That is okay.  Push the center button again and it resumes play.  Still good.
    Push the center button twice in a row and it sometimes advances to the next track.  Not always unless you are very fast at depressing the button.  Push the button three times and it may or may not go back to the beginning of the track.  This seems to be a function of 'how fast' you are pushing the button.  Literally, you have to be like Quick Draw McGraw on the darn button.  That is not the case with the iPod Nano.
    Pushing the button multiple times does not necessarily take you forward to the next track or at the start of the one playing or to the track before.  While typing this, I managed to get the center button to work better so I thought maybe it is going out.  But I don't experience that same problem with the iPod Nano and it was not a problem on the two tech's iPods/iPhones at the Apple store when tried with my S4i headphones attached.  So I don't think there is any issue with the center button on the S4i's console or those headphones in general.  I also don't think it is a hardware issue as the headphone jack does not seem loose.  I have only been using my iPhone 5 for about a week.
    In fact, I was able to get the advance function as well as the reverse function for going back to the beginning of the track to work by depressing the center button quickly but if you want to jump back a track then you really have to hit it quickly multiple times.  In trying to go back to the beginning of a track or jumping back another or multiple tracks, then if the track you went back to the beginning of begins to play then the pushing three times maneuver does not work.  I have no clue what is going on other than it has got to be a programming issue with the iPhone 5.  Call me a cynic but I have my doubts that exchanging my new iPhone 5 is going to make a difference.
    Moreover, on a number of occasions (more than 5) while playing tunes on the iPhone 5, it suddenly and randomly stops.  This happened before the device was restored this evening and I have not had the opportunity to really test it out besides seeing if there is still an issue with the S4i headphones and the iPhone 5.  I swear I did not touch or brush against the screen or depress any buttons when this occurred.
    Has anyone got an idea what might be the problem?  If so, I would be grateful if you could clue me in here.

    Maybe it's a safty issue. You should not be able to watch movies while driveing anyway. Does it work when the car is in netral or park and the emergency brake is on. In my lexus thats the only way the front DVD will work.

Maybe you are looking for

  • Itunes/Iphone 4s replaced - Music, voice memos and playlist missing and or deleted

    Backed up old phone, had phone replaced from Apple Store.  they told me to restore from back up at home computer.  My playlists are gone, my voice memos are all gone, losing memos and pictures on the phone.  Can't play any music on the computer eithe

  • My Toshiba L305 - Both Buttons Broken (AGAIN) - TOSHIBA DOES NOT CARE ABOUT THEIR CUSTOMERS

    So my left button broke (i didn't do anything) and so since it was under warranty, I was directed to a local authorized repair shop and they had to order the whole new keyboard that includes the little piece of junk plastic piece underneath the butto

  • Lost settings OS X.4

    I ignorantly moved my User and Library folders recenty, and as a result have lost all of my previous settings. Many programs have become uninstalled, and much of the computer is back to factory settings. Is there a way to restore my previous settings

  • HT1805 password restriction

    i dont make this password how i can get it?

  • Q on Solaris 11.2 DNS Client

    Hi All, Pls note that the mailq command is found hangup whenever the DNS Client is being enabled in our Solaris 11.2 server.  So, do anyone have any clue on this behavior? Thanks & Regards