Problems Using iPhone with Audi Bluetooth Kit

I have several problems using the iPhone with the factory-installed bluetooth car kit that came with my '08 Audi A4.
(1) I can not download my contacts from the iPhone to the car's built-in phone book. Thus, I can't see the names of incoming callers, as there is no way to enter text into the car's phone book.
(2) I can not answer calls, or end calls, by pushing the correct button the on the steering wheel. So, after I initiate a call and finish the conversation, pushing the disconnect button has no effect. I have to push "end call" directly on the iPhone. When a call comes in, I can't answer by pushing the correct button on the wheel. I must answer call directly on the iPhone.
Anyone else having these problems? Any suggestions for fixing this?

firstly, we have an brand new A4, Audi have said they can pair some 3G phones and not pair some.
Apple have refused to acknowledge the problem, but have now said their is a new update out this month which should address any problems.
This would make sense as our friendly guy at audi said to me, the 3G phones he has paired and uploaded phone books for customers, he couldn't tell what version of the iphone3g they had, so if it was an earlier version it would pair, and the later versions won't.
also, there is now a 3G cable for the ipod connection via MMi, which works perfectly !
so while we can't get address books for now, it will come.
the other work around is, take an old nokia/ecricsson phone, sync it to your mac and upload your contacts, then pair to audi, hey presto you have your mac contacts on the audi.

Similar Messages

  • Using iPhone with Pontiac GTO - 2004-2006 with Holden Bluetooth Car Kit

    I have a 2004 Pontiac GTO with a Holden Bluetooth Car Kit. I can pair the phone with the bluetooth kit but I can't activate the device when I receive or place a call. My previous phone (Motorola RAZR) had no issues. Has anyone had the same problem and been able to solve it?

    I just sold my Motorola RF-850 that was hooked up to my GTO today because it wasn't working with my IPhone.
    I can't believe you paid for the Holden one.
    Anyway good luck.
    AcePilot

  • When using iPhone with Ford automobiles' Sync, the connection drops each time the ignition is shut off. In order to restore, the bluetooth must be turned off on the iphone, then restarted. Any suggestions?

    When using iPhone with Ford Automobiles' SYNC, the connection drops each time the ignition is shut off. To restore, you must turn off the bluetooth on iPhone, then restart each time. Any suggestions?

    There is an update avaialbe for Ford systems to correct bluetooth problems. You need to update your system.

  • I have a used Iphone with someone elses email on it for itunes, how do i remove it and put my account there

    I have a used Iphone with someone elses email on it for itunes, how do i remove it and put my account there
    It is an Iphone 4

    If you go to settings- store - click on the ID and sign out. Then you can put in your apple id.

  • I am using Iphone with windows. I have draged photos from my computer into Iphone in the past, but cant seem to do it now. How do I move photos from my pc to my iphone without deleting photos that are on the phone.

    I am using Iphone with windows. I have draged photos from my computer into Iphone in the past, but cant seem to do it now. How do I move photos from my pc to my iphone without deleting photos that are on the phone.

    You cannot drag pics from computer to iphone.  This has never been a feature of iphone.
    You sync them as you would anything esle.
    You select photos from the photos tab.  Whatever is selected will be on your iphone.  Anything not selected will not be. Make sure that everything you want on your iphone is selected, then sync.

  • Problem Using Multiple With Statements

    I'm having a problem using multiple WITH statements. Oracle seems to be expecting a SELECT statement after the first one. I need two in order to reference stuff from the second one in another query.
    Here's my code:
    <code>
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy)
    /*Use terms from calculate_terms to generate attendance periods*/
    WITH gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    SELECT *
    FROM gen_attn_terms
    <code>
    I get ORA-00928: missing SELECT keyword error. What could be the problem?

    You can just separate them with a comma:
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy),
    /*Use terms from calculate_terms to generate attendance periods*/
    gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    )Not tested because there are no scripts.

  • Problem using Toplink with JUnit

    Hi,
    I have a problem using Toplink with JUnit. Method under test is very simple: it use a static EntityManager object to open a transaction and persists data to db. When I invoke the method from a test method, it gives me the exception:
    java.lang.AssertionError
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.computePURootURL(PersistenceUnitProcessor.java:248)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:232)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:216)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initialize(JavaSECMPInitializer.java:239)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initializeFromMain(JavaSECMPInitializer.java:278)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.getJavaSECMPInitializer(JavaSECMPInitializer.java:81)
         at oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider.createEntityManagerFactory(EntityManagerFactoryProvider.java:119)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:60)
         at it.valerio.electromanager.model.EntityFacade.<clinit>(EntityFacade.java:12)
         at it.valerio.electromanager.business.ClienteBiz.insertIntoDatabase(ClienteBiz.java:36)
         at it.valerio.electromanager.test.model.ClienteTest.insertDBTest(ClienteTest.java:30)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99)
         at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
         at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
         at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:66)
         at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
         at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
         at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
    Where is the problem???
    Regards,
    Valerio

    EntityFacade class is very simple and it uses a static EntityManager object. Here the code:
    public class EntityFacade {
         private static EntityManager em = Persistence.createEntityManagerFactory("ElectroManager").createEntityManager();
         private static Logger logger=Logger.getLogger(EntityFacade.class);
         public static void insertCliente(Cliente c)
              logger.debug("Inserisco cliente nel db: " + c);
              em.getTransaction().begin();
              c.setId(getNextIdForTable("Cliente"));
              em.persist(c);
              em.getTransaction().commit();
    If I call the method from inside a main it works well, so I think the problem is not the classpath neither the URL in the persistence.xml. However the URL is:
    <property name="toplink.jdbc.url" value="jdbc:derby:c:/programmi/ElectroManager/db/electroManager"/>
    I use the latest build version of TopLink.
    Thanks.

  • Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Hi .
    Apple no longer supports Safari for Windows if that's what you are asking >  Apple apparently kills Windows PC support in Safari 6.0
    Microsoft has not written IE for Safari for many years.

  • Problem using ViewObject with bc4j:table

    Hello !!
    This is the query of my ViewObject:
    select * from speiseplan order by jahr desc, kw desc;
    and everything works fine in the BC4J tester:
    jahr kw
    2003 52
    2003 7
    2003 3
    2002 51
    But in my uix page the rows are not correctly sorted:
    jahr kw
    2003 3
    2003 7
    2003 52
    2002 51
    What's going wrong here?
    Thanks for your help.
    Regards,
    Mareike

    Duplicate post.
    Original problem using ViewObject with <bc4j:table>

  • How can i send files from my iphone 4s to another iphone with my bluetooth?

    how can i send files from my iphone 4s to another iphone with my bluetooth?

    You can't.  That's not a feature of the iPhone.
    There's is an app called Bump that will let you transfer contacts and photos.

  • Using iPhone with portable players meant for iPod

    Is it supported to use iPhone with stereo players meant for iPod? (Bose/Klipsch)
    I put my iPhone in the dock of my Klipsch player that I listen to my iPod with and immediately it screeched feedback through the speakers. Should I just assume that iPhone isn't compatible with these types of players?

    The screeching is GSM interference/feedback. If you wanted to use the iphone with the speakers, try placing it in airplane mode first. That will keep the phone features turned off and keep the interference from happening. On the downside, you won't be able to receive phone calls during that time.
    I would think that they make "supported" speakers, but pretty much the only difference would be that the speakers would be shielded to keep the feedback from happening.

  • Using iPhone with Linux?

    Does anybody know if there's a sensible way to use iPhone with Linux? I really like the look of the iPhone 3G S, but since I run Ubuntu it looks like I've got no way to really use it.
    Apart from the whole iTunes, Apple Store & Firmware updates issue, I've got a bunch of MP3's that I'd want to be able to transfer onto the phone to play them. Is there any way to do that from Linux?

    I've tried Wine with iTunes, but it hasn't worked. QuickTime will install, but that's it (besides, I've had loads of troubles with iTunes on Windows). Consequently, as I'm on the Linux side of my computer all the time, I never really update my podcasts, making my iPhone little different from a regular mobile phone (which in Japan has music players already built into them).
    I dare say, consequently, if my iPhone is lost, stolen, or damaged, I won't be replacing it with another iPhone.

  • Hello, I live in the Netherlands and my friend is going to bring me a MAC and an Iphone. I was just wondering is there international warranty? Other question is that can I use Iphone with any simcard that I want? Thanks in advance!

    Hello, I live in the Netherlands and my friend is going to bring me a MAC and an Iphone. I was just wondering is there international warranty? Other question is that can I use Iphone with any simcard that I want? Thanks in advance!

    There is an international warranty on the Mac, but not on the iPhone...iPhone warranties are tied to the country of purchase.  Iphone 5s are currently only available in the US tied to a carrier, you cannot use another nano-sim card in them.

  • HT204389 can i use siri with my bluetooth?

    Can I use Siri with my bluetooth, such as telling it to answer an incoming call or to dial someone?  what about asking Siri to find the nearest gas station type of question?

    Then I must be doing something wrong!  I have a plantronics bt; when i have a call coming in, i hear 'do you want to answer or ignore?'  I answer by just speaking and it does not hear me.  I have tried it in my car and in my home, as well as when i am walking the dog. 
    any suggestions??

  • Problems using iCloud with Mountain Lion on iMac8,1

    problems using iCloud with Mountain Lion on iMac8,1 - about 5J old - iMac gets slower and slower - total free memory is used in some minutes - no more reaction on input

    Download > http://codykrieger.com/gfxCardStatus Open it and select Integrated Only. It's a bug with NVIDIA graphic cards

Maybe you are looking for

  • Database is mounted automaticaly, but doesn't open

    Hello everybody! Please help!!! I have Oracle 8.1 installed on Win2000. When I restart the PC, the database is mounted automaticaly, but doesn't open. I have to open it manually every time I restart the PC. How can I solve this problem?

  • No Color in Printed Documents

    Greetings I am running OS 10.1 with Quark 4 installed on the classic side In the past I have printed out business cards with blue and black type, using Lucinda Handwriting and Skia fonts. Today I went to print more, and not only is the skia font gone

  • Chart setup issue

    I have to make a chart that will show sales for item types for months as follows. The vertical will be some financial levels, that are hard coded. $100,000 $20,000 $10,000 $1000                  Total Apples      Total Oranges     Total Bannanas Marc

  • Movement type for customer supplied packing material returns

    Hi,      The scenario is like this,customer will give the packing material to the company.Company does the service required  &  return that packing material to customer.Presently we are using 624V movement type can you suggest some other movement typ

  • Restoring IPod When Not Recognized in ITunes

    On my MacBook, the Ipod icon shows up on the Desktop and in Finder but not in ITunes. The battery is charged. I can play the items on the IPod, and it appears to work normally except for the recognition problem. Plugging it into the computer even ope