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
+677
14.9k Members
+199
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
5 views

Flutter's Android Apps white out on the second run or later, if without the Emulator's 'Wipe Data'

The app ran well the first time with no problem. But then when I stopped the program and ran it again, the emulator failed to launch the app and whited out like the following picture, without throwing ...
0 votes
0 answers
7 views

using kotlin.reflect on the elements of a array not working

I am trying to use kotlin.reflect to get the names of variables in this array all. Then iterate over the array and get the name of each variable a, b, c. But well its not working and im not sure how ...
0 votes
0 answers
6 views

Android : sound recognition release version

I know that sound recognition feature was introduced on iOS 14. But what about android ? When was it released on Android ? Thank you
0 votes
0 answers
8 views

Firebase returns no result in ios testflight using capacitor

Hi im using nextjs with capacitor and have firebase authentication. everything works fine on local configuration import { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { ...
0 votes
0 answers
10 views

Android resource tools TargetApi Doesn't Work?

I am getting the following error when building my Android app while compiling by syles.xml file: Error: android:windowSplashScreenBackground requires API level 31 (current min is 30) [NewApi] The ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

0 votes
0 answers
26 views
+50

SSL Handshake Aborted Error with Coil in Kotlin

I'm currently working on a Kotlin project using coil3 for image loading. I'm encountering an SSL handshake aborted error with the following details: javax.net.ssl.SSLHandshakeException: Handshake ...
0 votes
0 answers
57 views
+50

how to fix open failed: EACCES (Permission denied)

i am getting W/System.err: java.io.FileNotFoundException: /storage/emulated/0/Pictures/JayTN24/mens_shirt_0.jpg: open failed: EACCES (Permission denied) public void shareWallpaper i have send image ...
-1 votes
0 answers
29 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 votes
0 answers
19 views
+50

Archive Fails only when invoking fastlane from Remote Jenkins Server works totally fine when done locally or done from Jenkins Localhost

I am trying to build pipeline for our iOS project using (fastlane + Jenkins). It works totally fine when I am running machine on local host but fails when I connect the same AWS EC2 instance to our ...
1 vote
1 answer
77 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 ...

Learn something new
These are the most recent articles in Mobile Development Collective
6 votes
203 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