droidcon Italy Official
220 subscribers
966 photos
5 videos
2.03K links
Official @droidconit Telegram channel. News & updates from the Android Developers ecosystem by Droidcon Italy https://droidcon.it
AndroidDev Android developers
Download Telegram
Good morning devs. New post on /r/androiddev subreddit:
Is this a good and common practice, to achieve similar outcome as Swift's "guard let" and avoid safe call operator?

In Swift, we can use "guard let", to avoid safe call operator (?.) class A { func work() { } } func test(_ a: A?) { guard let a = a else { return } a.work() } I was wondering, is the following a good and common practice, if I want to achieve similar outcome as Swift's "guard let"? class A { fun ...


#androiddev https://www.reddit.com/r/androiddev/comments/13pf2bd/is_this_a_good_and_common_practice_to_achieve/
Good morning devs. New post on /r/androiddev subreddit:
Getting into android automotive

Hi! I’m currently doing macOS development, but would really like to get my hands dirty in android automotive and get the feel of middlewear development. Are there any good recommendations how to start with it? Get a Raspberry Pi and try using Android Automotive there? submitted by ...


#androiddev https://www.reddit.com/r/androiddev/comments/13qcv6p/getting_into_android_automotive/
Good morning devs. New post on /r/androiddev subreddit:
Real car names in my quiz app

I read that I can't use any real car name/shape/logo in any form in any game, but if that game is a quiz game, or a recognition game could I use them? If not, there's a method to use them without paying too much or don't pay at all and don't get sued? submitted by /u/Highwall2740 link ...


#androiddev https://www.reddit.com/r/androiddev/comments/13r9epo/real_car_names_in_my_quiz_app/
Good morning devs. New post on /r/androiddev subreddit:
Controlling camera via adb?

Hi people, i'm a female newbie dev doing some tests on android, and I'm wondering if there is anyway to control camera via adb shell or via some app? Let me explain myself: What I wanna do is to control camera's zoom in apps that requires me to take a photo, and normally won't let me zoom it....


#androiddev https://www.reddit.com/r/androiddev/comments/13s3nm3/controlling_camera_via_adb/
Good morning devs. New post on /r/androiddev subreddit:
Advice to get in as a junior?

Hey everyone, Not sure if this is allowed here or not. If it isn't, please take it down. Anyone have advice to get in as a junior developer? I started learning Kotlin and Jetpack Compose about 2 years. Since then, I have completed 3 apps from start to finish and published them on the Google...


#androiddev https://www.reddit.com/r/androiddev/comments/13vhvw7/advice_to_get_in_as_a_junior/
Good morning devs. New post on /r/androiddev subreddit:
How to return an Int type with DataStore

class StoreScore(private val context: Context){ companion object { private val Context.dataStoree: DataStore by preferencesDataStore("userScore") val USER_SCORE = intPreferencesKey("my_number") } val getScore: Flow = context.dataStoree.data .map { preferences-> preferences[USER_SCORE] ?: 1 }...


#androiddev https://www.reddit.com/r/androiddev/comments/13w98ig/how_to_return_an_int_type_with_datastore/
Good morning devs. New post on /r/androiddev subreddit:
Why AS always takes up 20 min in doing "indexing" on startup ?

submitted by /u/Acrobatic-Bit3508 link comments


#androiddev https://www.reddit.com/r/androiddev/comments/13x7ulc/why_as_always_takes_up_20_min_in_doing_indexing/
Good morning devs. New post on /r/androiddev subreddit:
Best place to host android app

I am working on an android app and it will have back-end also. This means i need to host it somewhere. This is a first time i am hosting an app so i need to know which is the best place to host it. submitted by /u/dupelas link comments


#androiddev https://www.reddit.com/r/androiddev/comments/1433nku/best_place_to_host_android_app/
Good morning devs. New post on /r/androiddev subreddit:
Seriously, why there isn't an easy way to implement a timezone picker UI?

I needed to do a simple time zone selector, but there just isn't an easy way to do it apart from showing a 500-items-long TimeZone.getAvailableIDs() at the user in a dropdown. I had wanted something like this, but for Android, and it just doesn't seem to exist. So I need to do my own fuzzy text...


#androiddev https://www.reddit.com/r/androiddev/comments/143yy7u/seriously_why_there_isnt_an_easy_way_to_implement/
Good morning devs. New post on /r/androiddev subreddit:
Social App idea

Hi everyone, I have an idea for an app that I think has potential to be a successful (similar in ways to Vine or Snapchat) I am fleshing out the idea and coming up with a plan. It would need an android and apple app. What's the best way to learn and build this app and grow this idea? Any books,...


#androiddev https://www.reddit.com/r/androiddev/comments/144wrmk/social_app_idea/
Good morning devs. New post on /r/androiddev subreddit:
Glitch

I'm using Samsung galaxy A33 5g, Whenever I am clicking a picture from Snapchat or Instagram the preview screen shows the image normal and well lit. But after clicking the picture it turns dark I've observed this on these apps only. Haven't used any others. submitted by /u/Apurv2005 ...


#androiddev https://www.reddit.com/r/androiddev/comments/1487rp2/glitch/
We are very happy to announce our support for EMERGENCY for 2023. EMERGENCY provides free, high-quality care to people affected by conflict and poverty. In 2023, €1 from every ticket sold to any of our events will be donated to EMERGENCY. https://en.emergency.it/
Good morning devs. New post on /r/androiddev subreddit:
Problem with avd

Everytime I start the virtual device it will load for some time and stop responding.I have tried alloting it more ram and memory as well as uninstalling all dependencies and installing them again.Still the issue persists submitted by /u/parth13579 link comments


#androiddev https://www.reddit.com/r/androiddev/comments/148z3r4/problem_with_avd/
Good morning devs. New post on /r/androiddev subreddit:
Help me Move Play Button to right Position

Hi guys I plan to use Remote control bluetooth to pause, let my child watch the book, When I turn the page of the book, press to continue the audio play. Don't let the audio play itself to the end. But the device it does not stop / play music. It defaults to clicking the shutter button...


#androiddev https://www.reddit.com/r/androiddev/comments/149o1u3/help_me_move_play_button_to_right_position/
Good morning devs. New post on /r/androiddev subreddit:
Emulator Detection

Hello. We recently had a pen testing on our app and they recommended for me to add emulator detection. However, after exploring the web and chat gpt, I could not find a good enough mechanism that won't have false positive on a real device. I have tried a few banking apps and they detect...


#androiddev https://www.reddit.com/r/androiddev/comments/14aonca/emulator_detection/
Good morning devs. New post on /r/androiddev subreddit:
Does an app need a server to store user data

The title pretty much says it all submitted by /u/Last-Examination1849 link comments


#androiddev https://www.reddit.com/r/androiddev/comments/14e11sg/does_an_app_need_a_server_to_store_user_data/