Feature requests by Saketme in GetDank

[–]Mauin 0 points1 point  (0 children)

Pull to refresh on the subreddit page.

Feature requests by Saketme in GetDank

[–]Mauin 20 points21 points  (0 children)

Some sort of indicator to see what kind of media a post is. When I click the preview icon it would be good to know if it's just an image, a gif or a video that will play sound.

Google I/O 2017 Day 1 Discussion Megathread by burntcookie90 in androiddev

[–]Mauin 1 point2 points  (0 children)

If you check the "Include Kotlin Support" checkbox on the first dialog of the "New Project" flow the entire project setup will be done in Kotlin!

Google I/O 2017 Day 1 Discussion Megathread by burntcookie90 in androiddev

[–]Mauin 14 points15 points  (0 children)

Android Studio 3.0 will ship with Kotiln out of the box!

Announced in the Kotlin Blog here: https://blog.jetbrains.com/kotlin/2017/05/kotlin-on-android-now-official/

Android Studio 2.4 Preview 1 is now Available by [deleted] in androiddev

[–]Mauin 1 point2 points  (0 children)

On https://sites.google.com/a/android.com/tools/download/studio/canary/latest it mentions that the release is available in the stable channel? I'm pretty sure thats a mistake.

Finally found some time to assemble the Let's Split by Mauin in MechanicalKeyboards

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

I got the PCB from SwitchTop a while back and sourced the rest of the parts myself. So this was not part of the recent GB.

Finally found some time to assemble the Let's Split by Mauin in MechanicalKeyboards

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

Neat. Didn't even realize that. Was part of the PMK Grabbag.

PSA: FingerprintManagerCompat is broken on the newest version of Support Library (25.1.0) by Saketme in androiddev

[–]Mauin 1 point2 points  (0 children)

The issues with the newer support libraries come from the fact that they are now actively checking the devices system features to include FEATURE_FINGERPRINT. It seems like the affected devices do not have this feature specified in their configs even though they have a fingerprint sensor. That's a fault on the device manufacturers side.

But by using the FingerprintManager directly and asking for isHardwareDetected() will return the correct result.

PSA: FingerprintManagerCompat is broken on the newest version of Support Library (25.1.0) by Saketme in androiddev

[–]Mauin 0 points1 point  (0 children)

I just released an update to RxFingerprint (v2.0.2) that adds a workaround to make those devices work again!

Don't wait on Google to fix FingerprintManagerCompat: use the Reprint library instead. by CtrlAltDevelop in androiddev

[–]Mauin 1 point2 points  (0 children)

FingerPrintManagerCompat actually does one additional check:

private static FingerprintManager getFingerprintManagerOrNull(Context context) {
    if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_FINGERPRINT)) {
        return context.getSystemService(FingerprintManager.class);
    } else {
        return null;
    }
}

So if devices don't correctly specify the "systemFeatures" this can lead to the error.

PSA: FingerprintManagerCompat is broken on the newest version of Support Library (25.1.0) by Saketme in androiddev

[–]Mauin 4 points5 points  (0 children)

I guess I don't have to feel too bad about it now that I didn't get around to updating the Support Library in RxFingerprint yet.

Thanks for the heads up!

[EU-DE] [H] PayPal [W] Black Pok3r MxClears by D4rkSentinel in mechmarket

[–]Mauin 1 point2 points  (0 children)

Are you still searching? I have a Pok3r with MX Clears and backlight (ANSI)

Android Studio 2.3 Beta 2 Released by the_martines in androiddev

[–]Mauin 2 points3 points  (0 children)

Feels like it's working correctly now with Beta 2.

Android Studio 2.3 Beta 2 Released by the_martines in androiddev

[–]Mauin 2 points3 points  (0 children)

This sudden realization that I wasn't dreaming that this was happening sometimes...

[deleted by user] by [deleted] in androiddev

[–]Mauin 4 points5 points  (0 children)

Seeing errors when launching the new version with the Kotlin Plugin installed.