Android Dev - App Feedback Thread - December 03, 2021 |
- App Feedback Thread - December 03, 2021
- Apple legal filing indicates it intends to collect commission regardless of whether developers use IAP or a competing payments platform
- Paging 3 still not simple enough
- Hey Android Developers, in this new ADT video I demo how you can migrate your Android app's Gradle build configuration from unfamiliar Groovy to lovely Kotlin. ️
- Jetpack compose lifecycle states
- Best way to create an iOS app when I already have an app in Kotlin?
- How to know if an app with Storage access uploads my files to a server in background ?
- What kind of API do digital wallets use to deposit fiat to an app?
- Acquire photos from rear cameras
- Compose Multiplatform 1.0 released
- Unable to import javax.lang files in Android/Kotlin Library
- I built an open source ear training app for musicians
- Graduating from View IDs
- Facebook Audience Network Payments
- How do i modify an .apk to include scanning of .nomedia files.
- Check which part of a project requires the minSdk
- [Beginner Question] Trying to understand the ViewModel<-> repository interaction
- !hooked, a technical magazine about the practical side of mobile app security
- Build a Clubhouse like Audio Streaming App in Flutter and Video SDK.
- Looking for a specific Android Studio icon for mac
- How to stay updated on the correct methods/ ways to use features when old versions are depreciated?
- My play store account has been closed.....please help.
- Our latest design VOD is now live on YouTube — join us as we talk with Chris Sinco about affordances, touch feedback, and… door handles?!?
- How much money have you made from your self-made android apps?
- Android Studio is super slow on my 16gb machine with SSD.
- Why is my app in "open testing" I was trying to release an official version/publish it to the store?
App Feedback Thread - December 03, 2021 Posted: 03 Dec 2021 06:00 AM PST 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. [link] [comments] | ||
Posted: 03 Dec 2021 06:13 AM PST
| ||
Paging 3 still not simple enough Posted: 03 Dec 2021 07:51 AM PST I am trying to create a tmdb paging application and the paging with compose is very frustrating. Can't get what's happening. [link] [comments] | ||
Posted: 03 Dec 2021 08:29 AM PST | ||
Jetpack compose lifecycle states Posted: 02 Dec 2021 11:00 PM PST What is the best way to react/listen on/to lifecycle events in jetpack compose? For example, I have a ViewModel nested somewhere and it is listening via flow to changes that are being broadcasted from somewhere within the app. I want to stop this listening as soon as the app enters the background (onPause), and resume listening when the app enters foreground (onResume). I have some solutions, but none of them feels "right". The easy, but really ugly solution, would be to put all my viewmodels inside MainActivity and just listen to the events. Well I guess there is no need to tell what is bothering me here. The next approach would be to use DisposableEffect and build my own LifecycleObserver (something like this. But here the problem is (but maybe I understand something wrong), that I need to explicitly pass the LifecycleOwner to all the compose functions that need to listen to the events. Is there some other solution with less stomach ache? [link] [comments] | ||
Best way to create an iOS app when I already have an app in Kotlin? Posted: 03 Dec 2021 02:45 AM PST Context: We're currently building an Android app to bring people together via movies and shows in a fun way. The app is written almost entirely in Kotlin. At the time, I was alone on this and didn't know Flutter so went full native. I now have a dev working alongside who is good with Kotlin and Flutter. We've got about 5 months of work in it already. Neither of us know Swift. More details about the current app:
Please help me choose between these options on which would be the most efficient solution for creating an iOS version:
Thank you so much! Would be happy to update the community based on what we go with and post our experience of implementing the solution. [link] [comments] | ||
How to know if an app with Storage access uploads my files to a server in background ? Posted: 03 Dec 2021 08:47 AM PST | ||
What kind of API do digital wallets use to deposit fiat to an app? Posted: 03 Dec 2021 12:43 AM PST For example, debit card/credit card input to an app and then do a deposit. Is Braintree suitable for this? [link] [comments] | ||
Acquire photos from rear cameras Posted: 03 Dec 2021 07:21 AM PST Hi, I have very limited experience with android development so I want to know if the idea I have in mind is feasible. I have a Samsung galaxy s10, is it possible to acquire two pictures from two separate rear cameras? [link] [comments] | ||
Compose Multiplatform 1.0 released Posted: 02 Dec 2021 05:39 AM PST | ||
Unable to import javax.lang files in Android/Kotlin Library Posted: 03 Dec 2021 03:03 AM PST
| ||
I built an open source ear training app for musicians Posted: 02 Dec 2021 01:32 PM PST Hey everybody! I noticed that a lot of useful ear training exercise just don't exist in current mobile apps, and as I was practicing my musical earing I found the need of an app with those exercise. So I created one. OpenEar is an open source app for ear training. It currently have the following exercises
I built this app in my little free time, and my hope is that with time it will grow to contain many other ear training exercises, and expand the current ones, so musicians can use it to train their ears to pick up pretty much everything. If you are, or you of any musicians that might benefit for this, I'll be happy if you can share it with them. if you have any feedback you are welcome to take a look here. The app code is generic, making it super easy and fast to code new exercises. If you want to have a go take a look at our GitHub repository. Everything you need to do to program a new exercise is to implement the IExercise interface, using already existing utility functions and base classes. (This app is completely free and open source, and I do not get any money for advertising this, nor due I have aspirations to. I'm sorry if I'm breaking any community rules by posting this.) [link] [comments] | ||
Posted: 02 Dec 2021 03:05 PM PST
| ||
Facebook Audience Network Payments Posted: 03 Dec 2021 04:59 AM PST Hi, When does the payment appear in the payouts tab? Does it take some time after the month has ended to finalize it or because it is the 3rd of December already? [link] [comments] | ||
How do i modify an .apk to include scanning of .nomedia files. Posted: 03 Dec 2021 09:26 AM PST As a person with 0 programming experience, is this going to be hard? [link] [comments] | ||
Check which part of a project requires the minSdk Posted: 03 Dec 2021 12:35 AM PST Is there a tool which indicates what code specifically requires API Level 21? Of course I could check it manually in the documentation. But is there a way to do this in the IDE? [link] [comments] | ||
[Beginner Question] Trying to understand the ViewModel<-> repository interaction Posted: 02 Dec 2021 03:13 PM PST Hello, Hope this post don't fall in the "help me" rule. I'm trying to understand how datas are updated in the ViewModel (in a MVVM architecture) as a newbie in android programming. If I understand a MutableLiveData is initied and updated by the repository. What should trigger an update when the data change in the repository? (Like auto update without user interaction) Should I place my update function in the getter/setter of the data? Please correct me if I missed a point in the architecture [link] [comments] | ||
!hooked, a technical magazine about the practical side of mobile app security Posted: 02 Dec 2021 05:54 AM PST
| ||
Build a Clubhouse like Audio Streaming App in Flutter and Video SDK. Posted: 03 Dec 2021 01:19 AM PST
| ||
Looking for a specific Android Studio icon for mac Posted: 02 Dec 2021 09:56 AM PST
| ||
How to stay updated on the correct methods/ ways to use features when old versions are depreciated? Posted: 02 Dec 2021 10:48 AM PST I used to be into iOS development and I always found the docs very easy to use and pretty clear on how to add features to your app. For some reason on the android docs I find it very hard to be able to read it and know what exactly I need to add and how to add it. There was a feature for locationManager that there was a note saying something was depreciated so I clicked the link to what they recommend now and there was no information on what exactly I need to do or how to do it. It feels like the docs are for professionals who already know what to do [link] [comments] | ||
My play store account has been closed.....please help. Posted: 02 Dec 2021 12:31 AM PST Today I finally finished my app and I happily want to upload my app. But after I logged in to my account I only found:
I was shocked as I didn't know what is going on. I opened gmail and search if I can find any email that has any information related. I did find it.... but.. there are just too many emails everyday and I could not notice it... It was just 1 and half months ago.... The worse thing is that the money is not refundable. I am wondering if this can be reactivated....if I had seen it I would have of course tried to keep it..... [link] [comments] | ||
Posted: 02 Dec 2021 11:31 AM PST
| ||
How much money have you made from your self-made android apps? Posted: 02 Dec 2021 08:34 AM PST | ||
Android Studio is super slow on my 16gb machine with SSD. Posted: 02 Dec 2021 03:38 AM PST Android Studio is so slow. I have never encountered this. It take 10 seconds to load autocompletes. While printing characters are displayed with delays. I have disabled a lot of plugins and the maximum heap size is set to 12gb. But still no effect. Any idea how can I fix this? [link] [comments] | ||
Why is my app in "open testing" I was trying to release an official version/publish it to the store? Posted: 02 Dec 2021 01:01 PM PST |
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