Posts with Tag: github

Github Actions Runner Docker Container with Android SDK

A couple weeks ago, I was setting up a CI system with instrumented tests to run on Android devices. ...

Android Emulator with Github Actions on Linux

Occasionally, I work on some Android apps and in order to test them, I have a computer connected to ...

Goblog: GIN powered JSON and HTML rest endpoints with a testing framework

A few weeks ago, I set out to learn a bit of go, and rewrite my blog software. Previously I had been ...

Most Recent Post

Android ClipboardManager Deprecated: How to fix

Recently, I've been getting warnings about the ClipboardManager in Android being deprecated, see: [https://developer.android.com/reference/android/content/ClipboardManager#setText(java.lang.CharSequence)](https://developer.android.com/reference/android/content/ClipboardManager#setText(java.lang.CharSequence)) Previous I had some code something like this for copying a UUID to the clipboard: ``` val clipboardManager = LocalClipboardManager.current Box(modifier = Modifier.clickable { clipboardManager.setText(AnnotatedString(uuid)) } ``` However, searching for how to fix this hasn't really t ...