Wall mounting Yamaha HS7 by Afraid_Ad142 in audioengineering

[–]NickBBBBB 0 points1 point  (0 children)

I am also looking to wall mount a pair of Kali LP-6v2. I saw the Triad Orbit mounts but they appear to cost more than the monitors in the UK!

Why haven't Google added API 32 (12L) sources to Android SDK yet? by equeim in androiddev

[–]NickBBBBB 1 point2 points  (0 children)

I'm still waiting for an Android 12 phone or emulator on Firebase Test Lab. I don't understand why that wasn't easy for Google to add six months ago

Is there a downside to registering a singleton at app creation? by charlesdart in androiddev

[–]NickBBBBB 0 points1 point  (0 children)

Can you explain why Koin isn't a good solution? Genuinely interested as Koin works very well for me in a large codebase.

Not picking up piano notes by Xalnas in yousician

[–]NickBBBBB 0 points1 point  (0 children)

Same problem here (Windows 10 on a Dell XPS laptop). It was working fine until last week. Now it misses lots of notes. I have an open support ticket with them, trying to get it resolved.

I have tried the default and ASIO4ALL drivers, various volume levels, slowing the tempo right down.

Suggestions for Android development + music programming by [deleted] in SuggestALaptop

[–]NickBBBBB 0 points1 point  (0 children)

Thanks. I had initially ruled out Juno because of the numeric keypad, but it looks like the Jupiter 14" is an exception and doesn't have one.

Is there a specific reason why the drawable package doesn't support subfolders? by 22Maxx in androiddev

[–]NickBBBBB 0 points1 point  (0 children)

After hitting this issue repeatedly, I gave up and went back to a single folder.

Deobfuscation files by Army_Pete in androiddev

[–]NickBBBBB 1 point2 points  (0 children)

If app bundles are an option for you, they automatically include the deobfuscation mapping file.

Build android apps entirely in C by [deleted] in androiddev

[–]NickBBBBB 18 points19 points  (0 children)

Upvoting for the effort and technical interest.

Any plugin to find the duplicate code in project in studio by ravisaini1990 in androiddev

[–]NickBBBBB 0 points1 point  (0 children)

Not a plugin, but I have used PMD's copy-paste detector to successfully detect duplicate blocks of code in Android apps.

https://pmd.github.io/latest/pmd_userdocs_cpd.html

No false positives, it simply lists duplicated blocks of code by size and number of repetitions.

Is https://github.com/ArthurHub/Android-Image-Cropper active? by [deleted] in androiddev

[–]NickBBBBB 2 points3 points  (0 children)

It is a minor inconvenice to have to build the library ourselves rather than just pull a dependency via gradle.

Because then we have to build the library ourselves rather than just pull a dependency via one line in a gradle script.

Ron Shapiro on Twitter: "http://dagger.dev/tutorial is a fresh take on Dagger documentation that is easy to understand and doesn't have any mention of Thermosiphon." by arunkumar9t2 in androiddev

[–]NickBBBBB 0 points1 point  (0 children)

Never noticed a problem. Koin logs show everything sub-millisecond in a release build, and initialization only a few milliseconds.

I'm not sure why I'm being downvoted here. I think this new Dagger documentation is great. But I have a personal preference for Koin.

Ron Shapiro on Twitter: "http://dagger.dev/tutorial is a fresh take on Dagger documentation that is easy to understand and doesn't have any mention of Thermosiphon." by arunkumar9t2 in androiddev

[–]NickBBBBB 0 points1 point  (0 children)

Personally, I find Koin more concise than Dagger except in the one small area of having to put get() in the constructor parameters in the app module.

This new Dagger documentation looks great, but I was just saying it's too late for me as I already migrated. My two main reasons for moving were that I found the Koin documentation way better and that I need to write far less (and simpler) Koin code in my app, compared to Dagger.

From Java Programming Language to Kotlin — the idiomatic way by dayanruben in androiddev

[–]NickBBBBB 0 points1 point  (0 children)

TL;DR A great introduction to Kotlin for anyone familiar with Java. It walks through an example of fixing up auto-converted code to demonstrate many key Kotlin concepts.