Questions tagged [mobile]
**Mobile application development** is the process by which application software is developed for mobile devices (usually low-power handheld or portable devices).
309 questions
1 vote
2 answers
154 views
Integration testing strategy for a volatile domain
Imagine following scenario: Our team is working on a mobile project in biometrics. The team delivers a client facing SDK. Our work relies on another internal team, that is delivering algorithms in a ...
0 votes
0 answers
93 views
Utilising Social Logins via OAuth2 in native mobile apps
This question has been asked over and over again, but I have not yet found a satisfying answer: How to use Social Logins (via OAuth2) to obtain access tokens for your backend if your only clients are ...
0 votes
2 answers
3k views
Best approach to sync data between mobile app cache and the server db? [duplicate]
I have an offline-first mobile app. The user enters data, data is saved into local SQLite database. The server has Postgres database. I need to build a two-directional sync strategy that keeps data on ...
0 votes
1 answer
141 views
What is the name of the approach (practice) when several unrelated entities are returned at once in the response to a request [closed]
For example, for a mobile frontend, you need to get all the data for rendering at once. The interface is divided into blocks, in which there can be both blocks with a catalog (categories) and other ...
0 votes
3 answers
295 views
Feature Flag based architecture pattern for iOS/Android applications
Am exploring options of adopting feature flag based development to deliver builds faster instead of getting tangled in release branch management rabbit hole. As of now I am not able to find a good ...
0 votes
1 answer
120 views
Design a model for a user
There has been a change in the project I am working on. Until today, there was only one type of user in the system. From the moment you logged in, you had all the information about the user. The new ...
0 votes
1 answer
165 views
How to estimate scaling up costs/resources-needed of a project? [closed]
Let's consider an entrepreneur decides to create a new company like Airbnb, Netflix, etc. The problem is about the software part. He doesn't know how long it takes to create the mobile/web app? How ...
1 vote
1 answer
523 views
Is it possible to store data for an offline-first native app that syncs with a web version without a backend?
I'm working on a somewhat typical notes app that I plan to create with React Native. Since the usage involves a lot of typing, it makes sense that there should also be a web version that users could ...