Questions tagged [android-development]
Used to tag questions related to Android programming and new development features. Android is a platform and complete development stack from the Operating System to the APIs. developer.android.com is the official site for information about Android development.
111 questions
4
votes
2
answers
431
views
Backup for an Android offline password manager
I am building an Android password management app, where passwords are locally kept for security reasons. The network endpoints are only for creating an account, email verifications etc.
I want to ...
0
votes
0
answers
53
views
Google Play API development
I have a simple product consisting of 3 apps - Android mobile app in Google Play, backend API and backend administration website.
The API is connected to various external services but this question is ...
2
votes
1
answer
1k
views
How to integrate Androidx Paging-3 in Clean Architecture?
This blog on "Clean Architecture" describes how to build a modular Android application along with using Clean Architecture.
In that example project, the author places the business logic in a ...
-4
votes
1
answer
79
views
Android app development (daily journal type)
I want to get help from you all about building an android app that is capable of logging daily journal type data. I want to have these feature primarily in the app:
Capable of logging the daily logs.
...
4
votes
3
answers
244
views
Creating sub-classes of all external classes
I am in a team developing Android applications in an enterprise corporate .One of team members suggested that we should create our own classes, so extending every classes of UI kit (Material Design).
...
1
vote
0
answers
777
views
Common business logic in android MVVM
Requirement
I am currently working on an android application that uses MVVM, live data and databinding. I have a use-case where I need to show a Comment button in multiple screens in my android app.
...
-1
votes
3
answers
297
views
What makes more sense: (a) To have multiple apps accessing the same DB (b) single app
On Android, do people create separate apps accessing the same database? For example an app that has users, producers and a customer support.
How can one decide if it makes more sense to have a ...
-1
votes
4
answers
2k
views
How do I prove an app is mine? [closed]
So I am in the process of finishing an app (android for now), and I have a doubt about if I should have papers that proof that I made that app.
Its the first time for me to publish an app, and I am ...
-2
votes
1
answer
152
views
What does app class means? [closed]
In framworks for developing app whether it be a joomla or react or angular i see app class. What does it mean. Like if there is some user class, or some input class or that make sense for some purpose ...
1
vote
1
answer
2k
views
Do shared ViewModels contradict MVVM?
I want to follow the MVVM app architecture. I also need to have some communication between some fragments. But the official approach is pretty confusing.
Taken from the docs (https://developer....
1
vote
1
answer
186
views
Database structure for an app used to capture data in warehouses
I am in the process of creating an android app for our clients that would replace the paper-trail in their facilities with electronic inspections.
Although I have coding experience, I have little ...
0
votes
0
answers
2k
views
Sending push notifications to android by nodejs server
I am having the requirement in my project, that nodejs server has to send the notification (kind of push notification) to our mobile, and user( or mobile holder ) have to act on that notification like ...
-2
votes
1
answer
188
views
Connecting android app(android studio) to myphpadmin database(already on the server)
I have a website for admin and a mobile app for normal user. Both of them share a same database which is now on the cloud(The website for admin is already deployed with the database on the server). ...
1
vote
1
answer
395
views
Some questions on mobile push notification?
I need to work on android mobile push notification. I have recently gone through some of the tutorial on google. I would like to summarize
the my understanding first
Developer registers the app with ...
2
votes
1
answer
170
views
Preloaded/Starter Data in an Android App when installing?
I'm working on my first android app. It's a companion app for a video game, and it should come with preloaded data. I'm not entirely sure how to best go about this. I apologize if this has been asked ...
0
votes
1
answer
1k
views
Android Clean Architecture - Seperate Usecases, Single Usecase, or not a Usecase at all?
I'm working on refactoring an older project of mine to follow the Clean Architecture paradigm (and loving it so far) and one of my components is causing me a bit of confusion in relation to whether or ...
0
votes
1
answer
451
views
Watermark on Video implementation , Server or Client
Below is the context,
Right now i'm developing an android application, which will allow the user to upload the video and image to the server. I want to allow the users(his friends) to download the ...
-1
votes
1
answer
104
views
Avoiding extra parameters through API or device (Android, iOS)
What is the best practice for REST API call from and device (Android, iOS). I am getting extra parameters/fields in JSON response, while calling an API. Throughout the the application there are ...
1
vote
1
answer
389
views
Unicode Telugu language characters
I am developing a mobile app in android in which I use Telugu (Indian language) texts. On my mobile Telugu language alphabets are available. Therefore, I am not facing any problem for testing my app. ...
2
votes
1
answer
1k
views
Understanding application licenses when using third party libraries in an android project
I'm developing an app for the 2nd time but it's the first time i'm using third party libraries in my application. One of the libraries seems to have an MIT license and the other is the android ...
0
votes
0
answers
128
views
Mobile development and infinite List pattern
I m currently working on a React Native application which aims to provide à huge list of items, using infinite scroll and a local state (no matter the technology / plaform, it's stored in RAM) of the ...
-1
votes
1
answer
196
views
What are some ways to compare and contrast software architecture strategies?
I am currently working on an Android project that I have concluded needs refactoring done for a core part of the app experience. Let's call this part of the experience "Search".
From looking at bug ...
4
votes
0
answers
898
views
Handling account roles in Android app
I'm building an Android app where different "types" of users can log in - lets say User and Admin are the two roles (there could be more than two). User can access some views in the app, by pressing ...
3
votes
3
answers
971
views
How to keep Activity navigation logic generic enough to be reused in different workflows
I structure my Android application following Uncle Bob's Clean Architecture which basically comprise of at least following relevant layers:-
Presentation - Using MVVM approach. This layer contains ...
3
votes
1
answer
365
views
Architecture recommendation for Android
Recently I developed an Android application which is very difficult to maintain. We are stuck in a complicated situation. We developed Android Apps which contained 500k LOC and another team developed ...