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
11
votes
2 answers

how to reset/restart an animation and have it appear continuous?

So, I am fairly new to iOS programming, and have inherited a project from a former coworker. We are building an app that contains a gauge UI. When data comes in, we want to smoothly rotate our "layer" (which is a needle image) from the current angle…
Chris
  • 629
  • 1
  • 10
  • 28
10
votes
4 answers

StaggeredGridView is undefined

import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart'; //import libray flutter_staggered_grid_view: ^0.5.0 // package Flexible( child: Container( padding: EdgeInsets.only(top: 16.0, right: 16.0, left:…
Saad Bin Zia
  • 133
  • 1
  • 2
  • 6
10
votes
2 answers

How to change the name of Flutter Application?

I just made a Flutter app following the instructions of this page, and I googled how to change the name of the application, and found this answer. But I can't change the name of the application from the manifest file. Initially android:name is…
Aman Vangani
  • 175
  • 1
  • 1
  • 9
10
votes
1 answer

media queries not applying inside the iframe of a mobile application

I have strange issue when loading a site within iframe of my mobile application. I am having a website with seven pages. When I browse my website url in iphone's safari. The content in all the pages are rendering perfect. but if I load the website…
Siva
  • 113
  • 1
  • 7
10
votes
12 answers

In J2ME and Android which one is more useful, useable and popular as mobile programming language or framework?

I am very interested in mobile application development. But which language or framework is more popular, useful and usable? I know Java well. If you have any idea and/or experience, please help me to take my decision.
Sadat
  • 3,493
  • 2
  • 30
  • 45
9
votes
1 answer

Captcha in mobile application and web application

I have read some web site that captcha is not needed in mobile application. I have some doubts. Why captcha is needed in a web application and not needed in a mobile that access the same application?
Miya
  • 547
  • 3
  • 7
  • 13
9
votes
4 answers

Mobile application data management

My question surrounds around one single point - data management in mobile application. I have created a mobile application where data comes from server. The data includes both text and images. Following are the steps I am doing for this : First…
Nitish
  • 13,845
  • 28
  • 135
  • 263
9
votes
3 answers

Difficulty deploying Django app on Android and iPhone.. planning on switching to PHP instead of Django

Okay so I am 1/4th finished creating a django application (where users must register an account, log in and can interact with other users of the application, basically a social network. And the application has a PostgreSQL database). I decided to do…
8
votes
2 answers

An unexpected packet was received before the handshake. - Android Studio

When I run the Flutter project on Android Studio, before running the application on the emulator, the event log displays "An unexpected packet was received before the handshake" for six to seven times. After that, the application runs properly on…
Aetooc
  • 111
  • 1
  • 10
8
votes
3 answers

error: package android.view does not exist

I am getting this error in view bindings file generated by Android studio. I have added buildFeatures { viewBinding true } to the app build.gradle file.
saurabh vaish
  • 123
  • 1
  • 1
  • 5
8
votes
0 answers

How to handle multiple environments for a mobile app?

Consider an enterprise mobile app available for both Android and iOS, with build and release pipelines. What I'm trying to achieve is a promotional model for the release pipeline, such that the app binaries are built only one time in a build…
Cocowalla
  • 13,822
  • 6
  • 66
  • 112
8
votes
1 answer

Reverse Port Forwarding in iOS over USB

I have a web socket server on desktop and client on iPhone device. I would like to communicate with them using USB rather than any network. I have implemented it on android using adb reverse but not able to find any solution for iOS. I have tried to…
8
votes
5 answers

Turn Angular 2 app into mobile app

We have a responsive web app developed using AngularJS 2. We would like to wrap it inside a package to redistribute it as a mobile app. Android is our priority. We have looked at Cordova. Are there other options available for turning a web app into…
Blair Osbay
  • 217
  • 1
  • 4
  • 13
8
votes
1 answer

How does OAuth2.0 security works in Mobile APPs ? What happens if client_id gets compromised?

OAuth 2.0 in web application works using redirect URI, where Authentication provider redirects to redirect URI & verifies same with registered one which developer provides during app registration before it does redirection with access token. In …
Anil Sagar
  • 133
  • 7
8
votes
2 answers

Background data sync for mobile apps

We're building an API and mobile app on top of a database that has a few hundred thousand records in the main table of interest. Our mobile developer is pushing hard about pre-loading the app with the full table in a local db, then having a service…