8 questions from the last 1 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 ...