429 questions
-1
votes
1
answer
35
views
ADB bridge error within vm and host machine
So , i have deployed android studio emulator (nexus 5) on host machine (windows 11) and kali vm on vmware . I have been trying to connect adb bridge between them , i have adb access on my host console ...
0
votes
0
answers
704
views
Setting ro.debuggable=1 to enable "adb root"
In Android 14 and 15 (at least), one way to enable adbd to run with root privileges is to set ro.debuggable to 1 in both the "post-fs-data" and "late-start service" boot stages, as ...
0
votes
1
answer
104
views
How to kill previously home-activity app via android UI?
To be able to reload/debug an app in Android Studio I always have to kill the app manually via Recent screens, otherwise I get "Couldn't terminate the existing process for myapp".
Now I made ...
1
vote
1
answer
305
views
How to drag and reorder list in Jetpack Compose?
Can someone help me correct the logic of reordering list. I believe the moveTodo function in viewmodel is not working properly. Reordering is working but not like how it should.
Project Structure
..db
...
3
votes
1
answer
2k
views
Load script to Objection on startup
I tried to use objection (Frida tool) and I want to load a JavaScript script in startup
I run it objection -g com.myapp explore but when I got prompt (to use import function` the application already ...
0
votes
0
answers
56
views
How can I stream a video that I have stored in firebase storage in Android Kotlin
I am creating a time capsule kind of app, in which you can store text, images and videos and then that message will be displayed only on the specified time..the text and image messages are working ...
4
votes
0
answers
761
views
Android debugger stuck at collecting data
In my Android project, when I attempt to debug project in emulator then want to see the data within the variables, it gets stuck at collecting data
I upgrade android studio giraffe to hedgehog, ...
0
votes
0
answers
346
views
How to debug an Android app that crashes while the debugger is attaching?
My app crashes while waiting for the debugger to attach in Android Studio. The debug call stack doesn't make any sense to me. How can I debug this and figure out why it's crashing?
Adding some context....
1
vote
1
answer
444
views
No SDK listed in the installation window for Android Studio
I was installing Android Studio Hedgehog (latest version), from the official website. After downloading, Android Studio was asking for a SDK. I checked my directories and did not find the folder. I ...
1
vote
0
answers
31
views
Not able to extract OTP from the message
public class SMSBroadcaster extends BroadcastReceiver {
private static SmsListener mListener;
Boolean b;
String abcd, xyz;
@Override
public void onReceive(Context context, Intent ...
2
votes
0
answers
2k
views
Android Studio adb server Connection reset by peer
I set up a new Ubuntu installation and after that my adb is not working correctly.
Normally adb would recognize my emulator but when i startup my Computer i believe it does not start an adb server. ...
-1
votes
1
answer
376
views
What is __LIBC_HIDDEN__ in C header?
Introduction
In a log output of a crash, there is an error with backtrace output as:
#00 pc 00038cf0 /apex/com.android.runtime/lib/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, ...
-2
votes
1
answer
38
views
UninitializedPropertyAccessException while working with lateinit
I'm working on Android development using Kotlin, and encountering an issue with a lateinit var named polyline. The error I'm getting suggests that even though I assigned a value to polyline inside a ...
-1
votes
1
answer
40
views
UninitializedPropertyAccessException:
I'm working on Android development using Kotlin, and encountering an issue with a lateinit var named polyline. The error I'm getting suggests that even though I assigned a value to polyline inside a ...
1
vote
1
answer
5k
views
What does ro.debuggable=1 actually do?
I am trying to understand what the Android system property ro.debuggable actually does. I am using Arm Streamline to profile my android application and the documentation states that I can do ...