30,915 questions
1
vote
0
answers
32
views
Samsung Calendar : empty event when opened with ACTION_VIEW intent
To open an existing event from its ID, I use an Intent to open the phone's default calendar app.
Since November 2025, I have had many users with Samsung devices who have encountered an issue with ...
0
votes
1
answer
75
views
Auto-paste text into ChatGPT/Gemini from Android app
I'm developing a React Native app that generates AI prompts. I want to send these prompts directly to ChatGPT or Google Gemini apps with the text automatically pasted into their input field, not just ...
0
votes
1
answer
51
views
Accessiblity not clicking on "Force stop" at all
I can verify that onAccessibilityEvent and onServiceConnected functions are triggered, but nothing expected happens.
Here is my AndroidManifest.XML
<?xml version="1.0" encoding="utf-...
0
votes
1
answer
37
views
Android: Why is onNewIntent() not called from Notification click while using singelInstance launchMode
I have an Android app where I want to show a notification when the app is running in the background.
The associated Activity is declared in the manifest with:
<activity
android:name="....
Advice
0
votes
0
replies
63
views
Can you close programatically an open Chrome Custom Tab Intent?
I have implemented an authentication workflow using Activities which works fine: a proxy activity launches an Intent to open a web, and during the authentication the web redirects to a separate ...
0
votes
0
answers
31
views
Chrome Android reuses Intent.EXTRA_TEXT across multiple share actions
Problem
I'm building an Android app that receives shared URLs from Chrome's share menu. The app works correctly on the first share, but all subsequent shares receive the same URL from the first share ...
-1
votes
2
answers
117
views
How to check if a BroadcastReceiver exists in another app?
I'm trying to send a broadcast to a BroadcastReceiver which is present in another app, using the following code:
val filter = IntentFilter()
filter.addAction("android.intent.action.MAIN")
...
3
votes
2
answers
163
views
Why does intent.getStringExtra() return null when broadcast is sent using "am" shell command?
I have an app that runs as UID 1000 (system), and I want to run shell commands as the system user via this app and display the output as a toast.
CmdReceiver.java:
package com.ishacker.android....
0
votes
0
answers
44
views
Android Activity Back Stack issue with launchMode="singleTask" and CallRedirectionService
I'm developing a React Native app with an Android-specific feature that detects calls to a specific customer service number. When a user dials *611, the call is intercepted, terminated, and the app ...
0
votes
2
answers
71
views
onCreate is called twice with FLAG_ACTIVITY_NEW_TASK or FLAG_ACTIVITY_CLEAR_TASK
I've noticed that there are 2 times when startActivity with intent for the same Activity (FirstActivity) is called in my Android project, and it's called in both places like that:
FirstActivity.intent(...
1
vote
0
answers
158
views
Android custom intents: app/intent is loading, but without parameters
I'm attempting to add voice control to my Android (Flutter) application using Custom Intents. The documentation leads me to believe that I can say "Hey Google, open my app name and load xxx" ...
0
votes
1
answer
46
views
Android file attachment included in a SendIntent not being added to email in Gmail
I am trying to attach a file to an SendIntent for Gmail, so that my users can email the file file to me upon request. I am targeting Android 35
I have declared a FileContentProvider in the Application ...
0
votes
1
answer
65
views
How to properly create universal pattern links in AndroidManifest?
I'm working on deep linking in Android and trying to set up <intent-filter> to open my app for selected paths like /missions, /shop, etc. That's working fine. However, I'm having trouble ...
1
vote
1
answer
68
views
How to access Intent and onActivityResult on ReactNative?
We have an Android-based smartphone payment app, and there's a specific branch which runs on mobile POS (to use its card reader). So instead of writing the card reader handling logic from 0, we just ...
2
votes
0
answers
303
views
Android 16 not allowing full-screen intents on app
I have a foreground service that was working fine until Android 15; since Android 16, it has stopped working. I read through all the articles, but couldn't find anything that has been changed since ...