37 questions from the last 7 days
-3
votes
0
answers
42
views
APatch android kernel [closed]
I am trying to install overlayfs module with an APatch kernel, but i get this error.
APatch is read only.
i decide to look at partitions which may not be properly mounted,
mount -o rw,remount / //...
-1
votes
0
answers
62
views
Firebase sendToTopic fails with 404, but console notifications work and all permissions/APIs are enabled
I am facing a persistent 404 Not Found error when trying to send a notification from a 2nd Gen Node.js Cloud Function using admin.messaging().sendToTopic().
The baffling part is that I can ...
0
votes
1
answer
26
views
AdMob linked AdSense account asking to connect a site, and no “Manage payment methods” option visible
I have an Android application using Google AdMob.
In the AdMob console → Payments section, it shows:
Payments account: AdSense (India)
When I log in to the linked AdSense account, I see the message:
...
0
votes
0
answers
33
views
Detox to test Bluetooth calls from Android device
I want to automate tests of Bluetooth calls from Android device (in a react native app).
I was thinking about using Detox for that.
Note that I do not want to test any UI, just the Bluetooth calls to ...
0
votes
2
answers
37
views
Flutter UI overlaps Samsung bottom navigation bar (3-button navigation)
Environment
Flutter version: 3.35.6
Android embedding: V2
MainActivity: MainActivity.java
Devices affected: Samsung Galaxy A54 (also reproducible on other Samsung A-series)
Android navigation ...
0
votes
0
answers
41
views
React Native Expo: API works in debug build but only one API works in release APK
Description
I’m working on a React Native Expo application that uses two internal APIs (developed by our own AI team) for image background removal.
Expected Behavior
The app provides two options:
...
0
votes
1
answer
51
views
Getting "None of the following candidates is applicable" when trying to use LiveData list in itemsIndexed in LazyColumn
Relvant code in ViewModel:
val allFoods: LiveData<List<Food>> = repository.allFoods.asLiveData()
and MainActivity:
val foods = foodViewModel.allFoods.observeAsState(listOf())
...
0
votes
0
answers
58
views
Failed to make the bitmap bigger by pixel in android?
I want to make the bitmap bigger to show .
first I read all the pixels :getPixels(pixels, 0, bitmap.Width, 0, 0, bitmap.Width, bitmap.Height)
and then I add the pixel by each pixel in the bitmap:
int ...
-1
votes
0
answers
42
views
Android TV: VPN app is killed when sent to background - how to keep it running? [closed]
I need a VPN to access YouTube.
The VPN works only while its app is opened.
As soon as I switch to YouTube (or any other app), the VPN app is killed.
It looks like Android TV aggressively stops ...
0
votes
0
answers
37
views
Testing Wear OS app on Android Smartphone - Accelerometer & Gyroscope Testing
I am writing a wear os app that will use machine learning to recognise certain motions and impacts based on the accelerometer and gyroscope data. I have written a simple Wear OS app that can be ...
0
votes
0
answers
31
views
Android to WearOS data event fails when phone app is closed
I'm trying to set up an authentication flow on a WearOS app where the companion phone app is responsible for logging in at which point the watch app can simply request the authentication token via a ...
3
votes
0
answers
85
views
Project Files Vanishing
UPDATE: FFS turns out I had to grant Android Studio access to the Desktop folder in settings. Fixed 🤦♂️
So, for context, I've just started using Android Studio, and I'm using it for code from an ...
0
votes
0
answers
57
views
How to safely check if a URI is a document tree
I want to call ContentResolver.query on a URI. Since I can't pass the URI returned by an ACTION_OPEN_DOCUMENT_TREE Intent to ContentResolver.query because it is a document tree and not a document, I'm ...
0
votes
0
answers
43
views
CoordinatorLayout + NestedScrollView: adjustResize doesn’t scroll to focused view; adjustPan hides dropdown behind keyboard
I'm developing an Android application (Java) using the standard layout structure: CoordinatorLayout + AppBarLayout + NestedScrollView. I have a long form where some text fields are positioned at the ...
3
votes
1
answer
62
views
How to find out if a URI is a MediaStore URI
When using ContentResolver.query() on Android to find out the display name of a content URI, I need to use different projections depending on whether the URI is a document or a MediaStore URI. When ...