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
+634
14.6k Members
+210
Contact

Pinned content

View all 2 collections

Mobile Development admins have deemed these posts noteworthy.

Pinned
12 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
Pinned
17 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

Can you answer these questions?

View all unanswered questions

These questions still don't have an answer

0 votes
0 answers
4 views

Android Studio debugger not working always show Collecting data

My Android Studio debugger isn't working. When it hits a breakpoint, it shows "collecting data" all the time (Emulator and Device), making it difficult for me to work efficiently. Previously,...
0 votes
0 answers
4 views

Embedding a C library and its dependencies into a Flutter iOS app

I am trying to use a C library in my Flutter iOS app (https://github.com/quiet/quiet) I have compiled the library and its dependencies into separate dylibs targeting the iOS platform but have no idea ...
0 votes
0 answers
3 views

Unable to boot simulator

I'm trying to run my React native project from Xcode. Where I am getting this error. After 3-4 tries the simulator is getting opened and the error is resolved automatically. I do wanna know the root ...
-1 votes
0 answers
7 views

clear background color for image

clean the background image that is downloaded from the network by link like: https://i.postimg.cc/1zFKzM6n/800x800.jpg in this link we will see white background. I tried to use examples from apple ...
1 vote
0 answers
10 views

Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'RNGestureHandlerModule'

Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'RNGestureHandlerModule' could not be found. Verify that a module by this name is registered in the native binary.Bridgeless mode: true. ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

0 votes
0 answers
55 views
+300

RevenueCat - Checking subscription status always returns active

The app calls verifyIAPReceipt() on load and when trying to access Pro features. If a user has subscribed to the app but then unsubscribed, the following code still executes `subscribe()' always for ...
-1 votes
0 answers
29 views
+300

Twilio - Push notifications fail in serverless production deployment

I have an Twilio programmable messaging app which is deployed in a Twilio serverless environment. let response = new Twilio.Response(); exports.handler = async function(context, event, callback) { ...
0 votes
1 answer
54 views
+50

How to convert AdMob `GADFullScreenContentDelegate` to Swift 6 concurrency

This is a similar problem to How to convert `VNDocumentCameraViewControllerDelegate` to Swift 6 Concurrency but one warning is new, so this may require different solution. I have the following code: @...
0 votes
1 answer
52 views
+50

How to convert `VNDocumentCameraViewControllerDelegate` to Swift 6 Concurrency

So I have this code: fileprivate class DocumentScanDelegate: NSObject, VNDocumentCameraViewControllerDelegate { static let shared = DocumentScanDelegate() var compressionQuality: CGFloat = 1 ...
0 votes
1 answer
53 views
+100

Why is SwiftData @Query much slower with large datasets compared to FetchDescriptor?

I was load testing my app that lists some todos and essentially pre-populated database with 1000 records. This slowed things down in the app dramatically, tab switching felt sluggish and I pinpointed ...

Learn something new
These are the most recent articles in Mobile Development Collective
6 votes
171 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,512
8 votes
569 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
  • 334