Skip to main content

Mobile Development Collective

A collective for developers who want to share their knowledge and learn more about mobile development practices and platforms
2.1m Questions
+126
26.1k Members
+169
Contact

Pinned content

View all 2 collections

Mobile Development admins have deemed these posts noteworthy.

Pinned
20 votes
10k views
Collection

Android Frequently Asked Questions

The Android-related questions that get asked repeatedly, gathered together in one place. What does a new developer always ask at some point? What are the most common questions when someone is ...
Berthold's user avatar
  • 101

Can you answer these questions?

View all unanswered questions

These questions still don't have an answer

0 votes
0 answers
30 views

WireGuard works only after switching network interfaces (Windows 11 & Android)

I rented a server from Hostkey and I'm setting up a WireGuard VPN for use on Windows 11 and Android. I need it to work over both Wi-Fi and 4G (MTS carrier). After configuring everything, I ran into ...
3 votes
0 answers
46 views

Android "paddingHorizontal" Doesn't Work on TextInputEdieText

XML: <com.google.android.material.textfield.TextInputLayout android:id="@+id/name_inputLayout" android:layout_width="match_parent" android:layout_height="...
0 votes
0 answers
32 views

How i change height of DropdownMenuItem?

I am creating an auto-complete TextField using ExposedDropdownMenuBox in Jetpack Compose. I am using a custom component, SpotifyTextField that has a fixed height of 48.dp. My goal is to make each ...
1 vote
0 answers
21 views

Samsung Calendar : empty event when opened with ACTION_VIEW intent

To open an existing event from its ID, I use an Intent to open the phone's default calendar app. Since November 2025, I have had many users with Samsung devices who have encountered an issue with ...
2 votes
0 answers
59 views

Android (Linux) libc problems when creating an execuatable shared object

I have 2 files: crt.c: const char service_interp[] __attribute__((section(".interp"))) = "${LD_SO}"; extern void _exit (int __status) __attribute__ ((__noreturn__)); int main(); ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

4 votes
1 answer
116 views
+50

RealityKit's custom light entity causes a black artifact on my 3D model

I’m working with RealityKit and I’m seeing a strange black artifact appear in the center of my rendered model. Here’s the relevant code: let camera = PerspectiveCamera() camera.transform = ...

Learn something new
These are the most recent articles in Mobile Development Collective
13 votes
926 views
2 minute read
Knowledge article

Basics of Kotlin coroutines

Basics of Kotlin coroutines What is a coroutine? A coroutine is a concurrency design pattern that you can use on Android to simplify code that executes asynchronously. They are“lightweight threads”. ...
amodkanthe's user avatar
  • 4,540
13 votes
1k views
1 minute read
How-to guide

Using SwiftData with SwiftUI

One thing we iOS developers should rejoice about is the development of SwiftData, at least if you are coding for a very new project and can forget about iOS versions below 17. We finally have an ...
otaviokz's user avatar
  • 392