@Inali
Thank you for the effort, maybe this site helped a little bit. The solution i've found is a simple: sudo ufw allow out on waydroid0 to any. I was (and still am) confused about the 2 devices and how they "work" together. Now that i know which interface to deal with i can, of course, precise this rule, but i have another (Android-) firewall in the waydroid container that can handle this.
Best posts made by bbiw
-
RE: How to get internet in waydroid with ufw enabled?
-
Playback pauses when changing pulseaudio's default sink
Hello @ all,
i'm working on an equalizer app for UT (https://github.com/bigbrotherisstillwatching/utEqualizer). I recently updated to Noble and now playback of e.g. the music-player pauses when i deactivate the equalizer by setting the default sink back to
sink.primary_output. This does not happen, when activating the equalizer by setting the default sink to the createdequalizer-sink, playback just continues.Does anyone know, what the problem is and IF or HOW i can make it work like before on Focal (?); because it didn't happen there. Is this because of changes in pulseaudio or media-hub or a bug or something else?
Help appreciated!
Greetings bbiw
-
Waydroid crashes in Desktop Mode over HDMI
Hello all,
when i connect bluetooth mouse & keyboard to my Fairphone 4, connect the phone to my TV with a USB-C-to-HDMI-cable and start Waydroid, Waydroid starts correctly, but crashes and restarts as soon as i hover with the mouse cursor over the Waydroid window. There aren't any useful informations when starting Waydroid from Terminal, even with --verbose and/or --details-to-stdout enabled.
Anyone has an idea what the problem is?
Latest posts made by bbiw
-
RE: Playback pauses when changing pulseaudio's default sink
Ok, this seems to be a new feature of the 24.04-1.0 release. This seems to be desired by others, but hinders function of my equalizer app. An option to disable/enable this behavior in the system settings would be nice.
Interestingly this does not happen, when moving the sink inputs with e.g.:
pactl list short sink-inputs | awk '{print $1}' | xargs -I {} pacmd move-sink-input {} equalizerand back withpactl list short sink-inputs | awk '{print $1}' | xargs -I {} pacmd move-sink-input {} sink.primary_output.But to implement this function into my app and consider all the different eventualities will be very complicated, i think. Changing the default sink is much easier.
-
RE: Playback pauses when changing pulseaudio's default sink
When creating a null sink with e.g.:
pactl load-module module-null-sink sink_name=equalizerand changing the default sink to this sink with:pacmd set-default-sink equalizermusic keeps on playing. But when setting back to the standard sink with:pacmd set-default-sink sink.primary_outputthe music player pauses and themedia-hublog says:media-hub: Pausing Player with key: 1, resuming after phone call? no. -
RE: App developers' guide to publishing applications for Ubuntu Touch 24.04-1.x
The standard and only
qt_versionsettable inclickable.yamlis still5.12...shouldn't this be5.15for the new noble system? -
Playback pauses when changing pulseaudio's default sink
Hello @ all,
i'm working on an equalizer app for UT (https://github.com/bigbrotherisstillwatching/utEqualizer). I recently updated to Noble and now playback of e.g. the music-player pauses when i deactivate the equalizer by setting the default sink back to
sink.primary_output. This does not happen, when activating the equalizer by setting the default sink to the createdequalizer-sink, playback just continues.Does anyone know, what the problem is and IF or HOW i can make it work like before on Focal (?); because it didn't happen there. Is this because of changes in pulseaudio or media-hub or a bug or something else?
Help appreciated!
Greetings bbiw
-
RE: Firewall port to allow for push notifications
@ikoz I think i have found the solution. After allowing outgoing traffic to
188.166.175.79port5001the notifications seem to work.lsof,netstatand a little bit more googling helped me. After disablingufw;lsofandnetstatwere showing the IP and port after a notification came in. Port443is needed, too. Unfortunately logging withufwdoes not work, but who cares, i didn't need it. Thanks for pushing me into the right direction, this warning app could save a life.
-
Firewall port to allow for push notifications
Hello all,
i've installed an app that warns me e.g. in the case of fire. It was removed from the OpenStore, but it's source code can be found here: https://github.com/S60W79/warnapp-deutschland or https://gitlab.com/S60W79/warnapp-deutschland.
The problem is i've activated
ufwand because of that i don't receive the push notifications.Does anyone know which port to open for this or a way to find out which port is used or which firewall rule to set?
Thanks all!
-
RE: App text and other objects extremely large or small in windowed mode
-
RE: Waydroid crashes in Desktop Mode over HDMI
@wynn1212 You're the best
. TBH i was hoping you would do it, because you faced the same problem. Maybe there will be a real solution soon
. -
RE: App text and other objects extremely large or small in windowed mode
@ikoz I use the Label component somewhere else in the app and the scaling problem persists. The text is still very large on TV.
@kugiigi I've used units.gu() before, but didn't know or forgot the meaning of it. This maybe a good hint, i will try this. Thank you.
As for the header i've found another solution:
Set
font.pointSizetohdrrec.height/3, this way the relation stays the same. Maybe i will use this relation thing for other texts the problem still persists, because Text components for which I didn't set a size has no scaling problem. E.g. settingfont.pointSizetotxt1.font.pointSize*2or i will try with the grid units like mentioned above.I will write again in the event of further problems.