reddit_androiddev | Unsorted

Telegram-канал reddit_androiddev - AndroidDev - Reddit

-

Stay up-to-date with latest news on Android Development! Content directly fetched from the subreddit just for you. Powered by : @r_channels

Subscribe to a channel

AndroidDev - Reddit

ChatGPT and DALL-E for WearOS (WristAssist v3)

I developed an app (WristAssist) for Smartwatches that allows you to talk to GPT-3 and GPT-4 just like the real ChatGPT.

You are even able to generate images with DALL-E, and share them to your phone.

The app is available in PlayStore and at GitHub. ...

https://redd.it/1as9lzx
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Firebase notification

If a I want to send notifications to users how many user can i handel in free version ...

https://redd.it/1as8aii
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

I created a new launcher app for productivity. I ran Google ads. Installs coming. but no users use productivity mode. I use Firebase events for tracking this.

https://redd.it/1as34p3
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

People who have the Events feature available on Google Play, how do you create one?

Hi,

May I ask if someone in this sub has the Events & Offers available to use in their Google Play account? Please let me know how I can check if my account has this feature as well.
...

https://redd.it/1ardoii
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

How to take a good path, with trying to get a job? And how I can tell, when I truly know basics about specific framework, library in android development?

Hi,

I've just got my engineer, and I wanted to get back to learning android. I've wanted to start new project, and learn new things. The struggle is - I don't know what kind of project to do. For now, I've got two projects, which are using

* Retrofit, okHttp
* MVVM
* LiveData,Flow
* Room database
* Navigation components
* Unit tests
* Hilt

and other, smaller things, like RecyclerView, Glide etc. I'm constantly getting worried, that whenever I'll point these libs in my resume, I will fail whe...

https://redd.it/1arq6bu
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Does an android app has unique fingerprint on every device?

I need to use an app with 2 different accounts. Its agains the rules of the web site to have 2 different accounts, but i have no problem using it when i use browser and delete cookies, etc...

But if i download the app and after each use I delete the cache and data of the app, can i be detected by something like fingerprint/ID of the app or something else?...

https://redd.it/1aro9y7
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Are all developers affected by the 20 app testers change?

I haven't read the full documentation for the 20 testers Google now requires for devs, but I've noticed that my apps are still able to receive updates. Are devs you uploaded their apps before the change unaffected by this? I uploaded my first app in May 2019 and second in May 2023....

https://redd.it/1arkx24
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Best alternative app store to Google Play?

I'm trying to publish my hobby app so it's easily available to prospective employers and Google Play is more of a convoluted nightmare than it's ever been before.

What's the best alternative app store where I can publish my app with an eye to it being easy for anyone I send a link to to get the app on their device?

P.S. Besides this, if anyone would like to explain to me how an internal test is now supposed to work on the Google Play store I would appreciate it. I've filled out all the details...

https://redd.it/1arhmog
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Android Studio uses too much Ram

I know that Android Studio is known for its high RAM usage, but in my case this is insane.

I have 32GB of memory and Android Studio manages to bring my PC to its knees sometimes

​

Android Studio: Build #AI-223.8836.35.2231.11005911

Ubuntu: Ubuntu 22.04.3 LTS

https://preview.redd.it/fbruj8nc7cac1.png?width=677&format=png&auto=webp&s=2fcbc42884337fea7e625780fcee2a6141c0a066

For some reason, there are 4 Java instances, this seems like a memory leak to me because if I close Android Stud...

https://redd.it/18y2bgh
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Have you started using AI coding tools? What do you think of them?

Hello everyone, have you started trying the latest AI code tools, like Figma to Code? It quickly helps you convert designs to code with one click. Do you think it can really help improve your efficiency? Or are you still unaware of the existence of these tools?...

https://redd.it/18x72z9
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Opinions: Android development without local admin privileges (no sudo access)

Hi,


I joined a new company today as an app developer (Android, Kotlin Multiplatform) and unfortunately I realized that not even the developers have sudo rights on their local machine, only the IT support. If you need software, you ask for it there, it gets approved and you download it via the self-service portal. I use MacOS. Company in Germany, about 60 employees, IT Company, developing software for customers.

​

It really annoys me that I have to make a request and wait for every l...

https://redd.it/18wrk9r
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Why is there so much doom and gloom on reddit surrounding android development?

I am someone who just started learning android development because the idea of making apps just seems so fun to me. Plus I've learned extremely basic Javascript and ngl Kotlin is so much nicer.

Yet I keep seeing on reddit how it's a dying field and how, compared to web development, jobs are nowhere too find. I'm so confused where this sentiment comes from? Doesn't literally everybody use a phone? How could there not be a massive demand for app devlopement? Twitter, Facebook, Netflix, Tumblr, B...

https://redd.it/18wrs4i
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Quickly develop your first Android app: Part II basics

This article is quite long, so I will divide it into fewer parts.

Quickly develop your first Android app: Part I basics

Quickly develop your first Android app: Part II basics

https://redd.it/18wnc4e">Quickly develop your first Android app: Part III practice
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Quickly develop your first Android app: Part II practice

This article is quite long, so I will divide it into fewer parts.

Quickly develop your first Android app: Part I basics

Quickly develop your first Android app: Part II basics

https://redd.it/18wnfh0">Quickly develop your first Android app: Part III practice
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Same View model, different composable = same instance?

class GameViewModel : ViewModel() {

var sum by mutableStateOf(0)

fun addNumber(number: Int) { sum += number }

}

fun GameScreen(    gameViewModel: GameViewModel = viewModel()

) { Button(onClick = {gameViewModel.addNumber(3)}) { Text("Filled") } }

fun GameScreen2(    gameViewModel: GameViewModel = viewModel()) {

Text(gameViewModel.sum)<-why sum is 3 and not 0?

}

I really don't understand the principle, and I've read every article about the viewmodel and compose...

https://redd.it/18soa4x
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

What have your interviews been like recently? Android has changed alot in 2-3 years . What are some questions asked in recent interviews?

Mods sorry if this post isn't allowed.

We all know android has changed a-lot and now interviewers are asking for kotlin knowledge. What are some interview questions asked that you didn't expect? or What subjects you feel are important to know now. Tool recommendations that you feel could help any developer out there when developing apps.

This is not a "help me" post more of a bringing awareness to changing technologies etc. ...

https://redd.it/1as9sls
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Android app doesn't work on S24 Utra

I develop an app for my company. My boss is using it. Today I received a notification from my boss that the login screen failed to enter information (entering information in editText did not display). My boss is using the S24 Ultra. My App has been deployed for 3 years and works normally. I'm not sure if it's my boss's phone or the s24 ultra because I don't have a physical device to check. Does anyone have an app error on s24 ultra?...

https://redd.it/1as7e6m
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Openmw android launcher
https://github.com/Duron27/openmw-android

https://redd.it/1aruj9x
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

On-device AI / ML / NLP to convert natural language text into JSON calendar event?

I'd like to create a prototype app that converts a text input (natural language) into a specified JSON format on device.

For example, the user could write (or say, which will be converted to text with speech to text) something like:

>Set up an event for next Monday at 18:30 with Tom to discuss the new CI/CD pipeline. Make it 15 mins.
Schedule a weekly sync with Adam and Kate for Mondays at 8 in the morning.

These should be converted to something like:

{
"title": "New CI/CD pipeli...

https://redd.it/1arosiw
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Associating app link to an Android library

Cross-posting here for more visibility. This issue is driving me nuts: https://stackoverflow.com/questions/78003743/android-associating-app-link-to-an-android-library


I have developed an Android library that has UI components/screens that will be consumed by my own app as well as multiple other client apps. There is a flow within my library that will launch a browser to complete some tasks and ...

https://redd.it/1arp80a
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Invalid Data deletion link on Play-store

I have submitted an update to my app on Play-store with data deletion link on the Data safety form, but I got an email containing this error after 10min.


Policy Declaration - Data Safety Section: "URL provided https://xyz.com/account-deletion-request does not link to a valid page"


This is the page the link opens:

&#x200B;

https://preview.redd.it/xxilwxve7ric1.png?width=1953&amp;format=png&amp;auto=webp&amp;s=ce3d45905d65f1c3cae2e4838b4ddaf9a1996225...

https://redd.it/1arfxcp
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Renderscript code doesn't run

I have this RenderScript code in Android to process an image. It works in my old app. But when I create a new Android Studio project, it doesn't work. And doesn't show any errors. Do I need certain permissions or changes made to Gradle to enable it?

RenderScript rsScript = RenderScript.create(context);
Allocation alloc = Allocation.createFromBitmap(rsScript, bitmap);
ScriptIntrinsicBlur blurEffect = ScriptIntrinsicBlur.create(rsScript, Element.U8_4(rsScript));
blurEffect.setRadi...

https://redd.it/1ark4wh
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Amazon terminated my Appstore Developer Account after earning more than $30K. What can I do?

I received this email from the Amazon Mobile App Distribution Team just a few days before dispensing my payment (the 29th of each month).

> We are contacting you regarding your developer account and submitted applications with the Amazon Developer Program. During our review processes, we have found that your application(s) contains content that infringes on the intellectual property rights of other parties. Due to violations of our content guidelines and/or our developer agreement, we have dis...

https://redd.it/1arfc6e
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Question regarding right usage of Dispatchers

I am taking a look a the Now In Android repo and the code in usecases run on the Main Thread.

Example:

operator fun invoke(sortBy: TopicSortField = NONE): Flow<List<FollowableTopic>> {
return combine(
userDataRepository.userData,
topicsRepository.getTopics(),
) { userData, topics ->
val followedTopics = topics
.map { topic ->
FollowableTopic(
topic...

https://redd.it/18x8zmo
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Conditional navigation in jetpack compose

Hello everyone,

How do you handle conditional navigation in Jetpack Compose? I retrieve whether the onboarding screen should be shown or not from a datastore. However, the Onboarding Screen (Red) still manages to appear for a couple of seconds before the navigation goes to the Home Screen (Yellow). I've found that adding a placeholder or custom splash screen fixes this, but I'm wondering if there are other solutions?

https://preview.redd.it/3ploraaaj2ac1.png?width=1790&amp;format=png&amp;auto=webp&amp;s=d...

https://redd.it/18wwex8
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

My google play developer account was suspended since 2017, Can and create a new account now ?

My google play developer account was suspended since 2017, Can and create a new account now ?...

https://redd.it/18wtnje
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

My app ( meditation music no copyright) was banned from Jan 23 to May 23

So the reason was , tobacco ads were showing in admob, I was getting daily 50,100+ downloads,
So i understand about ads filtering,
Later , but as I was using adbkockrr I wasn't able to do this settings, i thought admob not working and i was new to ads,

So from may i gave new release with new settings, but I hardly get 4-5 downloads till dec 2023,
It's like,

My app is dead app now.....
What i can do ? I wanna grow app, have worked very hard : so should I rebuild app with rebranding ( but i thin...

https://redd.it/18wqa6k
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Google Play Promo Videos - Autoplay doesn't work!

Hey community! My promo videos doesnt Autoplay on Desktop Google Play. Other developer's videos work well.

Any clues on how to fix that?

Thank you!

&#x200B;...

https://redd.it/18won6t
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Will selling my old test phones get me banned?

I have a number of android phones that have old versions of android and don't need them any more for testing. Was thinking of selling them for 10-20 EUR / piece. If someone with a banned developer account gets them, will i get banned by association? Also thinking about ad-abuse by the new user and getting banned on ad-network? (like Admob)

Of course the phones will have factory reset, but every phone has immutable hardware identifiers like IMEI that can be forever tied to your Google account....

https://redd.it/18sbyqj
@reddit_androiddev

Читать полностью…

AndroidDev - Reddit

Self-promotion I started making videos on YouTube

Hello! I hope this is ok to share. I started doing video tutorials on YouTube for Android Devs, started with a wipe-clean installation of Android Studio here, how I set up AS to work daily here, and now I started looking at GoogleMaps for Compose (I work with it almost daily) in my latest video.

Let me know what you think about my videos and how I could improve! ...

https://redd.it/18sv5gk
@reddit_androiddev

Читать полностью…
Subscribe to a channel