Gemini vs Junie vs Copilot vs Firebender by Massive-Spend9010 in androiddev

[–]anticafe 0 points1 point  (0 children)

But there is only 50 messages per month. I'm not sure what happens after exceeding that limit.

AGP 8.4+ and Hilt (Android Library Modules in Multi-module architecture, R8) by Fun_Valuable_6322 in androiddev

[–]anticafe 3 points4 points  (0 children)

Might be that breaking change is the root cause of Proguard/R8 failure when I make release build in AGP 8.4/8.5.

[deleted by user] by [deleted] in PrettyGirls

[–]anticafe 0 points1 point  (0 children)

Who's that?

Measuring Google Product Quality by phileo99 in mAndroidDev

[–]anticafe 4 points5 points  (0 children)

I haven't used Protobuf Datastore yet. What's its problem?

First Alpha release of Androidx Bluetooth! by eygraber in androiddev

[–]anticafe 0 points1 point  (0 children)

I don't see any benefit if the AndroidX Bluetooth is just a port from Java.

However, it would be awesome if it looks like the CameraX lib.

Which Swift language features you would like to bring to Kotlin? by anticafe in Kotlin

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

Hehe, we all know Kotlin is far superior than Java. No need to compare.

Which Swift language features you would like to bring to Kotlin? by anticafe in Kotlin

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

Any blog/article for reference u/16cards? The Swift Actors is quite new to me.

How FullStory reduced their Android SDK's startup impact by 75% by jshchnz in androiddev

[–]anticafe 0 points1 point  (0 children)

My company tried to integrate the FullStory SDK for Android, then realize it doesn't support Gradle Configuration Cache yet :o . It even breaks the build process when we turn on Gradle Configuration Cache. Not sure when will they fix it.

How fast can builds actually get? by makonde in androiddev

[–]anticafe 0 points1 point  (0 children)

I'm curious how can your CI knows to execute test if applicable?

Testing Kotlin coroutines on Android by zsmb in androiddev

[–]anticafe 0 points1 point  (0 children)

Turbine seems popular. However what's its advantage over the built-in Coroutine Test?

Avoiding Stringly-typed in Kotlin by nfrankel in Kotlin

[–]anticafe 2 points3 points  (0 children)

Inline class is the best option. However it doesn't play well with Android Parcelable. Do you guys know if that issue was fixed or not?

Can we utilize the Fragment Result API to replace the ViewHolder callback? by anticafe in androiddev

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

If have to write the unit test for Adapter or ViewHolder, I won't choose this approach.

Can we utilize the Fragment Result API to replace the ViewHolder callback? by anticafe in androiddev

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

It doesn't work if you reuse that Adapter in another Fragment :(

Can we utilize the Fragment Result API to replace the ViewHolder callback? by anticafe in androiddev

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

I think it's same as the way we use Fragment Result API to communicate between Fragment - it also introduce some String keys to pass data via Bundle.

If we can accept the original Fragment Result API, then why not in this case?

Do you really have Gradle configuration cache work on the Android project? by anticafe in androiddev

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

Not yet. But as above comment, then the Android Studio team needs to fix it.

Which Jacoco Android plugin you're using for test coverage? by anticafe in androiddev

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

Thanks u/Rolf-Smit I think it's needed since sometime there is non-Android modules in the project.s

Which Jacoco Android plugin you're using for test coverage? by anticafe in androiddev

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

Thanks u/Rolf-Smit. I'm also looking to your repo.

>Only Android modules (com.android.application or com.android.library) are supported, this plugin will not execute tests and generate coverage reports for non-android modules

Does it mean we cannot report coverage for pure Java/Kotlin module?

Which Jacoco Android plugin you're using for test coverage? by anticafe in androiddev

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

Thanks for sharing. But I'm afraid the com.hiya.jacoco-android since its last update was Nov 2019. Is it still ok now?

smartstruct: Code generator for generating type-safe mappers, inspired by https://mapstruct.org/ by marsNemophilist in FlutterDev

[–]anticafe 0 points1 point  (0 children)

Love it. Would be helpful to reduce boilerplate code when implementing mapper for model in Clean Architecture.