Questions tagged [mobile-application]

Refers to a software application that is designed to run on a hand-held device, such as a smartphone, pda, or tablet.

Refers to a software application that is designed to run on a hand-held device, such as a smartphone, pda, or tablet.

1815 questions
6
votes
1 answer

Offline maps on PhoneGap using OpenLayers and TileCache

Is there a good tutorial on how to pre-cache a known part of a map using TileCache, store them on the PhoneGap mobile app database and load them up using OpenLayers? I went through many tutorials and still I haven't figured a way out to do all…
6
votes
0 answers

Does Amazon Mobile have a URI scheme to allow other apps to open Amazon Mobile on the iPhone?

How do you have an app redirect to Mobile Amazon's app from within another app? Can this be done from within AWS's API? Or is there a URI scheme (eg. amazon://amazon)
adammichaelc
  • 115
  • 5
6
votes
2 answers

Web application using Play framework and sencha

Ok, I have been thinking of developing a web application using the play framework as my back-end service and sencha for my front end stuff. Now I have been also looking into sencha touch and phonegap, which can help me make a native android…
6
votes
0 answers

Flutter autoroute with firebase authentication

I recently tried the flutter auto_route package for navigations in my projects because handling the navigations with user authentications is always challenging for me, I always tried to find a way that my path is easy. So in my current projects, I…
6
votes
2 answers

Can I use NextJs API routes to handle both web and mobile app?

I want to create web app in Nextjs and in the future mobile app in React Native. But I am confused what api to use. Do you think that the Nextjs api can handle both web and mobile apps? Is this possible and is it good idea at all? Should I use PHP…
6
votes
0 answers

How to read audio file in dart flutter?

In Python, It's possible to read an audio file as an array of samples and receive its sample rate with: array_of_samples, samplerate = librosa.load('filename.mp3') also: array_of_samples, samplerate = sf.read('existing_file.wav') Is there any…
6
votes
1 answer

How can we integrate Google dialogflow v2 api in iOS application?

I want to integrate google Dialogflow chatbot in my iOS application, I have setup everything in google console but don't know how to implement it in iOS(swift) side, can anyone know is there any sdk or document available through which we can…
6
votes
0 answers

How can I solve this Access was denied (www-authenticate header was: Bearer realm="https://accounts.google.com/", error=invalid_token)

In early, my app is fine but few hour later I get this error. My follow is login to google drive and show that file in my app. I/flutter (12843): Access was denied (www-authenticate header was: Bearer realm="https://accounts.google.com/",…
6
votes
1 answer

IAP is not working after published in to play store in alpha release

I am developing the flutter app which has In-app-Purchases feature, I have created the non-consumable product (one time) in the developer console. And I am using the official flutter package to implement IAP in the app -…
6
votes
1 answer

How to fix 'getter "documents" was called on null.' in flutter

I am using flutter and firebase to create a mobile app. I have 2 collections on my firestore and i wanna read all documents in a the collection "posts". However, when I do that, an error saying the getter "documents" was called on null. Widget…
6
votes
2 answers

How to display html text in flutter?

I have to display html text as like android provides Html.fromHtml to display htmltextview does flutter provides anythings to display html text?
Vithani Ravi
  • 1,807
  • 3
  • 13
  • 19
6
votes
2 answers

Programmatically change device developer options on Android

I'm playing around with android studio and I'm curious to see if it is possible access and change the developer options on my device when running my own app. Specifically I'm interested in changing the "Simulate color space" options. The values I…
andyJ138
  • 61
  • 1
  • 3
6
votes
1 answer

React-native linking getinitialurl() works even when I don't call from external link

I use linking for opening my app from the browser. When I tap the link for first in-browser my app run but incoming URL don't clear after that and linking.GetInitialUrl() always run with that URL. My schema is myapp://host and my URL on the web is…
Mohammad Mas
  • 111
  • 1
  • 1
  • 7
6
votes
6 answers

Why do we need pull to refresh for mobile app?

I'm wondering why I still see a lot of apps (including fb & instagram) that use pull to refresh feature for updating content? I mean, they have notification system that can tell itself to refresh when there's new data. I see that FB for instance it…
user1955934
  • 3,185
  • 5
  • 42
  • 68
6
votes
0 answers

Are entries in the Android key store, key chain deleted when an app is deinstalled?

When an App is deinstalled in Android, do the entries made by this app in the keychain and keystore deleted as well or do they remain like in iOS?