I am getting this error when running my Flutter app: Launching lib\main.dart on Android SDK built for x86 in debug mode... FAILURE: Build failed with an except
I'm using BottomNavigation in Jetpack Compose with navigation-compose:2.5.0-alpha04 and I want to encapsulate each tab's flow with nested navigation. To achieve
The purpose of the following function (in an Android app) is to programmatically lay out three vertical SeekBar objects one beside the other. The setting for th
I am trying to add unit tests to an existing Android app that has some JNI libraries (only for ARM). I am using Mockk and Junit4, and I have the following: This
I have two data base or two tables ex:one for matches and one for chat jn event section in match note that the all messages is inserted in one table mean that e
I have a spinner, and I want to find a way to change the dropdown for my spinner. I want to change my text content through code, but I'm not sure how to do that
Inside my "native.cpp" file I reference the native method; ANativeWindow_setFrameRate But when I compile I get; ld: error: undefined symbol: ANativeWindow_setF
Here is the complete code.. So the problem is that if there are 9 records in the table and by clicking on the ButtonNext , the application does not crash and di
My kivy project can run correctly on my computer, but if I use package logging to log, the project will not start application main loop on my phone. The followi
I'm trying to make a signed transaction in Android metamask using wallet connect send the transaction to my backend-server and then submit it to blockchain. How
We need to allow users to store files in the external storage and for the same, we use MANAGE_EXTERNAL_STORAGE permission in our application. Ideally for the an
We're investigating on an app developed by another team a native Crash on Android related to HereMaps (HERE SDK Navigation edition, navigate-4.10.2.0.7878) with
I'm using ARCore in my Android app and required features points from ARCore. But I'm not able to get features points for the plain white surfaces. If I try it w
My code creates a duplication of the last entry in the cursor. The text in the textview looks something like this: Peter,23 Paul,40 Anastasia,20 Anastasia,20 H
I want to add android:windowSoftInputMode="adjustPan" only to recycler view. When I add it into the manifest file it adds it to everything which I don't want. W
So I created MVVM app in kotlin to fetch movies from TMDB api, using injections and coroutines. My problem is that I cannot copy the list of returned movies int
I have been using the Android Studio App for about a month now,in order to create a project for a university subject. Unfortunatelly,I came across a problem whi
I got some problems when I create a navigation graph to control fragments, the problem is that whenever I add any new destination to this graph, this destinatio
I wanted to fetch server time on device so I am using FirebaseDatabase builtin function: FirebaseDatabase.getInstance().getReference(".info/serverTimeOffset") I
in my AndroidManifest.xml, I have <application android:icon="@drawable/iC_launcher" android:label="@string/app_name" android:theme="@style/AppThe