Devin Duricka
Devin Duricka
I found that sending an [urgent install request](https://developers.google.com/android/guides/module-install-apis#send_an_urgent_module_install_request) for the module seems to help: ``` implementation 'com.google.android.gms:play-services-code-scanner:16.0.0' implementation 'com.google.android.gms:play-services-base:18.2.0' ``` ``` val scanner = GmsBarcodeScanning.getClient(this) val moduleInstallRequest = ModuleInstallRequest.newBuilder() .addApi(scanner)...
> @DevinDuricka It's real work! Thanks! But Google Code Scanner shows black screen when launching it today( Are you on a physical device or emulator? I've noticed the emulators will...
I've also noticed that when using `MediaSessionService` the notification will only include the artwork if the `MediaItem` sets the Artwork data, but not the `playlistMetadata` (this may be by design)....
@milchalpenl how did you edit the above files? I was under the impression they were read-only unless you create a magisk module?
Check out EasySSHFS. It's the only way I easily found to do it on Android 10 (11?)+ I've noticed it will also scan periodically throughout the day for new media,...
I'm running Android 14 on it via LineageOS, and I think every solution Android 10+ requires fuse (don't quote me on that). In this case though, yes, it is a...
Yep! It's been a while since I did this, but I didn't even end up using the script. I _think_ (if memories serves) I found the best compatibility with mounting...
Out of curiosity, do you have Magisk installed and gave EasySSHFS superuser permissions? That is a whole process, but I think SU permissions are required. I'm also still on Lineage...
Thanks for your work on this! I tried rc12 and ran into an issue with the `material` library specifically. EX. `import androidx.compose.material.icons.Icons` Icons was missing. (It happens with all `material.icons.*`...