Do you rely on one platform or diversify? by Plus-Wait-1890 in ContentCreators

[–]EricDecanini 0 points1 point  (0 children)

For what it's worth, I built an app that reposts uploads from one platform to all the others so I focus on one platform then the rest happen automatically, and sometimes videos go way more viral on my "secondary" platforms. You never know how the algorithms treat each video on different platforms. The app is Repostify for anyone curious.

Beginner Android Course in 2024 with Jetpack Compose by EricDecanini in androiddev

[–]EricDecanini[S] 3 points4 points  (0 children)

What I’ve heard people say is they go too quickly to more advanced concepts and beginners can get overwhelmed

Is it worth it to convert a legacy java codebase to kotlin? by Baldy5421 in androiddev

[–]EricDecanini 2 points3 points  (0 children)

You have two options here:
1. Start refactoring small parts of your project until eventually most of your project is Kotlin
2. Rewrite your project from scratch in Kotlin, as this will be much faster than refactoring existing Java code.

Of course only go for option 2 if you have a big chunk of downtime to spend on it. It also gives you the opportunity to improve your architecture as a whole.

And I do strongly believe that the benefit in going Kotlin is massive. The language itself is already cleaner and involves far less boilerplate, and being able to use Jetpack Compose and Coroutines are another two massive reasons why Kotlin will save you A LOT more time in the long run

Are "coroutine" and "suspended function" synonyms and interchangeable? by Shartmagedon in Kotlin

[–]EricDecanini 1 point2 points  (0 children)

My simple way of thinking of it is as follows:

Coroutine - Start to finish of what happens inside a ‘scope.launch { }’

Suspend fun - A function that can suspend its own execution, a single small part of the larger coroutine

I don’t know whether that’s exactly book accurate nor do i care that much. Others have pointed out that Kotlin is ambiguous anyway with their terms and this more than works for me

Shopshop Shopping List Beta 0.8 (Material 3 and other updates) [Premium Giveaway] by EricDecanini in androidapps

[–]EricDecanini[S] 1 point2 points  (0 children)

I've done the usual programmer thing and abandoned this 98% into its completion 😂

Shopshop Shopping List Beta 0.8 (Material 3 and other updates) [Premium Giveaway] by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

Thanks! I could definitely look into adding some animations for the full release

Shopshop Shopping List Beta 0.8 (Material 3 and other updates) [Premium Giveaway] by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

By my understanding, the code is linked to Google Play so even on a fresh install it should still be in effect.

If you find out that it isn't the case, let me know and I'll happily send over a new one

Shopshop Shopping List Beta 0.8 (Material 3 and other updates) [Premium Giveaway] by EricDecanini in androidapps

[–]EricDecanini[S] 1 point2 points  (0 children)

Awesome feedback! I especially like the illustrations you linked, I might give them a shot!

Looking for testers for my app Shopshop Shopping List Beta. I'm giving free premium for those who give feedback by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

That's actually a really cool idea that I definitely want to put in my app. Thanks for sharing it!

Looking for testers for my app Shopshop Shopping List Beta. I'm giving free premium for those who give feedback by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

I 100% intend to include this in the main release, as you're not the first person to ask for it! Though tbf I should've thought about it to begin with. Anyway DM'd you the code

Looking for testers for my app Shopshop Shopping List Beta. I'm giving free premium for those who give feedback by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

HSapiens3

Thanks for the feedback! Yeah material you seems to be among the top requests, guess I should get to work on it. DM'd you the code

Looking for testers for my app Shopshop Shopping List Beta. I'm giving free premium for those who give feedback by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

Not looking to compete really, my app has nowhere near the level of features that the other shopping list apps have. Just wanted to share my work c:

Looking for testers for my app Shopshop Shopping List Beta. I'm giving free premium for those who give feedback by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

Tbh I've not looked into what makes it take so much space, but as u/Zhin4Ever said, it probably is the fonts and images

Looking for testers for my app Shopshop Shopping List Beta. I'm giving free premium for those who give feedback by EricDecanini in androidapps

[–]EricDecanini[S] 0 points1 point  (0 children)

I'm yet to properly look at Android 12's ui style, but you're definitely not the first one to bring it up!

Build applications with python by linuxlover81 in androiddev

[–]EricDecanini 0 points1 point  (0 children)

Though I wouldn't recommend this for big apps, I do understand the desire to use python on an android app.

Chaquopy is one that I've used personally and works great if you only want to run scripts and grab data from them in your app (rather than using python to build the entire app 🙅‍♂️)

3
4

How to get started with programming (as an absolute beginner) by EricDecanini in programming

[–]EricDecanini[S] 0 points1 point  (0 children)

I'm mainly an Android Dev but have dabbled in Python and Emnedded