73 questions from the last 7 days
0
votes
0
answers
12
views
Android AccessibiltyService : How can I enabling perform action on a sealed instance
I am using AccessibilityService in AndroidStudio for an app which is going to access an another app. In a view there is not available actions of "ACTION_CLICK". Its sealed and I am getting ...
0
votes
1
answer
26
views
How to set a background image for the WebView on an android app built with React DOM + Capacitor v7?
package com.app_name.app;
import com.getcapacitor.BridgeActivity;
import android.os.Bundle;
import android.graphics.Color;
// import android.webkit.WebView;
public class ...
1
vote
1
answer
24
views
SearchAnchor.openView() : change (inherited) width of SearchBar?
On my flutter_map I have an IconButton which it should cause a SearchBar to appear only when clicked. When search is done, the SearchBar can go into hiding again and only said icon be visible.
I have ...
0
votes
1
answer
28
views
Latest version of Compose Maps dependency throws "IllegalArgumentException: source must not be null"
When using com.google.maps.android:maps-compose in version 6.12.2 I get the following error building the project:
org.jetbrains.kotlin.util.FileAnalysisException: While analysing <redacted>/...
0
votes
0
answers
31
views
LazyColumn flingBehavior problem in Jetpack Compose
I used the following code in Jetpack Compose to position items in the center of the screen and I succeeded, but when I click on the item, the item moves down and the flingBehavior effect disappears. ...
0
votes
0
answers
23
views
WebView in .NET MAUI can not access a webpage that is served on a VM using Fiddler (a proxy)
I created a quite simple .NET MAUI App. For now it only implements a WebView with a source:
MainPage.xaml.cs
public MainPage()
{
InitializeComponent();
WebView webView = new WebView
{
...
0
votes
0
answers
32
views
Error in executing credential manager api [closed]
I am trying to execute camara number verification 2.0.0 in my app. Currently I am stuck about how the call is going to be to the mobile os so that it trigger request to entitlement server for the ...
0
votes
1
answer
37
views
Firebase Crashlytics causing NoSuchMethodError for checkNotGoogleApiHandlerThread() in Flutter app
My Flutter app is crashing on startup with NoSuchMethodError when Firebase tries to initialize. The method checkNotGoogleApiHandlerThread() is not found in the Preconditions class, causing a FATAL ...
Advice
1
vote
1
replies
48
views
Custom overlay when detecting device recording
I am trying to make a custom overlay for my application that will hide the screen if any screen share or unauthorized recording of my app is running.
The problem is, that I am trying to avoid using ...
-1
votes
0
answers
55
views
Push Notification on Flutter Mobile Apps [closed]
I am developing 2 mobile applications (main & admin) using Flutter for my client and this is my very first time developing a mobile apps. I need help with push notification on both apps because I ...
-1
votes
0
answers
48
views
Android app shows occasional white screen on start or wake — how to replace it with a custom image or color? [closed]
I'm building an Android app using React and Capacitor v7. Occasionally, when the app is opened from a cold start or resumed from the background, a white screen appears briefly before my app's UI loads....
Advice
0
votes
2
replies
31
views
How do I find an intent to get me as close to "Encryption & credentials" in Settings?
I’m trying to automate setting up a Trusted CA in an emulator. I know I could use
adb shell input tap
commands, but I’d rather leave that to a human. I just want to get the human as close to the
...
0
votes
0
answers
15
views
Unable to Resolve Class expo.modules.plugin.gradle.ExpoModuleExtension
I'm trying to run a React Native project. The README indicates that it should be good to go after running "yarn" to install dependencies, but I'm getting the following error when I try to ...
0
votes
0
answers
20
views
WearableListenerService stops responding after phone has been idle
I have a weird issue. I'm using the DataClient class to transfer data from a phone app to a WearOS app. It was working fine for years, then after the recent upgrade to WearOS 6, onDataChanged in the ...
0
votes
0
answers
41
views
Redirect Uri is not working properly in React Native
I have created an mobile app using react native and then i build using **eas build -p android --profile preview....**After that it created an qrcode using that i downloaded my apk file after that I ...
Advice
0
votes
2
replies
52
views
How to lock orientation in the age of adaptive layouts?
I sat down for the first time in a while to work on a personal project - a simple edge-to-edge 'touch to draw' app. I planned to lock the orientation to landscape only to prevent refreshes on rotation....
0
votes
0
answers
58
views
Google Play warning about 16-KB page size — libgmm-jni.so not supported. How to fix?
Google Play is warning that my app does not support 16-KB page size. My app currently supports only 4-KB pages.
When I checked my AAB using the APK Analyzer, I found that the file libgmm-jni.so does ...
Tooling
0
votes
2
replies
76
views
Reminder notifications on mobile devices (Android/iOS))
I'm looking to develop a mobile application that sends recurring task reminders to users via scheduled local notifications at specific time intervals. (Like notification every 15 minutes)
As a web ...
Best practices
1
vote
2
replies
32
views
Android data syncronization strategies
I currently have a windows app I wrote that interacts with data from a web API. I'm trying to make an android version to carry around with me. Generally only one person accesses the data from their ...
-2
votes
1
answer
62
views
How to prevent Dropdown view from being pushed [closed]
problem gifAs you can see in the gif, when I drop down, the view below is pushed out.
I want the dropdown to be above the view below without being pushed out. How can I do this?
In particular, I'd ...
Advice
0
votes
6
replies
72
views
object file is twice larger than expected
I have a AVR GCC toolchain compiled to work on aarch64-linux-gnu devices (ARM64) and it produced twice larger file (around 35Kb) than almost identical command-line on desktop (mac silicon, around 20Kb)...
1
vote
1
answer
42
views
[runtime not ready]: ReferenceError: Property 'CRYPTO' doesn't exist
In a react native expo app for Android:
I get no error when I run 'npx expo-doctor'
I get successful 'Android Bundled' message when I run 'npm run android'
I tried deleting ./android and/or ./...
0
votes
0
answers
42
views
How to keep a specific LazyColumn item visible when the keyboard opens?
I have a bottom sheet used for search, and it has two UI states. Both states share the same LazyColumn.
State 1:
LazyColumn {
item { Row { ... } } // search categories
item { Text(text = &...
-1
votes
0
answers
25
views
Dark gap above Android keyboard when using Keyboard.resize = "body" in Capacitor
I’m building a React PWA packaged with Capacitor for Android.
I need the app to resize when the keyboard appears because a formatting toolbar must stay above the keyboard (similar to any notes apps).
...
1
vote
0
answers
64
views
Is it normal for Flutter's main() function to execute as soon as a firebase notification is received in system notifications bar?
is it normal for Flutter's main() function to execute as soon as a firebase notification is received in system notifications bar?
I am testing on Android 15 in a Pixel device.
Here's what I did:
I ...