Skip to main content
Filter by
Sorted by
Tagged with
Advice
2 votes
8 replies
118 views

I developed a simple Android app (A driver app for taxi booking). App sends its location (lat/lng) every 5 seconds to server using TCP/IP. and server stores the driver location in SQL SEVER database. ...
hamid's user avatar
  • 860
2 votes
2 answers
262 views

I currently have the following code in my Compose Multiplatform project: var myStateVariable by rememberSaveable { mutableStateOf(false) } BackHandler(myStateVariable) { myStateVariable = false } ...
BenjyTec's user avatar
  • 12.6k
2 votes
2 answers
105 views

I want to retrieve a specific column from my Android ROOM Database but it kept returning an empty list. Here is the code on my DAO interface: @Query("SELECT * FROM expense_table ORDER BY category ...
JazzAnt's user avatar
  • 23
0 votes
2 answers
104 views

Before installing the app, its name appears normal. After installing it, it appears as com.svc.filemanager.MyApp. I have a class called MyApp. I added this class to the AndroidManifest under <...
savci's user avatar
  • 1
-2 votes
2 answers
121 views

I have an Activity that is responsible for creating a new entry in the database. In this activity, a button launches a coroutine to do all the database-related stuff, and when it's done, navigate to ...
Wladyslaw Skiba's user avatar
0 votes
1 answer
216 views

I am working on a .Net MAUI Android app which is built on .net 8 and Android framework target version is API 34 (Android 14). I am not planning for upgrading my app to target API 35 soon. But I need ...
XaMAUI's user avatar
  • 392
3 votes
2 answers
134 views
+500

I'm using com.squareup.wire.GrpcStreamingCall along with OkHttp in a Kotlin mobile app to stream gRPC events from a backend service. The issue I'm facing is that the client does not receive the ...
Umesh's user avatar
  • 4,286
0 votes
2 answers
126 views

In a .NET MAUI 9 app I use PdfSharp.Maui (1.0.5) to create a pdf document. I don't use PdfSharp.Maui directly but rather PDFsharp which is a transitive package: using (PdfDocument document = new ...
dpant's user avatar
  • 2,234
0 votes
2 answers
64 views

For example, the SVG content obtained from the web is: <svg t="1717950268208" class="icon" viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3....
pnkj's user avatar
  • 528
1 vote
1 answer
174 views

I've got some code which looks like this in my main activity: class MainActivity : AppCompatActivity() { private val backStackListener = FragmentManager.OnBackStackChangedListener { val ...
user545424's user avatar
  • 16.3k
7 votes
0 answers
124 views

I’m encountering a problem with the synchronization of the ModalBottomSheet animation and the software keyboard (IME) animation in Jetpack Compose, and I would appreciate any insights or suggestions. ...
Kyuubi's user avatar
  • 43
3 votes
1 answer
143 views

I'm getting this error when I try to sync my Android project in Android Studio: Plugin [id: 'com.android.application', version: '8.13.0', apply: false] was not found in any of the following sources: ...
sara alipour's user avatar
1 vote
1 answer
78 views

Compose has great advantages but I feel the readability and code complexity increases when the fields increase. Here is an example: data class UserForm( val firstName: String, val lastName: ...
elliot's user avatar
  • 61
0 votes
1 answer
82 views

We are in the process of merging 2 separate applications(Android & iOS) into one. Each of the application has its own Firebase project, and its own Google Analytics 4 property. So essentially we ...
Ihmune's user avatar
  • 1
1 vote
1 answer
89 views

I have a Flutter project and I added some images inside: assets/images/ I also added the folder in pubspec.yaml: flutter: assets: - assets/images/ The images load correctly the first time when ...
Moaz Yahya's user avatar
0 votes
1 answer
85 views

I have a script, supposedly running in Android 12 ksh that works... but I can't understand why or how. script begins with: #!/system/bin/sh is_sourced() { [ "$_" = "is_sourced" ] ...
ZioByte's user avatar
  • 3,106
2 votes
1 answer
94 views

My NET.MAUI Android app is throwing SSLPeerUnverifiedException: Hostname 192.168.100.2 not verified when sending POST request to a PHP script located on my desktop's IIS localhost, as shown below. ...
Stanislav Panferov's user avatar
Best practices
1 vote
3 replies
68 views

This is my first time developing an android app and very little experience with any kind of frontend development. The android app is fairly simple in nature will display some graphs and take a few ...
Salil Surendran's user avatar
1 vote
1 answer
85 views

When I use a file_picker or image_picker on a 2 GB file, it takes about 25 seconds until the process after selecting a file is finished. That is quite a long time for users to wait. As far as I know, ...
dkl1203's user avatar
  • 140
0 votes
0 answers
83 views

I’m testing the ML Kit GenAI Demo from Google’s official samples: https://github.com/googlesamples/mlkit/tree/master/android/genai I built the app with JVM 17 and installed it on a Pixel 6 Pro and a ...
Shr's user avatar
  • 51
1 vote
1 answer
62 views

I am completely bemused. The problem is at line 34. I have tried all sorts of methods to connect to the url and in all cases the app stops at internet access. and yes the manifest does say uses-...
PAUL WHITE's user avatar
Best practices
0 votes
1 replies
55 views

The core of my app is an SQLite database containing over 16,000 strings. My goal is to translate them into multiple languages in the most performant, memory-efficient, and maintainable way. I ...
Tennis Heal's user avatar
-1 votes
0 answers
92 views

I'm trying to enable Google Login inside my app, but I don't see a section to add a redirect URI to my Android Google Oauth 2.0 Client ID. I'm getting the following error when using expo go React ...
Rue Vitale's user avatar
  • 1,981
0 votes
1 answer
60 views

I encountered an issue sending notifications in my Android app. I am setting my custom icon via .setSmallIcon(R.drawable.ic_bublic_2) but android ignores it and shows a default launcher icon instead. ...
Sargius's user avatar
  • 132
-1 votes
0 answers
82 views

Problem Description I'm using the com.skydoves.balloon.compose library in my Android Compose project to display tooltip views. I'm facing two issues: Width Issue: The content inside balloonContent is ...
Kiran's user avatar
  • 1

1
2 3 4 5 6