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.
110 questions
0
votes
0
answers
48
views
Trying to pass a funtionality to a composable , what is a better design?
So i have a bio-metric prompt implementation as below
class BiometricAuthentication(
private val activity: AppCompatActivity
) {
private val resultChannel = Channel<BiometricResult>()
...
0
votes
0
answers
42
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 ...
1
vote
1
answer
116
views
am I understanding MVVM correctly? [duplicate]
ViewModel has Two-way data binding with UI which means UI can access the data from ViewModel and can update the view models data.
The Model has one-way data binding and is only supposed to respond ...
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 ...
2
votes
1
answer
599
views
Message queues alternative in mobile development
please let me know if this StackExchange isn't the place for this and I will move the question.
I'm trying to write a mobile app that will have a 'notification' aspect. I have web development ...
-4
votes
1
answer
65
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.
...
2
votes
0
answers
334
views
Reading (GET) Facebook Ads From Ad Library and Reading (GET) Personal Ad Account Billing Data in my Android Application
I'm trying to create an android application for personal use to do the following:
Get ads from the Facebook ad library (commercial ones) not the ones with politics topics etc. and then insert them ...
4
votes
3
answers
229
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).
...
0
votes
1
answer
447
views
How do I plan my refactor of my android app for better architecture?
The current structure of my app is as follows:
One activity and multiple fragments (about 25 fragments)
One huge monolithic repository
One huge monolithic viewmodel
Databinding is being used but with ...
1
vote
0
answers
768
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
1
answer
1k
views
Android Chat Application Architecture with websocket
I'm trying to build chat application in Android (future maybe webapp also) using websockets. The purpose of this project is to familiar with websockets, get know websockets and real time applications. ...
-1
votes
3
answers
272
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 ...
-2
votes
1
answer
78
views
Big scale projects
I had a question about big scale projects.
what if the team decides to change a library and therefor the codes should be changed.
for example what if the team wants to change the picasso library to ...
-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 ...
1
vote
1
answer
336
views
What architecture to follow when I need to make user login in Android app?
I am writing an android app. Some of its functionalities require the user to be authenticated. I am planning to create an annotation like this:
@RequiresAuth
fun commentOnTask(){
....
}
This ...