Skip to main content
The 2024 Developer Survey results are live! See the results

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
+678
14.9k Members
+197
Contact

Pinned content

View all 2 collections

Mobile Development admins have deemed these posts noteworthy.

Pinned
18 votes
5k 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
Pinned
13 votes
3k views
Collection

iOS Frequently Asked Questions

The iOS-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 exploring a ...
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
7 views

How to restrict a contextual menu to a single collectionView

I have a view with three collection views on it. I want one of the collection views to have a contextual menu. How do I control that only one of them has the menu? In the code below, I have commented ...
0 votes
0 answers
9 views

Android App Crawler is not running with API 34

App Crawler is working perfectly with API 28 but not working with API 34 I use the same command: java -jar crawl_launcher.jar --apk-file app-debug.apk --app-package-name com.example.myapplication --...
0 votes
0 answers
14 views

How to prevent isAllDay events spanning multiple day when querying devices calendar SwiftUI

I assume the issue is daylight savings. I just can't figure out a fix My setup. I have a schedule view. on which I want to display the users Calendar events on. Each day in the schedule queries for ...
0 votes
0 answers
7 views

7inch raspberry pi touch screen with aosp 13 size problem

I’m working on a project using a Raspberry Pi 4 with a custom Android 13 ROM and the official 7" Raspberry Pi touchscreen. The touchscreen display is zoomed in, causing part of the display to be ...
0 votes
0 answers
14 views

Event from ViewModel to View to cancel and relaunch LaunchedEffect

I am remaking the Simon Says game in Kotin. I try to make a good pattern between my viewModel and my view but here i don't know if there is a better way to execute what i want. So, i need to make my ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

-1 votes
0 answers
28 views
+100

SecurityError: The operation is insecure on iOS in Next.js Project

I'm encountering a persistent SecurityError: The operation is insecure. issue in my Next.js project, but only on iOS devices. I've reviewed several related posts that suggest it could be a Firefox-...
1 vote
1 answer
71 views
+500

Installing Device Admin & Device Owner App

I'm writing a device owner application, where I'm setting the app as device owner via ADB command: adb shell dpm set-device-owner {package-name}/{admin-receiver} The app is successfully set as a ...
0 votes
0 answers
37 views
+50

Pixi-viewport not responding after app(iOS) switches state from inactive to active

I am facing an issue when my simple capacitor application switches state from inactive to active state PIXI-viewport not responding(or I would say content not rendering, stacked. It happened when I ...
0 votes
1 answer
137 views
+50

What gradle entries are required for implementing KSP and Room in a Kotlin Multiplatform

I am in the process of converting a kotlin application to kotlin multiplatform (anroid only for now to get through initial configuration) with room. This included moving to a libs.versions.toml file ...
-1 votes
2 answers
99 views
+50

Check iPhone vs iPad device type on background thread

I have this code: public enum DeviceUtil { public static var isPhone: Bool { return UIDevice.current.userInterfaceIdiom == .phone } } And I got warning saying UIDevice API has to be on the ...

Learn something new
These are the most recent articles in Mobile Development Collective
6 votes
202 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,462
9 votes
588 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
  • 344