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
+424
18.5k Members
+170
Contact

Pinned content

View all 2 collections

Mobile Development admins have deemed these posts noteworthy.

Pinned
19 votes
5k 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
7k 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
2 views

how to set Kotlin WebView's keyboard to work properly?

I have been facing an issue of the soft keyboard for Medium Phones, it simply shows up a menu and i would have to click in it so it pops up the keyboard option within other options too, i tried to ...
0 votes
0 answers
5 views

After upgrade to flutter 3.27 app redirect to not found page on IOS release only

After deleting and reinstalling the app in release mode on iOS, it redirects to a "Not Found" page. Even after disabling all logic in the splash screen (leaving only the view), the issue ...
0 votes
0 answers
9 views

Why are the probabilities always the same with MobileNet V2 model (mobilenet_v2_1.4_224.tflite)?

I am implementing a TensorFlow Lite model in my Android application using the mobilenet_v2_1.4_224.tflite model, which I downloaded from the TensorFlow GitHub repository: MobileNet from TensorFlow ...
0 votes
0 answers
4 views

iOS and Focus on Search Form on a Webpage: Unwanted Enlargement of the whole page

I have a form field of the type "search" on a valid* page: <search> <form action=https://cse.google.com/cse method=get target=_blank> <input type=hidden name=cx ...
0 votes
0 answers
6 views

UITextView in input bar does not stay attached to keyboard after dismissal

I’m building a chat feature for my iOS app with a custom input bar (UITextView and "Send" button) that stays attached to the keyboard. When the user types, the input bar behaves as expected ...

Looking for an extra challenge?

View all bountied questions

These questions have a bounty on them

1 vote
0 answers
31 views
+200

Streaming screen record from WebRTC app - route audio to internal

TL;DR How to route remote participants voice in WebRTC call so they can be treated as internal sounds by Streamlabs or similar streaming apps? Long story My game is using Google WebRTC library for the ...
0 votes
1 answer
34 views
+100

In iOS, Change accessibility text of a UIView element based on the focus direction

Can the accessibility text of a UIView be changed based on the direction the focus it received. Example: I have a layout as rendered below, Top Label followed by Collection view, followed by Bottom ...
0 votes
0 answers
19 views
+50

How to check if a SCNNode's geometry is visible and not obstructed by other nodes in SceneKit?

I have a container with many toy nodes. I want to touch the screen to pick up all the visible nodes. I did a hit test to get the list of all nodes in my touch location. However, some of the nodes are ...
0 votes
0 answers
57 views
+500

Android management API onboard a device error

We are using Android Management Api to provision an Android 14 device with the native Google DPC using the '6-Taps at startup' method,and are really struggling to get it working. (We have tried it on ...
0 votes
0 answers
27 views
+50

android studio getting Caused by: org.bouncycastle.openssl.PEMException: malformed sequence in RSA private key when trying to run test

i'm trying to run basic test does not include any encryption but im getting this error: caused by: org.bouncycastle.openssl.PEMException: malformed sequence in RSA private key logs: 2024-12-07T23:12:...

Learn something new
These are the most recent articles in Mobile Development Collective
11 votes
565 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
11 votes
916 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
  • 364