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
+445
17.7k Members
+169
Contact

Pinned content

View all 2 collections

Mobile Development admins have deemed these posts noteworthy.

Pinned
19 votes
4k 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
18 votes
6k 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
10 views

JPG in anchor tag HREF resizes wrong in Android Chrome

In this HTML snippet, within a basic document served to both a Windows laptop (Firefox or Edge) and a Android mobile (Chrome) browser, the original JPG sizes fine, but when clicked-through the <a&...
0 votes
0 answers
10 views

How do I send a local file attachment on Expo Notifications IOS Attachments?

Similar to UNNotificationAttachment failing to attach image but Expo specific. Based on the question I refered, it supposedly needs to have a separate file. So what I did was. const [localAssets] = ...
0 votes
0 answers
8 views

Firestore documents caching in Firebase IOS SDK

I have read in the documentation that Firebase SDK automatically deletes least used documents from the cache. I am having a problem predicting what would happen in my following situation: In my Home ...
0 votes
0 answers
8 views

Cycle in dependencies between targets 'WatchApp' and 'App'; building could produce unreliable results

I'm trying to create a watch app for my current iOS app, but even though I'm not importing any frameworks or dependencies in my watch target, it gives me this error: Cycle in dependencies between ...
0 votes
0 answers
11 views

How Does ApkCombo Merge Split APKs Without Re-Signing

I’ve noticed that for split APK applications, ApkCombo provides a single APK file that can be directly installed. Out of curiosity, I compared the signature of the original APK from the official ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

1 vote
1 answer
39 views
+500

Retain size of error images when images have failed to load using an image loader

I am using KamelImage to load images to a LazyRow. However, when the images have failed to load I will show an error image. However, the problem is this error image never the same height as the ...
0 votes
0 answers
43 views
+200

UIViewControllerRepresentable loses its alignment when integrated with other SwiftUI dynamic views

Targets: Tested with iPhone 16 Pro with iOS 18.0 (Simulator) iPhone 6s with iOS 15.8.1 (Physical device) I have an UIKit UIViewController component (instance of UIPageViewController, repo: here). I'...
0 votes
0 answers
30 views
+50

Linking different .xcframework based on scheme

I need to integrate 3rd party SDK that was shared to us in a form of 2 .xcframeworks, each for different environment. We are already using 2 Flutter flavors which are mapped to 2 XCode schemes under ...
0 votes
0 answers
60 views
+150

How to draw text in android like I drew it in WinForms?

I drew text in both WinForms and android on bitmap. The text is: Καλώς ήρθατε στην επίσκεψη, font is Arial and font size is 12. In WinForms I used grahpics and set it to antialise. In android I used ...
0 votes
1 answer
42 views
+50

How to get Xcode to create an .xcframework rather than a .framework?

If you create new project from Xcode (v16) and choose framework, and then build it, it results in a .framework. How do you instead get it to build an .xcframework? When creating the framework project ...

Learn something new
These are the most recent articles in Mobile Development Collective
11 votes
467 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,522
10 votes
854 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
  • 354