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
+623
14.3k Members
+217
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

-1 votes
0 answers
5 views

Programming hurdles---Building a logic

I need a piece of advice from any one expert in progrmming.. I have no background of computer science but I started learning android development in 2022. I have llearnt all the basics syntex of java ...
0 votes
0 answers
16 views

.tolistasync() , is it available in .net8 maui android app?

enter image description herei am working on .net maui android app . i have big data like 8000 record . i save data once customer install the app in sqlite db one time , then retrive from database for ...
0 votes
0 answers
5 views

ML kit camera text recognition not working when navigated from another screen

I asked a previous question here where the camera preview screen with ocr wouldn't work when navigated from another screen and I managed to get it to work but now the problem is the ocr function doesn'...
0 votes
0 answers
8 views

Publishing private app to Managed Google Play

I'm trying to publish a private app to Managed Google Play. According to this documentation, I have to enable Managed Google Play on Release > Setup > Advanced settings > Managed Google Play. ...
0 votes
0 answers
12 views

MAUI .NET 8 on Android -Unable to load DLL 'sqlite3'

I have created a new MAUI .NET 8 project and migrated the Xamarin forms project code. When I tried to run the project with the Android device in Visual Studio 2022 (windows), which threw the exception ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

0 votes
0 answers
51 views
+100

LazyVGrid and scrollTo issue in SwiftUI

I have encountered an issue while implementing the scrollTo mechanism for a lengthy list of products displayed using LazyVGrid in SwiftUI. Does anyone have a potential solution for this problem? Below ...
0 votes
0 answers
38 views
+50

How to Synchronize Animations of Multiple Rows in Jetpack Compose?

I'm working on a Jetpack Compose application where I have multiple rows of components that I want to animate simultaneously. The animation in the first row(scale) is different from the second row(...
0 votes
0 answers
29 views
+50

iOS Simulator Fails to Launch .app File Built with xcodebuild

I'm creating a build to use in UI automation with the following xcodebuild command: xcodebuild -scheme Test-QA \ -project $GITHUB_WORKSPACE/iosApp/Test.xcodeproj \ -sdk iphonesimulator ...
1 vote
1 answer
24 views
+100

Clean Architecture Dependency Graph (Multi module)

When it comes to the Clean Architecture Dependency graph I see two version: The recommended one by Google: presentation -> domain -> data The other: presentation -> domain <- data What ...
0 votes
0 answers
63 views
+50

Problem Downloading and Generating Live Photo from Firebase Storage in SwiftUI

I am working on an iOS application using SwiftUI where I want to convert a JPG and a MOV file to a live photo. I am utilizing the LivePhoto Class for this. The JPG and MOV files are displayed ...

Learn something new
These are the most recent articles in Mobile Development Collective
5 votes
144 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,502
8 votes
531 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