Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8005857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:19:51+00:00 2026-06-04T17:19:51+00:00

I noticed that when a paired Bluetooth device has a name change, my Android

  • 0

I noticed that when a paired Bluetooth device has a name change, my Android device doesn’t always register that name change. It continues to display the old name of the device… This isn’t a problem for unpaired devices, so my natural guess is that Android caches the names of paired devices somewhere.

After looking around, I found that if I unpair the device and manually clear the cache stored in my Android’s “Bluetooth Share” app, this problem goes away. Of course, the problem will probably come back after I pair the device again to my Android.

TL;DR How do I force Android to always show the latest name of a Bluetooth device?

I heard something about the “fetchUuidsWithSdp” method, but I’m not sure how to use it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T17:19:54+00:00Added an answer on June 4, 2026 at 5:19 pm

    Yes, fetchUuidsWithSdp() is a good idea because, unlike getUuids() it forces the device to attempt to connect to the destination device and update it’s information about it.

    Official support for fetchUuidsWithSdp was just added in 4.0.3, but it was available before that using reflection.

    public static void startFetch( BluetoothDevice device ) {
        // Need to use reflection prior to API 15
        Class cl = null;
        try {
            cl = Class.forName("android.bluetooth.BluetoothDevice");
        } catch( ClassNotFoundException exc ) {
            Log.e(CTAG, "android.bluetooth.BluetoothDevice not found." );
        }
        if (null != cl) {
            Class[] param = {};
            Method method = null;
            try {
                method = cl.getMethod("fetchUuidsWithSdp", param);
            } catch( NoSuchMethodException exc ) {
                Log.e(CTAG, "fetchUuidsWithSdp not found." );
            }
            if (null != method) {
                Object[] args = {};
                try {
                    method.invoke(device, args);
                } catch (Exception exc) {
                    Log.e(CTAG, "Failed to invoke fetchUuidsWithSdp method." );
                }               
            }
        }
    }
    

    One would normally then register for android.bluetooth.device.action.UUID, but you might want to register for the name change action instead.

    Note that, if you do decide to register for the UUID action, it was misspelled prior to API 15 as “android.bleutooth.device.action.UUID” (the e and u in bluetooth are swapped).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I noticed that the Left property for TTabSheet in the TPageControl is always 4.
I noticed that there is one change about ASP.NET Routing. I cannot understand why
I noticed that my Designer.vb file of one of my forms has a lot
I noticed that various systems use various characters as the replacent for illegal ones
I noticed that on my Vista and XP machines, the automatic update is asking
I noticed that JavaScript's new Date() function is very smart in accepting dates in
I noticed that every time that I restart my computer I have to do
We noticed that when testNG test cases extend TestCase (JUnit) those tests start executing
I noticed that most scripts for e-mail validation do not use DNS information to
I noticed that the fact tables used in a cube were actually views. Infact

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.