Questions tagged [mobile-development]

This tag should be used for questions about software development aimed specifically at the mobile environment but not directed at a specific mobile environment such as iOS or Android.

807 questions
3
votes
0 answers

How to secure APIs for mobile Application without login authentication

I am working on a project to develop a mobile app using Laravel 8. I have used Laravel sanctum for generating tokens and User authentication. My project requires to call certain APIs prior to user login for displaying general data on the mobile app.…
3
votes
1 answer

Implementing Call recording in React Native

I am working on creating something to record call in my react native App. For this I have used ReactNative Headless task to get the status of phone and react-native-audio-recorder-player for recording the call but at the end I am getting a file with…
3
votes
1 answer

How to change bluetooth device name in Flutter?

How can I set my device name for bluetooth in Flutter? In Java, there is one plugin BluetoothAdapter which could be used to set the bluetootg device name, but in Flutter, I did not find a way to do this. thanks
Python Test
  • 95
  • 1
  • 5
3
votes
1 answer

How to connect my Flutter App to my Java WebApp?

I have created my website using Java Enterprise Edition (JSP/Servlets) and MySql 8 for my database. It is a typical CRUD application with a feature that let the user track the car's location. I thought of using Flutter since it will save me time…
Zied Orabi
  • 73
  • 1
  • 6
3
votes
1 answer

How to Read Json/Text Files from Asset Folder in Xamarin

I have a xamarin app where I need to read from a json file I have added in the Asset folder. This is how the folder tree is in the solution explorer. The code being used to read this json file is called from the User class in the Model folder. This…
Isaac Ikusika
  • 116
  • 1
  • 1
  • 8
3
votes
2 answers

Flutter bottom nav bar

I was experimenting with bottom navigation bar in flutter. Again, very new to flutter. Can I use custom svg icons instead of the icons provided by flutter's material in BottomNavigationBarItem. It would be amazing if you could help me out with a…
Prashant Mishra
  • 309
  • 6
  • 14
3
votes
0 answers

Peer to peer connection using react-native

I am looking to build a Mobile app using react-native that should be able to find nearby phones with the same app installed. At a highlevel, I am looking for something like this: This app should be able to send a kid of identifier (GUID) via…
user1868744
  • 963
  • 1
  • 13
  • 27
3
votes
1 answer

Missing Default Constructor error in Xamarin Forms

I am having trouble figuring out how to solve this error. It says "Missing Default Constructor" in the MainPage.xaml file. I would gratefully appreciate the help! MainPage.xaml : contains the navigation menus.
3
votes
1 answer

React native VS Flutter which is better

I'm new in cross-platform mobile development, I wanted to know which is better between React Native and Flutter. Also, what is the best resource for the best one between them?
3
votes
2 answers

How to add icon to errorText below TextFormField?

How to add icon to errorText below TextFormField using Flutter?
Prot_CN
  • 61
  • 2
  • 9
3
votes
1 answer

Is there a flutter widget to display 360 degree Image?

I'm developing Flutter application to display Images in a listView those images coming from the server, but when requesting them, and displaying them in a list, which widget will provide the functionality for 360-degree image viewer I searched for…
3
votes
1 answer

Where is the libraries folder in Xcode?

I am getting an error 'linker command failed with exit code 1' when I try to build my mobile app in Xcode for the iPhone. In looking up solutions to fix this I came across this advice: "the suprojects should be removed, which is everything under…
FairyQueen
  • 2,283
  • 7
  • 37
  • 57
3
votes
2 answers

react-native-maps: How to update user location recieved from remote server periodically

I'm very new to react native and somehow I was able to display a map and some markers on it. But I need to read set of locations (coordinates) from a remote server and display on map. In other words, makers need to be change their locations. I tried…
3
votes
1 answer

Flutter WebView Plugin - How To Handle Local Storage Variables

Background: I am working on a mobile application in which I use a WebViewScaffold to load an online directory. This particular directory provides a guided tour on initial visit. Problem: Each time I navigate to the directory WebView, the tour…
PityTheFool
  • 298
  • 1
  • 3
  • 11
3
votes
1 answer

Using react-native-camera in ClojureScript re-natal development

Has anyone used 'react-native-camera' component with re-natal? I am just trying out the react-native-camera component in the default re-natal skeleton project. My code is following (ns wmshandheld.android.core (:require [reagent.core :as r :refer…