Android Dev - App Feedback Thread - April 18, 2020 |
- App Feedback Thread - April 18, 2020
- Why is colorPrimary, colorPrimaryDark, colorAccent in res/colors in camelcase when other default values is in underscore case? Should colors then be named in camel case or should one stick to name everything in /res folders in underscore?
- Has anyone been able to implement Wifi P2P RELIABLY? Discovery & sharing of files
- Flutter Countdown Timer
- Database Inspector in Android Studio 4.1 Canary version
- Coroutines and exceptions: things to know
- How is Fastlane with Android?
- Android Studio 3.6.3 available
- Is there a specific reason why fragments don't support onBackPressed()?
- A problem when trying to publish app
- Implementing clean architecture in android application
- Code review
- Securing Room DB
- I'm new to server side programming: How can I avoid storing user credential such as email and password and still have that functionality ?
- Android Studio 4.1 Canary 6 available
- Android Gradle: Lessons learnt using missingDimensionStrategy
- A minimalistic movie listing app to browse IMDB's top 250 movies, built to demonstrate MVVM with the latest hot-trending Android development tools.
- Seek advice on how to impress upon my manager on the importance of notification channels
- Whats the best library to receive SSE events on an Android device from a remote server?
- Emulator 30.0.9 Canary
- CameraX and Android Studio
- App Content/Access Changes - Test Users REQUIRED?!
| App Feedback Thread - April 18, 2020 Posted: 18 Apr 2020 05:28 AM PDT This thread is for getting feedback on your own apps. Developers:
Commenters:
To cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback. As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you. - Da Mods [link] [comments] | ||
| Posted: 18 Apr 2020 02:41 AM PDT | ||
| Has anyone been able to implement Wifi P2P RELIABLY? Discovery & sharing of files Posted: 18 Apr 2020 07:43 AM PDT Just curious if it is reasonable to expect that a Wifi Direct implementation can have any success. We built a WiFi direct solution, and the Peer Discovery (wifiManager.discoverPeers()) only works 50% of the time. Then, for those 50% of connections that do work, Connecting (wifiManager.connect()) works another 50% of the time. Overall, the success rate on a discover + connect is only ~25%, and the time it takes goes from 30 seconds to 3 minutes. Is it possible to implement Wifi P2P reliably on Android, or is this asking too much? [link] [comments] | ||
| Posted: 18 Apr 2020 05:10 AM PDT
| ||
| Database Inspector in Android Studio 4.1 Canary version Posted: 17 Apr 2020 02:18 PM PDT
| ||
| Coroutines and exceptions: things to know Posted: 18 Apr 2020 04:54 AM PDT
| ||
| Posted: 18 Apr 2020 08:26 AM PDT As title says, anyone here using Fastlane with Android? I think it started as a tool for iOS and was later took over by Google, so I'm curious how it panned out. Are the actions and plugins solid and maintained well? [link] [comments] | ||
| Android Studio 3.6.3 available Posted: 17 Apr 2020 10:46 AM PDT | ||
| Is there a specific reason why fragments don't support onBackPressed()? Posted: 18 Apr 2020 07:39 AM PDT When working with a tab layout and using a viewpager this seems to be an absolute nightmare as you are building a complete app around a single activity. [link] [comments] | ||
| A problem when trying to publish app Posted: 18 Apr 2020 07:29 AM PDT I have a problem when publishing my app! The problem is that when I go to App Content > Ads and I click start, it shows what is in the attached image. Literally nothing to work with! It was a lot easier before, but I don't know what happened! [link] [comments] | ||
| Implementing clean architecture in android application Posted: 17 Apr 2020 11:42 PM PDT Hey guys! I would love to get your feedback on two approaches i have seen while implementing clean architecture in android. While there are multiple ways one can implement clean architecture in android when in comes to making different modules or keeping everything in the app itself and rather slicing the project both vertically, as in feature, and horizontally, as in layers, the approach we will take is rather converting these features into android libraries themselves. So here are the two approaches: 1. Approach 1 :APP(com.android.application), :BASE(com.android.library), :FEATURE1(com.android.library), :FEATURE2(com.android.library) In this case, :APP is dependent on :BASE and :FEATURE1 and :FEATURE2 are dependent on :APP module.
In this case, :APP is NOT dependent on :BASE. Rather :FEATURE1 and :FEATURE2 are dependent on :BASE and :APP is dependent on the feature modules. I personally like approach 2. Do let me know which one you prefer and why. I am building an android application and want to do it with clean architecture, however can't see beyond the lines of which approach is better than which. Thank you. [link] [comments] | ||
| Posted: 18 Apr 2020 06:09 AM PDT For the last week I've been trying to brush up on my Android skills. It's been a few years since I last did any mobile development. I've created the following app for the sake of learning. The idea is to present the user with a list of exercises which can be edited and updated with new exercises. The exercises are retrieved from a restful api which can be found here. And cached locally using SQLite. https://github.com/tonsV2/my-koin-application I'm interested in all the feedback you have. I'm fairly new to Kotlin as well. But mainly feedback of the architectural design is of interest. Please let me know what you think. [link] [comments] | ||
| Posted: 18 Apr 2020 06:03 AM PDT Hey, any hints on securing/encrypting Room DB? Link to a tutorial/example would be great. [link] [comments] | ||
| Posted: 17 Apr 2020 06:29 PM PDT I've created a small confession style app where users can confess whatever they want. This is based in Firebase realtime database with authentication. I store both username and email in server. But now I am porting the backend to php/mysql and I don't' want to store user's email and password, and use something else instead so that even if the data is breached (remember I'm only learning right now), there would not be big repercussion. How can I do that? [link] [comments] | ||
| Android Studio 4.1 Canary 6 available Posted: 17 Apr 2020 11:16 AM PDT | ||
| Android Gradle: Lessons learnt using missingDimensionStrategy Posted: 18 Apr 2020 01:18 AM PDT | ||
| Posted: 17 Apr 2020 07:06 PM PDT
| ||
| Seek advice on how to impress upon my manager on the importance of notification channels Posted: 17 Apr 2020 02:29 PM PDT Our team handles all the notifications related aspect of the app, which includes
We recategorized our notification subscriptions as a result of which we created additional notification channels, and deleted a few others. My manager thinks that having so many notification channels is a pain to maintain and support and is in favor of using just one notification channel for all. My manager has a background in backend services, but not in client app development. I have tried to convince my manager with the following reasons
But my manager is not convinced. He is looking at removing channels because it is easier to maintain one channel than multiple channels. Any suggestions would be gratefully appreciated. [link] [comments] | ||
| Whats the best library to receive SSE events on an Android device from a remote server? Posted: 17 Apr 2020 04:27 PM PDT I tried with Retrofit but it doesn't support it. I have looked at the following libraries https://github.com/square/okhttp/tree/master/okhttp-sse https://github.com/launchdarkly/okhttp-eventsource https://github.com/heremaps/oksse Is there any other suitable libraries out there? [link] [comments] | ||
| Posted: 17 Apr 2020 09:16 AM PDT | ||
| Posted: 17 Apr 2020 10:45 PM PDT Here's a list of my problems and if you have any ideas, I'd like to hear them.
4.5 I need help especially with adding portrait support and buttons for wide/macro and if I can't add other lenses, maybe buttons that change the quality to fit 64mp etc. Video too. [link] [comments] | ||
| App Content/Access Changes - Test Users REQUIRED?! Posted: 17 Apr 2020 09:52 AM PDT
|
| You are subscribed to email updates from Developing Android Apps. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
| Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States | |
No comments:
Post a Comment