Unanswered Questions
534,202 questions with no upvoted or accepted answers
123
votes
0
answers
4k
views
Android ndk gdb loaded shared libraries are missing *.oat
Both gdb 7.7 and gbd 7.11 missed some shared libraries when debugging my device (oppo r7s). I've pulled all libraries to local.
Here is a complete list of libraries shown by info shared
(gdb) info ...
62
votes
1
answer
4k
views
Accessibility service disabled upon each debug run
Each time I start a new debug instance, my accessibility service resets to the disabled state.
Is there any way to keep it enabled across successive debug runs (as it is quite long & boring to ...
56
votes
2
answers
3k
views
Chrome custom tabs not opening other apps
The Chrome custom tabs doesn't seem to launch other apps by deeplinking.
For example a PayPal payment, when Chrome is launched with this URL. It will ask the user if the URL has to be opened with the ...
40
votes
1
answer
11k
views
IllegalArgumentException: reportSizeConfigurations: ActivityRecord not found for: Token
I received the following bug report from a Moto E (4) Plus running Andorid 7.1.1:
Exception java.lang.IllegalArgumentException: reportSizeConfigurations: ActivityRecord not found for: Token{9857068 ...
36
votes
1
answer
5k
views
Getting DeadSystemException on Samsung SMG950U (Android 8.0.0) and SM 955 (Android 8.0.0)
I am working on a native android app & getting the following report in my Crashlytics but I am unable to figure the the exact reason for this.
I have two activities SplashActivity and MapActivity ...
36
votes
0
answers
2k
views
How does "parallel apps" feature work on OnePlus 3 devices, and how can we use Intents properly with them?
Background
Apps use Intents to open other apps, sometimes with specialized Intents.
One example is this Intent, to choose a contact from WhatsApp:
val WHATSAPP_PACKAGE_NAME = "com.whatsapp"
val ...
35
votes
1
answer
3k
views
Modal BottomSheetDialog with fullscreen ToolBar and Softkeyboard
How is it possible to create a modal BottomSheetDialog(Fragment) which switches to fullscreen with a ToolBar as shown in the Material Design Spec?
I could add a ToolBar manually by adding a ...
34
votes
0
answers
2k
views
Handle MediaCodec video with dropped frames
I'm currently doing fast precise seeking using MediaCodec. What I currently do to skip frame by frame is, I first get the total frames:
mediaInfo.totalFrames = videoTrack.getSamples().size();
Then I ...
34
votes
0
answers
3k
views
Weird Native Crash - pid: 0, tid: 0 signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)
I am getting this weird crash on android
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
pid: 0, tid: 0 >>> com.oimvo.discdj <<<
backtrace:
#00 pc ...
34
votes
1
answer
1k
views
Android: Loading Custom Midi Instruments DLS files into Sonivox EAS
I'm creating an Android midi application using the popular billthefarmer driver package. With the help of Markus Kauppinen in this thread I was able to make my app generate and control midi events (...
34
votes
0
answers
12k
views
ObjectAnimator onAnimationEnd listener is called before the animation finishes
its weird and strange, but it seems like when I attach an AnimatorListener to an ObjectAnimator I use for animating fragment transactions, the callback gets actually called slightly before finish of ...
34
votes
1
answer
7k
views
Reading RGB images with an ImageReader
I'm trying to use an ImageReader to get RGB images from the camera. I'm using the Camera2 API from Android 5.0 "L" on a Nexus 5 running the developer preview. Note that I am not asking how ...
32
votes
1
answer
16k
views
error: incompatible types: NonExistentClass cannot be converted to Annotation @error.NonExistentClass()
I am trying to generate Doka docs of my project. While generating I am getting an error like above. I have searched so many but could not able to get solution to this. I have gone through this link ...
32
votes
1
answer
725
views
Where can I complain about Google Store target API level restrictions
Google recently announced that they are going to start restricting publishing Android apps that do not target recent API level versions. I support this change, but I need some special case exceptions,...
32
votes
0
answers
753
views
Error inflating class EmojiPalettesView in LatinIME(AOSP)
I checked out Google LatinIME. Then I imported the java folder into Android Studio.
I ran it, set it up (I chose a keyboard in the phone settings, I chose a language layout)
But during testing (by ...