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
5 views

ScreenBroadcast UI Extension Error: connection to plugin interrupted while in use

I am trying to setup BroadcastUIExtension but I am keep getting this error. [com.apple.ReplayKit.RPBroadcastActivityViewControllerExtension(1.0)] Connection to plugin interrupted while in use. ...
0 votes
0 answers
5 views

Playing audio streamed via ws with just_audio in flutter (Mobile)

The aim is to play audio as soon as it comes from the server via the ws connection, and continue playing the whole message without any interruptions. (after the first audio chunk the rest should ...
0 votes
0 answers
6 views

Expo builds keep failing

my builds keep failing and here is the error that's showing this time: Error: Unable to resolve module ../../assets/images/icon.png from /home/expo/workingdir/build/app/(app)/index.tsx: 863 None of ...
0 votes
0 answers
19 views

Android Studio Kotlin Google reward ads bug

I am developing an application and I encountered a problem. My project works fine in the emulator. On phones, the score saved in the database always appears as 0.00, so after watching an advertisement,...
0 votes
0 answers
18 views

Android Java Invalid URI: content://media/picker_get_content/0/com.android.providers.media.photopicker/media/1000002282" problem

I think reading file paths has become more difficult after Android 11. Can you help me find a solution without disrupting the code structure? The error: "Invalid URI: content://media/...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

0 votes
0 answers
51 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
53 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
50 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
0 answers
27 views
+500

Creating compose smooth stopping rotation animation

I am trying to create a smooth stopping animation. When the user clicks on the icon it will rotate. Once its fetched from the Endpoint it will stop. However, I am controlling this by resetting the ...

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