Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

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-...
ThN's user avatar
  • 3,284
0 votes
0 answers
32 views

I used the following code in Jetpack Compose to position items in the center of the screen and I succeeded, but when I click on the item, the item moves down and the flingBehavior effect disappears. ...
Halil İbrahim Karacan's user avatar
0 votes
0 answers
32 views

I am trying to execute camara number verification 2.0.0 in my app. Currently I am stuck about how the call is going to be to the mobile os so that it trigger request to entitlement server for the ...
Sanket's user avatar
  • 11
2 votes
2 answers
102 views

In Kotlin, if you do println(String.format("%.17f", 10.45)), you will see 10.45000000000000000 in the output. In Swift, if you do print(String(format: "%.17f", 10.45)) you will see ...
infoMining's user avatar
-1 votes
0 answers
55 views

I am developing 2 mobile applications (main & admin) using Flutter for my client and this is my very first time developing a mobile apps. I need help with push notification on both apps because I ...
Repzi's user avatar
  • 1
2 votes
0 answers
69 views

When I use combine() on two flow, it's not supposed to conflate/skip values. But when I collect a combine of 2 flows in a Coroutine, some values are randomly skipped. Link to the kotlin playground : ...
Benjamin K's user avatar
0 votes
0 answers
27 views

I defined these simple models @NodeEntity(label = "Api") class Api { @Id @Property(name = "name") var name: String = "name" @Suppress("unused") ...
Patrice Conil's user avatar
1 vote
0 answers
33 views

I'm learning Android development and decided to add Dagger Hilt to my project. I've been struggling for a week with the `:app:hiltAggregateDepsDebug` task error. It throws: `Unable to find method '...
coolzzz's user avatar
1 vote
1 answer
70 views

I'm working on migrating some existing Kotlin code from Arrow 1.x to 2.x. The old code looked something like this: fun filterStrings(incoming: List<String>): Option<String> = incoming ....
pbuchheit's user avatar
  • 1,839
-2 votes
1 answer
62 views

problem gifAs you can see in the gif, when I drop down, the view below is pushed out. I want the dropdown to be above the view below without being pushed out. How can I do this? In particular, I'd ...
Juco's user avatar
  • 1
0 votes
0 answers
45 views

I have a bottom sheet used for search, and it has two UI states. Both states share the same LazyColumn. State 1: LazyColumn { item { Row { ... } } // search categories item { Text(text = &...
mvasileva's user avatar
-2 votes
0 answers
86 views

I am trying to build a horizontally scrolling list of category chips in Jetpack Compose, similar to this design: I want the categories to: scroll horizontally look like rounded chips highlight the ...
soumik's user avatar
  • 11
0 votes
0 answers
65 views

I'm trying to create a full-width custom notification for my Flutter app on Android. The problem is that the notification always appears centered with large horizontal margins, even though my layout ...
Supra Bob's user avatar
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
0 votes
0 answers
36 views

I’m building a React Native Android app where I need to track whenever the user opens another app (e.g., YouTube, Instagram, etc.). I am using a custom AccessibilityService, but the event for ...
Tamendra Sahu's user avatar
0 votes
1 answer
57 views

After resolving a startup crash, I’m now facing a new crash when attempting to initiate an outgoing call using @twilio/voice-react-native-sdk. When I call: Voice.connect(...) the app crashes with the ...
Bharath Kumar's user avatar
0 votes
1 answer
52 views

I'm working with Android 15's edge-to-edge enforcement and need clarification on how enableEdgeToEdge() interacts with the windowOptOutEdgeToEdgeEnforcement theme attribute. Setup In my theme: <...
Adam's user avatar
  • 1
0 votes
2 answers
54 views

I am trying to test the number of times a Flow is collected - runTest { var count = 0 backgroundScope.launch(UnconfinedTestDispatcher(testScheduler)) { dao.getEntities().collect { ...
jL4's user avatar
  • 1,242
Best practices
1 vote
0 replies
65 views

Currently, we have a lot of code like this one to query data inside our repositories: database.suspendedTransaction { Items .selectAll() .where { Items.userId eq userId } ....
Nathan Fallet's user avatar
0 votes
0 answers
26 views

Steps to reproduce: notification --[intent]--> ...Annoucement Details with Pin Validation --[back]--> home screen --[SYSTEM nav bar back]--> exit app --[system bar overview reopen]--> {!!!...
Stanisław Olszak's user avatar
Advice
1 vote
3 replies
34 views

I tried a lot of different options, but I cannot find the right dependency that works with Kotlin ans WebFlux simulatneously. Which one should I use? Is it possible to have this setup?
Taserface's user avatar
  • 123
0 votes
0 answers
39 views

Project is using XML / Kotlin. Issue is with a nested scroll view or perhaps screen management in general. NestedScrollView Child 1 (hidden) Child 2 Child 3 Child 4 (screen is here) Clicking ...
Joseph Coleridge's user avatar
2 votes
0 answers
70 views

My react native app (RN 0.71, AGP 7.3.1, Gradle 7.5) compiled on android without issues last week. This week when trying to compile again without making any changes to the code and the machine i get ...
TiropZ's user avatar
  • 13
Best practices
0 votes
1 replies
54 views

In which cases does it make sense to wrap the result of a function that returns a Mono in Mono.defer, when assigning it to a variable and using it later? F.e. fun getMono(): Mono<Int> // some ...
rdm's user avatar
  • 330
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

1
2 3 4 5
1958