• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Unable to boot into recovery

Hello Jon Wan Obi, did you find a solution? I'm having the same problem here with a Nokia G10
can you get into recovery? what happened to the phone? did you do something? was this a random event? what exactly is your problem? can the phone boot up?

just remember, the more details we get, the better we can help.

the op posted this in May 23rd and was last seen on May 25th. has not been back since, so don't hold your breathe too long as i doubt he will come back and answer you......just saying.

Help Get into a locked Nokia 1.4 (Android 10)

i HAVE the same nokia but I tried all recovery options to boot it in recovery mode and it failed. is there some kind of security in the boot loader that cannot allow this operation. I reallty need help
What exactly happens when you try? Does it boot normally (like the OP's phone did), or into some other mode that doesn't let you access recovery? Your problem, the OP's and the person who replied to you's might be completely different things, so we need more information to know what's happening and maybe be able to help.

New Android Features - Google

Android is announcing new features to help you improve productivity, connectivity and individuality as you go about your day-to-day life.

  • With WhatsApp now available on your Wear OS smartwatch, you can securely send and receive messages, answer calls, and keep up with chats without having to get out of your phone.
  • Find new places, place information, and directions on your smartwatch.
  • The Assistant At a Glance widget uses AI to bring you helpful information like high-precision weather alerts, dynamic travel updates and upcoming event reminders on your home screen — right when you need them.
  • Image Q&A uses AI to generate image descriptions and answer follow-up questions that you can ask using your voice or typing. Use it on everything from images on social media to your photo gallery.
  • You can now hear your Fitbit or Google Fit data — like hours slept, sleep start time, and step count — in your personal Routines to help you stay on top of your wellness goals.
  • When Gmail detects you’ve received an email in a foreign language, you’ll be prompted to translate it to your preferred language, right from the mobile app.
  • Easily take calls on-the-go with a simplified mobile experience.
  • AI curation organizes your photos so you can revisit special moments.
  • Use effects to add some flair to the people or places in your frame.
  • oon, digitize and store your everyday tickets and passes for easy access.
  • Your Android device can now automatically detect and notify you of unfamiliar tracking devices (like Bluetooth tracker tags) moving with you, so you can take action to locate and disable them.
  • React faster with early earthquake alerts, available in 95+ countries.
  • Android Auto behind the wheel, Zoom and Webex are headed your way. With either app, you'll be able to start and join conference calls (audio only) and check your meeting schedules. Using Android Auto, you can mute your microphone when necessary and end the call when it's time to go.
  • New feature is a photo import for Google Wallet passes. With this one, you can add passes with barcodes or QR codes to Google Wallet by snapping a picture of them.
Source:- Stay productive and connected with these new Android features

Help Help with Xperia companion

Help I used Xperia companion but it say to allow data access but can't enable it
can you be more specific? what phone do you have? and where does it ask you about data access? on the phone or computer? can you explain in more details on what is going on? why were you using the xperia companion? were you trying to update the phone? or repair it? if repair it, what happened before this?

just remember, the more details you give us, the better we can help you.

Samsung Messages app - exploit/security risk?

Hi, I wasn't sure if the scammers are spoofing a real person's number, so in case the number belonged to a real unrelated person I didn't want to plaster it on the Internet.

I've gotten plenty of spam texts before, but this was the first one where there wasn't actually a text, just the number showing up in my text message inbox.
thats a good point.

yeah just blocks those or get a better spam blocker.

Apps Characteristics of an Android App Development Framework

An Android app development framework should offer several key characteristics. It must support programming languages like Java and Kotlin, provide tools for UI design and layout, offer access to Android APIs, facilitate testing and debugging, and enable efficient app packaging and distribution. Additionally, it should have an active community, regular updates, and compatibility with various Android versions, ensuring developers can create robust, responsive, and up-to-date mobile applications.

pre alarm tone plays before chosen alarm song starts

To remove the loud default alarm tone before your chosen song in the Android Clock app, open the Clock app, edit your alarm, and select "None" or "Silent" for the alarm tone. This will silence the default sound, allowing your chosen song to play without interruption.
hmm I'm not seeing a separate alarm tone from the ringtone. And when I click on ringtone there's no "silent" or "none" option. There's an option to turn on vibrate, as seen in the screenshots above

Help Can someone tell me if these Bluetooth services are normal even when I have it off

These are the services you use only when Bluetooth is On, for example using headphones via Bluetooth, having calls from earphones via Bluetooth,
Provides the public APIs to control the Bluetooth HID Device profile, BluetoothOppService is a service that provides Bluetooth connectivity for your car and so on.

If you turn off your Bluetooth, it simply means you are not able to access these functions. In other words, Make Bluetooth enabled/disabled as per your need.

kotlin/jetpack search list

I am looking for some advice on an app I have been developing over the last couple months. In an abstract explanation, the app's main screen (MainScreen()) shows items that the user has added. There is an add button which loads an add screen (AddScreen()) which by default shows all possible items that can be added. I have a search text field with a filter list underneath and have implemented some logic that has them work together to only show items that match both the search and filter criteria.

Currently, I am using just a regular mutable list to hold items that should be displayed. If there's nothing in the search text field and no filters are selected than we just assign the entire list (defined in a view model) to the regular mutable list in AddScreen()

Code:
val resultsList = mutableListOf<whatever>()
...
if (dontFilter && dontSearch)
    resultsList = viewmodel.itemMap.values.toMutableList()
else {
    // do search/filter logic
    resultsList.add(whateverItem)
}
LazyColumn(items = resultsList) {
...
}

the variables that are associated with the search text field (onValueChange) and filters (onClick) are all state variables but should the resultsList be a state variable defined in the view model as well?

I have a random bug that I am trying to find but cannot seem to reproduce when I try. It may have something to do with process death but after I have added an item from AddScreen and then click add to load AddScreen again, the list sometimes does not show all possible items (all of ItemMap.values in above example), even though the search text field and filters have been cleared.

I need to pay more attention to whether this happens after I am using an already running an instance of the app (and process death may have occurred) or if it is a new instance... I am thinking the former though because it always seems to happen when I am quickly trying to show someone else the app (naturally...) as opposed to me restarting an app while testing after a code change.

Any advice?

Filter

Back
Top Bottom