droidcon Italy Official
219 subscribers
966 photos
5 videos
2.03K links
Official @droidconit Telegram channel. News & updates from the Android Developers ecosystem by Droidcon Italy http://droidcon.it
AndroidDev Android developers
Download Telegram
Good morning devs. New post on /r/androiddev subreddit:
What's the name of this theme?

So today at work one of my coworkers showed me this image (it's and instagram post) and wanted to the name of the theme. He wanted the theme for visual studio but I think it's for android studio. I hope I'm right and also, I hope that it's a well known theme and I can find it for visual...


#androiddev https://www.reddit.com/r/androiddev/comments/1cbdhqh/whats_the_name_of_this_theme/
Good morning devs. New post on /r/androiddev subreddit:
Android iguana gradle issue

Hey ther I was trying the tutorial on android studio but I run into an issue in the last step 9, I am trying to implement safeArgs but I keep getting the following error in this file plugins { alias(libs.plugins.androidApplication) apply false alias(libs.plugins.safeArgsPlugin)...


#androiddev https://www.reddit.com/r/androiddev/comments/1cc97ki/android_iguana_gradle_issue/
Good morning devs. New post on /r/androiddev subreddit:
Detect remote access

I am building a threat model for an Android application and was wondering what methods there are to detect remote access and screen sharing. Specifically detecting that applications like teamviewer etc are active when my app is running. Thanks! submitted by /u/Glittering-Newt9681 https://www.reddit.com/r/androiddev/comments/1cd47hk/detectremoteaccess/ ...


#androiddev https://www.reddit.com/r/androiddev/comments/1cd47hk/detect_remote_access/
Good morning devs. New post on /r/androiddev subreddit:
Using OnFrameMetricsAvailableListener API on SurfaceView

I need to use the new FrameMetric API) introduced in Android N on the SurfaceView. Since that API is available only on the window property I can't use it on the SurfaceView (which has its own Window but not exposed unlike Activity#window) I triedactivity.window.addOnFrameMetricsAvailableListener ...


#androiddev https://www.reddit.com/r/androiddev/comments/1cggxec/using_onframemetricsavailablelistener_api_on/
Good morning devs. New post on /r/androiddev subreddit:
Android Studio Jellyfish | 2023.3.1 now available

submitted by /u/androidtoolsbot https://www.reddit.com/r/androiddev/comments/1cgz8ai/android_studio_jellyfish_202331_now_available/ [comments]


#androiddev https://www.reddit.com/r/androiddev/comments/1cgz8ai/android_studio_jellyfish_202331_now_available/
Good morning devs. New post on /r/androiddev subreddit:
Apps That Let Me Sumperimpose Faces Onto Video Clips?

I used to use an Android app called Face Magic from the Google Play Store, which allowed you to put faces from your photos into movie and tv clips, with pretty impressive results. The app was later gutted of most content, likelybdue to copyright enforcement. Are there any other apps that allow...


#androiddev https://www.reddit.com/r/androiddev/comments/1ci80ih/apps_that_let_me_sumperimpose_faces_onto_video/
Good morning devs. New post on /r/androiddev subreddit:
Is Recent DataStore Library Update Breaking Apps?

Google released an update of 1.1.1 version for the Data Store library. Any version above the https://developer.android.com/jetpack/androidx/releases/datastore#1.1.0-alpha04 is breaking few aspects of the data fetching scenarios on the app. For example, we can’t reliably fetch the data store...


#androiddev https://www.reddit.com/r/androiddev/comments/1cm3fnn/is_recent_datastore_library_update_breaking_apps/
Good morning devs. New post on /r/androiddev subreddit:
Developing a new app

I've been an android developer for more than 10 years. I published several apps since the play store had only a handful of them. I'm currently have 2 apps in production one with 1M+ downloads, 11k reviews and 4.1 stars, the other with 500k+ downloads 29k reviews and 4.7 stars, which I try to...


#androiddev https://www.reddit.com/r/androiddev/comments/1cmqteu/developing_a_new_app/
Good morning devs. New post on /r/androiddev subreddit:
Paperize - Wallpaper Changer

Hi! I want to share my free and open-source wallpaper changer app that I created while learning Android development. There are no ads in the app, and I will never add ads to it as I created it solely to learn Android development. It's a completely offline (provide-your-own) wallpaper changer....


#androiddev https://www.reddit.com/r/androiddev/comments/1cnjqsq/paperize_wallpaper_changer/
Good morning devs. New post on /r/androiddev subreddit:
How do you learn client side networking without learning backend?

There are some free API for user, jwt, products, etc but other features like some pages public,private and admin only, web sockets aren't available. How do u learn them? I have seen some youtubers creating their own backend server and then creating client side. submitted by ...


#androiddev https://www.reddit.com/r/androiddev/comments/1cscwo4/how_do_you_learn_client_side_networking_without/
Good morning devs. New post on /r/androiddev subreddit:
I'm learning and have an idea for an app, but I'm not sure the best way to architect my idea. I would appreciate any guidance

My idea is very simple. A shopping list shared between my and my wife's phones, that sends us notifications when we go into/near a supermarket to remind us there is a shopping list. Maybe notifications in the morning or something to check if we need anything. I don't plan on releasing it on the...


#androiddev https://www.reddit.com/r/androiddev/comments/1ct50v1/im_learning_and_have_an_idea_for_an_app_but_im/
Good morning devs. New post on /r/androiddev subreddit:
Should a viewmodel be used for splitting UI and business logic or only for sharing data?

In other words, should variables and functions that are used by one composable be stored in that composable and only variables and functions that are used by more than one composable be put in a viewmodel? Or should every variable and function be stored in a viewmodel just for the sake of...


#androiddev https://www.reddit.com/r/androiddev/comments/1cttfy9/should_a_viewmodel_be_used_for_splitting_ui_and/
Good morning devs. New post on /r/androiddev subreddit:
Lot of spam mails from users of my app

Lately my app got more popular and I because of questionable Google policy of mandatory email support being publicly available, I have been receiving hundreds of sketchy mails like you can see on screenshot.. It's already been months and months, and despite marking all of them as spam, they keep ...


#androiddev https://www.reddit.com/r/androiddev/comments/1cwzsni/lot_of_spam_mails_from_users_of_my_app/
Good morning devs. New post on /r/androiddev subreddit:
How to Write Automated Tests for Google Password Manager in an Android App?

I am developing an Android app with a login feature that utilizes passkeys. I would like to write automated tests for this part of the app where the Google Password Manager shows up. Here is the flow I want to test: 1- Click on "Login with Passkeys". 2- The Google Password Manager shows up. ...


#androiddev https://www.reddit.com/r/androiddev/comments/1cxp5zo/how_to_write_automated_tests_for_google_password/
Good morning devs. New post on /r/androiddev subreddit:
Need help - display a screen when a app is opened

I'm developing an app locker and have implemented all basic functionalities such as accepting and storing password, and loading all the apps installed on the user's device. however, I'm not sure how to make my lock screen to appear after the user opens a particular app. please guide me ...


#androiddev https://www.reddit.com/r/androiddev/comments/1cyjmyq/need_help_display_a_screen_when_a_app_is_opened/
Good morning devs. New post on /r/androiddev subreddit:
Can anyone tell what I am doing wrong?

I have got my app rejected and suspended again I have uploaded new app with different package name and now again they have rejected it. "Your app doesn’t provide a clear source of government information or its description lacks an easy-to-see disclaimer stating that the app doesn’t represent ...


#androiddev https://www.reddit.com/r/androiddev/comments/1czdagr/can_anyone_tell_what_i_am_doing_wrong/
Good morning devs. New post on /r/androiddev subreddit:
Understanding flatMapConcat, flatMapMerge, and flatMapLatest in Kotlin Flow

Hello guys, If you're diving into Kotlin Flow and want to grasp the differences between flatMapConcat, flatMapMerge, and flatMapLatest, check out this detailed Medium article. It explains the internal workings and practical applications of each operator, helping you choose the right one for your ...


#androiddev https://www.reddit.com/r/androiddev/comments/1d2a0se/understanding_flatmapconcat_flatmapmerge_and/