This commit is contained in:
Daniel Langbein 2023-11-21 16:41:06 +01:00
parent 061b579409
commit 5353980701
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -3,29 +3,75 @@
# Installation and Usage. https://nixos.wiki/wiki/WayDroid # Installation and Usage. https://nixos.wiki/wiki/WayDroid
# #
# Installation: # Installation:
# Fetch WayDroid images. # Initialize and fetch WayDroid images.
# You can add the parameters "-s GAPPS -f" to have GApps support.
# sudo waydroid init # sudo waydroid init
# # # Alternatively, to have GApps support.
# Usage: # sudo waydroid init -s GAPPS -f
# Un-root Waydroid.
# Discussion: https://github.com/waydroid/waydroid/issues/935
# Solution: https://github.com/waydroid/waydroid/issues/1060#issuecomment-1732325955 **and** https://github.com/waydroid/waydroid/issues/1060#issuecomment-1813789921
# Note: Check if `/var/lib/waydroid/waydroid_base.prop` still contains the added properties after some time.
# TODO: ARM Apps Incompatible
# https://wiki.archlinux.org/title/Waydroid#ARM_Apps_Incompatible
# https://www.reddit.com/r/NixOS/comments/15k2jxc/need_help_with_activating_libhoudini_for_waydroid/
# Startup:
# Start the WayDroid LXC container # Start the WayDroid LXC container
# sudo systemctl start waydroid-container # sudo systemctl start waydroid-container
# sudo journalctl -b -u waydroid-container # journalctl -b -u waydroid-container
# #=> Started Waydroid Container. # #=> Started Waydroid Container.
# Start WayDroid session # Start WayDroid session
# You'll know it is finished when you see the message "Android with user 0 is ready".
# waydroid session start # waydroid session start
# # You'll know it is finished when you see the message "Android with user 0 is ready".
# Usage examples:
# Install and launch F-Droid # Install and launch F-Droid
# curl -L -o ~/Downloads/F-Droid.apk https://f-droid.org/F-Droid.apk # curl -L -o ~/Downloads/F-Droid.apk https://f-droid.org/F-Droid.apk
# waydroid app install ~/Downloads/F-Droid.apk # waydroid app install ~/Downloads/F-Droid.apk
# Install S-pushTAN
# # Requires Google Play services.
# # Aurora Store failed to launch ...
# # The old version installs without errors!
# waydroid app install ~/Downloads/com.starfinanz.mobile.android.pushtan_1.5.3-20033_arm64-v8a,armeabi-v7a,x86,x86_64_apkmirror.com.apk
# # The new version can't be installed without enabling ARM support ...
# # Manuall installation fails, but no error message was visible.
# waydroid app install ~/Downloads/com.starfinanz.mobile.android.pushtan_4.3.0-30106_arm64-v8a,armeabi-v7a_apkmirror.com.apk
# # Install by copying via adb did also fail.
# # https://docs.waydro.id/faq/using-adb-with-waydroid
# # Settings > About > IP
# adb connect <IP>:5555
# adb shell
# adb ls storage/emulated/0/Download/
# adb push ~/Downloads/com.starfinanz.mobile.android.pushtan_4.3.0-30106_apkmirror.com.apk storage/emulated/0/Download/pushtan.apk
# # Manually install from files app, gives error "App not installed".
# Launch some apps
# waydroid show-full-ui
# waydroid app list
# waydroid app launch org.fdroid.fdroid # waydroid app launch org.fdroid.fdroid
# waydroid app launch com.aurora.store
# waydroid app launch com.starfinanz.mobile.android.pushtan
# Stop WayDroid session # Stop WayDroid session
# waydroid session stop # waydroid session stop
# Stop the Waydroid LXC container # Stop the Waydroid LXC container
# sudo systemctl stop waydroid-container # sudo systemctl stop waydroid-container
# TODO: Is WayDroid rooted? How to un-root it? # Maintenance - Update Android
# https://github.com/waydroid/waydroid/issues/935 # sudo waydroid upgrade
# Cleanup
# https://wiki.archlinux.org/title/Waydroid#General_tips
# TODO: Webcam
# obs -> add v4l2 video captue -> log entry: info: v4l2-input: Found device 'HD Webcam: HD Webcam' at /dev/video0
# https://www.reddit.com/r/pop_os/comments/17ngh9h/how_to_make_cameravirtualcamera_working_on/
# Multiple issues, that camera does not work
# - https://github.com/waydroid/waydroid/issues/186
# - https://github.com/waydroid/waydroid/issues/170
# OBS virtual camera also doesnt work with v4l2loopback-dkms. https://github.com/waydroid/waydroid/issues/170#issuecomment-949719050#
# Some people write, that Open Camera works. https://github.com/waydroid/waydroid/issues/170#issuecomment-1237978646
# - https://github.com/waydroid/waydroid/issues/284
assertions = [{ assertions = [{
assertion = config.services.xserver.displayManager.gdm.wayland; assertion = config.services.xserver.displayManager.gdm.wayland;