Skip to main content

Mobile Development Collective

Questions

Browse questions with relevant Mobile Development tags

2,084,982 questions

0 votes
0 answers
4 views

Updated compileSdkVersion to 34 in React Native project, but unable to connect to Metro server

I recently updated my React Native project's compileSdkVersion from 33 to 34 to comply with Google's new policy. After making this change, I am unable to connect to the Metro server. Here are the ...
Siddhant Shelake's user avatar
1 vote
0 answers
3 views

NECP_CLIENT_ACTION_GET_SIGNED_CLIENT_ID [80: Authentication error]

I have a Cordova Ionic app. When I attempt to run the app onto my physical device (iPhone 14 Pro) via Xcode (version 15.4, 15F31d), the logs show the following error message in the logs: ...
DanielRead's user avatar
  • 2,648
0 votes
0 answers
5 views

Cannot display an image in Constraint Layout

I have this xml but the image is only shown when I hard the width and height of the image. I am not sure why the constraints as I provided in the code are not working. <merge xmlns:android=&...
MXC's user avatar
  • 488
0 votes
0 answers
11 views

Keyboard in swiftui is overlapping UI elements

Whenever i click in my textfield, the keyboard is overlapping my button, and i would like that the view would go up to have space between the button and keyboard this is my code import SwiftUI @...
Rafa Log's user avatar
0 votes
0 answers
8 views

How do I inspect a file in Flutter's Application-Documents-Directory?

After writing the file counter.txt Future<File> get _localFile async { final path = await _localPath; return File('$path/counter.txt'); } located in a folder specified by ...
Sam7919's user avatar
  • 611
0 votes
0 answers
7 views

Pixel tablet in AS emulator is not loading the correct layout version

My app has different layout versions for 'port', 'land', 'SW600dp' etc., which load correctly into the emulator for other devices such as Pixel 7a and Pixel C, but the emulator for the Pixel Tablet ...
BillC's user avatar
  • 155
0 votes
0 answers
5 views

Mongo DB Driver for Android Native Jetpack Compose. I do not want to use Mongo DB Realm or Atlas App

Mongo DB Driver for Android Native Jetpack Compose. I do not want to use Mongo DB Realm or Atlas App. Expecting to get a library or mongo db driver. just like pymongo for python. I do not want to use ...
Rasik Mohammed's user avatar
1 vote
0 answers
11 views

How to keep the button over the other elements even if it is disabled in Jetpack Compose?

I have a screen where I display a list of items: Scaffold( content = { //List of items }, floatingActionButton = { Button( onClick = { if (...
Always Learner's user avatar
1 vote
0 answers
19 views

App crashes on android 14 devices after mandatory update to targetSdkVersion to version 34 in React Native

After upgrading targetSdkVersion to version 34 and publishing a new version of my app in the Google Play Store, I receive an email from google stating that: Your app still uses a version of the Play ...
Afonso Salvador's user avatar
0 votes
0 answers
7 views

iOS: Left bar button in navbar flashing when navigating back

I'm customizing the navbar and their bar buttons with a custom font using this code let textAttributes = [NSAttributedString.Key.font: AppTheme.ptsansMedium(withSize: 17.0), NSAttributedString.Key....
Felipe Peña's user avatar
  • 2,828
0 votes
0 answers
14 views

EAS Authentication with Apple Developer Portal Failed

I am encountering an issue while trying to authenticate with the Apple Developer Portal using eas-cli. However, I received the following error message: Authentication with Apple Developer Portal ...
Zitong Shen's user avatar
1 vote
0 answers
15 views

Error with nativescript compilation due to gradle version change?

I have a nativescript project that is built through jenkins. Up until July 9th, the project built without any issues. On that same day, and after a commit, the build stopped working. To make sure that ...
Miguel Mesquita Alfaiate's user avatar
-2 votes
0 answers
8 views

How to routing with OSM2po and pbf file in android?

I tried to test offline routing with PBF file in android studio. I read this link https://osm2po.de/ and tried this code: public class Main implements Configurer { final static String LOGLEVEL = &...
Ali Hosein pour's user avatar
0 votes
0 answers
18 views

Android: Locking Screen Orientation on Tablets

I have built an Android application that is only designed to be used in portrait mode. I am aware that there are a few workarounds, one of which is specifying the orientation in AndroidManifest.xml as ...
Carl Koh Wei Hao's user avatar
0 votes
0 answers
6 views

Multiple HttpMessageHandler inherited class into Typed Client DI with .NET MAUI

I'm currently facing an issue configuring my HttpClient in DI for an Android MAUI app. My current configuration is like this: public static MauiApp CreateMauiApp() { MauiAppBuilder ...
Guillaume D's user avatar
0 votes
1 answer
17 views

Why my test-receive-notifications app needs multiple restarts to receive notifications?

I have this kotlin application. It's sole purpose is to test if the FCM notifications are received (so the most basic setup here) The problem I have and cannot get a root cause for this is that it ...
fewfew's user avatar
  • 290
1 vote
0 answers
20 views

react-navigation navigate function causing unhandled exception 'RCTComponentViewRegistry: Attempt to query unregistered component

I am receiving an event from a react native webview and in that event attempting to navigate to a different stack. However the app crashes every time with the following *** Terminating app due to ...
Mingo's user avatar
  • 886
0 votes
0 answers
24 views

is Flutter Transparent/Translucent Background App no longer supported or more steps are needed

I am trying to create a flutter app with translucent or transparent background. I tried following instructions found in stackoverflow, and from ChatGPT. but only getting black background instead of ...
Nobel Okelekele's user avatar
0 votes
0 answers
18 views

react native modal does not get rendered on IOS

I have a react-native: "0.74.3" project and I want to show a modal to my users. So I intalled react-native-modal: "13.0.1" into my project. I developed the way I want to show the ...
minikdev's user avatar
  • 101
0 votes
0 answers
11 views

What gradle entries are required for implementing KSP and Room in a Kotlin Multiplatform

I am in the process of converting a kotlin application to kotlin multiplatform (anroid only for now to get through initial configuration) with room. This included moving to a libs.versions.toml file ...
GeorgeRussell's user avatar
0 votes
0 answers
3 views

Query all channels with unread messages by an specific user in StreamChat sdk for iOS app

https://getstream.io/chat/docs/ios-swift/query_channels/ In above link have option to filter and sort based on options they provide. But not able to create query to only get channel list only having ...
Mehul Chuahan's user avatar
-1 votes
0 answers
11 views

React Native App Stopped Logging Conversions to Google Ads

I have a React Native Expo app for iOS that uses Firebase and Firebase Analytics to log user installs. The app correctly logs events to Firebase and Firebase Analytics, where I can see events such as ...
Viktor Pesic's user avatar
0 votes
0 answers
10 views

KMP issue with add material3 dependency

Hello there i am starting my first project with kotlin multi platform i am trying to add material3 dependency by adding this implementation(libs.androidx.material3.android) into commonMain....
Wesam Altorman's user avatar
0 votes
0 answers
4 views

Query Parameter problem when using WireMock

My application iOS is calling a url like that //api/myusers/6697cdbb4c11c34a8f6cda9e?access_token=0h84Bus24fdRrGGxmLIcLR63KUvs8XBkZrlSIW16CYmK8GBpRRRnSw2f5Jh8CMtk&locale=fra i configure this url ...
tamtoum1987's user avatar
  • 2,039
0 votes
0 answers
8 views

override fun onAdFailedToLoad(error: LoadAdError) { Needs explanation

Within my application the next action is initiated when the interstitial add is dismissed override fun onAdDismissedFullScreenContent() { // Called when ad is dismissed. Log.d(TAG, "Ad dismissed ...
Frankmango 's user avatar
0 votes
2 answers
21 views

TextField data is not getting clear

When the user enters a password value and cancels the dialog, the dialog is pre-filled with the previous password, but the email is successfully cleared. However, the password is not cleared. If I ...
Shivam's user avatar
  • 180
0 votes
1 answer
13 views

android:exported needs to be explicitly specified for <receiver>. required to specify an explicit value for `android:exported`

so I am trying to build my app but unfortunately unable to perform it and encountering this error D:\Code\Flutter\Manager\mmanager\android\app\src\main\AndroidManifest.xml Error: android:exported ...
Tanmay Nandwana's user avatar
0 votes
0 answers
13 views

How to dont lose textView

I have a FrameLayout and using the bottom navigation View there is a switching of 3 fragments. When the button is clicked, TextViews are created in the Main Fragment. The problem is that when ...
tumannick's user avatar
0 votes
0 answers
12 views

I can't make a purchase of flutter ios in_app_purchase

I have a situation where when using the in_app_purchase package in the sandbox in the iOS version, I cannot buy an item using the buyNonConsumable method, an error occurs related to transactions Error:...
Sifer Tv's user avatar
0 votes
0 answers
8 views

Is it possible to create a fully-featured Kotlin multi-platform web browser using GeckoView for Android, Windows and macOS?

Currently, If I need to create a fully-featured web browser for all three major platforms, I have to: iOS and iPadOS: Program in Swift and use WKWebView (WebKit) for the browser engine which lacks ...
Vulkan's user avatar
  • 1,044
-2 votes
0 answers
10 views

Node.js Video Upload Feedback Project Not Working on iPhone

I'm working on a project where users can upload their videos and receive feedback using the Gemini and OpenAI APIs. The frontend is deployed on Vercel, and the backend is on Railway. The project works ...
estakkk's user avatar
  • 29
0 votes
0 answers
11 views

Where are the Google code samples/Labs for Jetpack Compose HorizontalMultiBrowseCarousel & HorizontalUncontainedCarousel

My current Android application as a use case to allow the user to swipe through multiple photographs. I researched and found that Android jetpack compose now has two Carousel components. however apart ...
RichardMillhouse's user avatar
0 votes
0 answers
7 views

How to know if item is highlighted by TalkBack frame?

I'm working on accessibility issues in my app, written in Kotlin using Jetpack Compose. I have a bug that I think I can solve if I could know when a UI component is highlighted with a TalkBack frame - ...
dodgeRam's user avatar
-1 votes
0 answers
12 views

Why can apps be granted unlimited access to the photo library?

Some apps allow the user to add photos from the photo library. There is also often a setting where the user can give the app full access to the library or some restricted access (which is often more ...
August Karlstrom's user avatar
0 votes
1 answer
21 views

Delay in Notification Android Kotlin

I want to set notification for every day, at user-selected hours and minutes, but the issue is that some times it gets notification on time and some time it delays with 10, 20, 30, 40 seconds delay, ...
Shivam's user avatar
  • 180
-1 votes
0 answers
13 views

Develop an AirPlay feature to play DRM content using Swift

I am developing an audio player for iOS using Swift. Currently, the player can play DRM-protected videos, supports subtitles, and allows you to change the audio track. All these features are also ...
Javier Núñez León's user avatar
0 votes
0 answers
4 views

Expo Native View - How to add native dependencies

I'm trying to create a yandex map kit with Expo native view. When I read the android document on Yandex, it asks me to add the following dependencies. Open the project's build.gradle file. In the ...
Yasin Beyazlı's user avatar
0 votes
0 answers
10 views

Embed Flutter Plugin in Another Flutter/Android/IOS App

I've created a flutter plugin for a corporate company. How can I use this plugin feature in another flutter and Native android/IOS application without sharing the code. I tried out several methods....
Amal James's user avatar
0 votes
0 answers
9 views

TestScope doesn't work in Kotlin Multiplatform

I was trying to run a unit test of my kmp code on android(local) with TestScope by injecting it into the view model. Here's the code: class FrankfurterRepository(engine: HttpClientEngine) { private ...
Yauheni Mokich's user avatar
0 votes
0 answers
9 views

Combining user input of activity and its hosted fragment

I am developing an Android app in java using MVVM architectural pattern and Data Binding. The app has an activity which hosts two fragments (one at a time) using NavHostFragment (planning to add more ...
Kevin's user avatar
  • 1
0 votes
0 answers
10 views

This apk is not installed from playstore

I have download blinkit delivery partner apk in third party it shows error like this apk is not download from playstore but if we download it in playstore then working how to solve this issue and why ...
Nithiya's user avatar
-1 votes
0 answers
6 views

Android Spinner Should Open New Screen For Selecting Spinner Items [closed]

Here's the image showing what I wish to do basically I'm making a currency converter and I want a new screen to open for selecting currencies instead of a dropdown meanu can anyone help me with the ...
Saurabh Singh's user avatar
-1 votes
0 answers
10 views

I am trying to link WhatsApp to Salesforce CG Cloud Mobile Application (Android and iOS)

Salesforce Mobile Links Page I want a url which will open WhatsApp application homepage on both Android and iOS. I used whatsapp://app isn't working. After some trial and error, I was able to open ...
Anees Patel's user avatar
1 vote
2 answers
24 views

How to efficiently manage state in a large-scale Flutter application?

I’m working on a large-scale Flutter application and I’m facing challenges with state management. I’ve tried using setState, but it quickly becomes unmanageable as the app grows. I’ve also ...
Anu D's user avatar
  • 13
-3 votes
0 answers
21 views

SwiftUI task modifier called multiple times [closed]

The task modifier of SwiftUI view is supposed to be called only once -- the first time view is created. But I am seeing that under some conditions, it is getting called multiple times causing lot of ...
Deepak Sharma's user avatar
-1 votes
0 answers
34 views

Swift: Complex matching algorithm needed

I have a problem implementing an algorithm to match invoices with transactions. So far the matching works quite well but from the code with the comment: // Search for a transaction that can cover ...
Roadrunner's user avatar
0 votes
0 answers
15 views

Kotlin Multiplatform + Jetpack Navigation + Android Studio Koala 2024.1.1 Patch 1 issues

I've started moving one of my older project (Java) to the KMP setup, my goal was to just move around the structure to KMP and slowly import Kotlin code from the shared folder into the androidApp. I ...
Suau's user avatar
  • 4,698
0 votes
1 answer
19 views

AutoFill password into UITextField

I want to implement such a function: a password UITextField, using the system Jiugongge numeric keypad(textField.keyboardType = .numberPad), and enable to automatically fill the password. like this: ...
Shilai Zhang's user avatar
0 votes
0 answers
13 views

How to tap a button in a UITest that is in and out of a swiftui accessibilityRepresentation?

If the View looks like this: struct Screen: View { var body: some View { VStack { ... NavigationLink { LoginScreen() } label: { ...
Celina's user avatar
  • 583
0 votes
0 answers
20 views

Selecting a camera based on Field of View (FOV) preference

We are working with a phone which supports both, the Android Camera2 API and ARCore. If at all relevant, the phone is the Samsung S20 FE. With the Camera2 API we gain access to camera configurations ...
cptjacksparrow's user avatar


15 30 50 per page
1
2 3 4 5
41700