Android Dev - App Feedback Thread - November 05, 2021 |
- App Feedback Thread - November 05, 2021
- What's the windowing system of android os?
- Android 12 Is Killing Phantom Background Processes Of Apps
- Help! Developer account terminated & app removed from Play Store.
- The second episode of DESIGN WITH THE ITALIANS is live. Ivy and Chris from Google tell us everything about Material Design, Material You and how to use colours
- Is it good practice to create separate models for each recyclerview adapter?
- Multiplatform Compose and Gradle module metadata abuse â Jake Wharton
- Unable to instantiate activity ComponentInfo
- OnTouchListener on password toggle?
- Is there any way to determine the scroll direction with lazycolumns in compose? (i.e: user is scrolling up or user is scrolling down)
- LottieDialog 1.0.0 is on MavenCentral now, suggestion are welcome
- Spent 4 hours trying to make my http request work
- Looking for a project with tests. Lots of tests.
- Default constructor in android.app.ListActivity is deprecated
- Issues with multi-select dropdown
- Anyone ever fix this problem? about MutableStateFlow on ActivityLifecycleCallback
- How many of you have live apps on google playstore ?
- At a BLE / Android "learning" crossroads.
- Retrofit/OkHttp cache control
- Dagger 2 - component dependency - nullify dependencies
- Any way to disable the list view/recycler views ending swipe/expanding animation on android 12?
- PLEASE HELP! Getting ADB errors while trying to command my phone
- Cédric Champeau's blog: Multi-repository development made easy
App Feedback Thread - November 05, 2021 Posted: 05 Nov 2021 07:00 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. [link] [comments] | ||
What's the windowing system of android os? Posted: 05 Nov 2021 04:35 AM PDT We know that in Linux world, we have x11. It provides the lowest level for you that you can create windows, handle events, etc,.. In windows, we have win32. What's the equivalent in Android os? [link] [comments] | ||
Android 12 Is Killing Phantom Background Processes Of Apps Posted: 04 Nov 2021 12:46 PM PDT Phantom ProcessesAndroid 12 via The app or phantom processes may also be killed if they use excessive CPU, which was done previously too, but only for app process.
This Check This change is neither listed in android They were named "Phantom" because they were designed to give android devs nightmares when then saw them (allegedly of course). The Which apps will this affect?This will majorly affect all apps that fork child processes from their app process, like with For Termux app, this killing will affect all commands runs in the For Tasker, this will affect Expect such processes to be killed at any time if using Android This type of killing is seemingly worse than the ones commonly implemented before by OEM killer apps, which are usually tracked by https://dontkillmyapp.com. Edit: Issue opened at https://issuetracker.google.com/u/1/issues/205156966 [link] [comments] | ||
Help! Developer account terminated & app removed from Play Store. Posted: 05 Nov 2021 07:14 AM PDT Two and a half weeks ago we got an email from Google Play Team informing us that our customer's app, that was released end of May this year and of which we've been releasing many updates since then, is in violation of the Malware policy and because of that the developer account was instantly terminated and the app removed from Play Store. This of course came as a shock to us and our customer. There was no warning beforehand, nothing. On top, there was no explanation what the app actually violates against. Six days after sending an appeal, we got an answer that they are confirming their initial decision and are not reinstating the developer account. At least, we got some vague information, what the issue supposable is: For example, your app, ..., currently contains phishing code that pretends to come from a trustworthy source, requests a user's authentication credentials or billing information, and sends the data to a third-party. This category also applies to code that intercept the transmission of user credentials in transit. Of course, we then checked our app for anything that should not be there and would meet the explanation above. We could not find anything. We are using only a couple of well-known third-party services, which are not sending anything related to authentication or billing information. We only use our own authentication API for login reasons and are not sending anything related to it to other services or other parties. We wrote back and instantly got turned down. So we insisted and told them that we are an honest and trustworthy developing company with many years of app development experience based in Switzerland and that we've been developing this app for a well known company with over 20'000 daily app users. The answer then was that they will look into it! That was nine days ago and since then we asked twice about the state and got the answer that they are still investigating... It has now been 17 days since our customers Android app has been removed from the store and we are unable to release any updates or even access the account. We are writing this article because we our desperation is growing by the day. Did anyone have a similar experience and / or can anyone give us any advice of how to proceed? [link] [comments] | ||
Posted: 05 Nov 2021 04:16 AM PDT
| ||
Is it good practice to create separate models for each recyclerview adapter? Posted: 05 Nov 2021 07:35 AM PDT I have my main models in the domain layer, sometimes the recyclerview only needs a couple attributes from it, does it make sense to create a separate model just for that or is it "okay" to just use to big model? example: product model has "id, title, image, price, availability, available quantity etc" and my recyclerview only needs the title and the image thoughts? [link] [comments] | ||
Multiplatform Compose and Gradle module metadata abuse â Jake Wharton Posted: 04 Nov 2021 06:42 PM PDT
| ||
Unable to instantiate activity ComponentInfo Posted: 05 Nov 2021 08:10 AM PDT Hi everyone, I'm 100% (more like 200% ;)) new to Android developing. When trying to run my app it crashes instantly. I think it has to do with me messing with the tabs. Could someone please help me further? Thanks in advance! I get this error: [link] [comments] | ||
OnTouchListener on password toggle? Posted: 05 Nov 2021 06:01 AM PDT Hey guys, I recently started learning Kotlin and Android and I'm stuck on something really stupid for few days now. I need to use OnTouchListener to reveal password only when toggle is pressed down, not on click. I made some custom button to do that but it doesn't look as good as passwordToggle. Is there any way to use onTouchListener in combination with passwordToggle? [link] [comments] | ||
Posted: 05 Nov 2021 12:44 AM PDT Recyclerviews had an onScrolled listener and based off the given dy value you could determine direction. Can't seem to find a way of doing so with a lazycolumn in compose. Anyone have any ideas? [link] [comments] | ||
LottieDialog 1.0.0 is on MavenCentral now, suggestion are welcome Posted: 05 Nov 2021 04:17 AM PDT | ||
Spent 4 hours trying to make my http request work Posted: 05 Nov 2021 07:18 AM PDT Only to realize android by default doesn't allow requests sent via cleartext/without ssl [link] [comments] | ||
Looking for a project with tests. Lots of tests. Posted: 04 Nov 2021 02:17 PM PDT I have seen tons of projects, samples, libraries, apps with different design patterns like MVVM, MVI, MVP, with clean architecture, with cutting-edge android libraries, with compose, and so on. But I haven't seen any of them with tests. Unit tests on all layers. Datasources (network clients, databases), repositories, viewmodels. And if some of those projects have unit tests, these are mostly very basic tests. Not even say about UI tests. These are like an utopia for Android projects. So let me see what you have to share. [link] [comments] | ||
Default constructor in android.app.ListActivity is deprecated Posted: 04 Nov 2021 08:27 PM PDT I followed an old tutorial to setup a sample app for Wear OS that shows a list of installed apps, and displays them in a list with their icons. The only issue is that my MainActivity shows, "Default constructor in android.app.ListActivity is deprecated". The app still works right now, but it's only a matter of time until it doesn't. Could someone please offer me advice on how to update it? Thank you so much! Here is a copy of the project if you need to see it: https://drive.google.com/drive/folders/1KM6CVwQ9mtghrECRT4FcN2yLWjwtWm5J?usp=sharing [link] [comments] | ||
Issues with multi-select dropdown Posted: 04 Nov 2021 10:50 PM PDT Hi guys! I'm currently having issues trying to implement a custom view into my app. I need to create a multi-select dropdown view, I tried using material design's API, but it doesn't support a multi-select alternative, when you tap an item the menu will close. Also, It only works with ArrayAdapters, so I think I cannot use MD approach. Any Thoughts on this? How should I approach this? Also, I'm a Junior Dev, so don't expect me to know everything haha Thanks!!! https://material.io/components/menus/android#using-menus I need to create something like this: https://cdn.dribbble.com/users/112375/screenshots/4958808/multi-select-dropdown.png [link] [comments] | ||
Anyone ever fix this problem? about MutableStateFlow on ActivityLifecycleCallback Posted: 04 Nov 2021 07:07 PM PDT | ||
How many of you have live apps on google playstore ? Posted: 05 Nov 2021 01:14 AM PDT | ||
At a BLE / Android "learning" crossroads. Posted: 04 Nov 2021 04:18 PM PDT My BLE device is programmed to send one byte of data when I want it to, and I want it to trigger my Android phone to do something, given byte 00 or byte 01. (For example, to turn on and off my flashlight, or prompt a beep) I need to dig into smartphone development now but I found that there are several options to choose from. I only have patience for one learning path. Simpler is better, but it needs to be one of the industry standard solutions for my purpose. I thought of two so far:
What can I develop so that my BLE device will turn on my Android's flashlight? Which is best out of options 1 and 2, or can you tell me something I've not thought of? crosspost: androiddev, arduino ble [link] [comments] | ||
Posted: 04 Nov 2021 10:54 AM PDT
[link] [comments] | ||
Dagger 2 - component dependency - nullify dependencies Posted: 04 Nov 2021 02:13 PM PDT Components have different life span. What happens when you specify a dependency: A depends on B, but you destroy B while A is still alive?
[link] [comments] | ||
Any way to disable the list view/recycler views ending swipe/expanding animation on android 12? Posted: 04 Nov 2021 01:29 PM PDT When you hit the end of a list, you get it where the list will do this expand animation when you swipe up making the entire list look weird and it just doesn't look right. Anyone know a fix/option or something in code to remove it? [link] [comments] | ||
PLEASE HELP! Getting ADB errors while trying to command my phone Posted: 04 Nov 2021 07:03 PM PDT I'm trying to change my Pixel 5a's back button to the right side, since I'm right-handed (like 70-95% of humans). I'm trying this command: adb shell settings put secure sysui_nav_bar "space,contextual;home;back,space" But PowerShell complains: /system/bin/sh: home: inaccessible or not found /system/bin/sh: back,space: inaccessible or not found I don't really know what this means. It sounds like ADB or PowerShell or whatever can't find a command that's supposed to be there. How do I make this work? If there's a different command I can try, what is it? All I want is for the stupid back button to be on the right side of the navigation bar! This has literally been the default navigation option for every Android phone I have ever owned! Please, please help! [link] [comments] | ||
Cédric Champeau's blog: Multi-repository development made easy Posted: 04 Nov 2021 11:45 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