Recent content by chaoscreater

  1. C

    MacroDroid quick tile not named properly

    I've set up MacroDroid on my new tablet (Lenovo Xiaoxin Pad Pro 12.7') and for some reason the MD quick tiles just aren't updating their names to the actual names that I've given them. They're named Macrodroid tile 1, tile 2, etc. Normally, I would fix this by going to MD -> quick tiles and...
  2. C

    How to compare contents of 2 variables?

    Your suggestion did help me a lot. I ended up tweaking a few things and got it working. And yes it's definitely faster than iterating an array/dictionary. Thanks again.
  3. C

    How to compare contents of 2 variables?

    Ended up appending a - between the words using regex, so that it makes each word unique. So instead of Google-Home, it'll become Google-Home and therefore when the word "Google" is matched, it'll just match itself and not any other words that contain Google. Not ideal, but it'll do for my use case.
  4. C

    How to compare contents of 2 variables?

    Thanks, I've just tried it but it doesn't quite work. Firstly, it should be replacing \n by | because there could be words that are separated by spaces. It'd be better to do this on a new line instead. Anyway, here's my data for variable A: Here's my data for variable B: And here's the...
  5. C

    How to compare contents of 2 variables?

    Let's say I have 2 variables: Variable A: apple orange pear banana kiwifruit Variable B: orange apple pear I want to compare them and list only the differences that are found in Variable A but not Variable B. Does anyone have a shell script for this? I've tried a few shell scripts and just...
  6. C

    Android 15 will break MacroDroid helper

    I'm still on Android 13 and I don't really see the need to update to newer versions. Sure I might miss security patches, but I don't do any banking stuff on my phone and don't do anything dodgy that would potentially get my device compromised. Would rather stay on older Android version purely...
  7. C

    Wireless Debugging intent

    Turns out that I don't even need the port! I found this app from F-Droid called Wirebug. In the app, you can enable wireless debugging and after that point, you can then run adb connect IP_address, e.g. adb connect 192.168.0.140. Right after that, you can then run adb tcpip 5555. Both these can...
  8. C

    Wireless Debugging intent

    That's a nice tool, but I'm not sure how it would help here. All I need to do is something like this: 1. Open the Wireless Debugging page 2. Get IP address and port on the page 3. Run adb connect ip_address : port with Termux via Termux Tasker plugin 4. Once connected, use Termux again to run...
  9. C

    Wireless Debugging intent

    This guy seems to have gotten it working though: https://stackoverflow.com/a/74859391/1441275 I just can't figure out how to take some of his settings and turn it into an intent. I wish there's some tool that shows you the intent behind the scenes, like when you click on a menu setting, it'll...
  10. C

    Webhook not working

    I just tested this as I ran into the issue again yesterday and it didn't work. I got a new tablet and restored my Macrodroid backup to it. As per my previous post, it seems that when the backup is restored, it somehow messes with the deviceID. The deviceID on the tablet is not the same as the...
  11. C

    MacroDroid Helper APK

    Not sure what you are on about. You either root to get functionalities that would otherwise require a helper app, OR you install helper app and it should give you additional functionalities. It doesn't matter what Android ROM you're using, it should work unless there's some weird compatibility...
  12. C

    MacroDroid Helper APK

    That makes no sense at all. Android IS open source. Any developer or company that wants to use Android as the OS in their ROM will obviously make use of what's already there. The majority of the work is done by Google and they just take the image and build upon it. Why would they go and waste...
  13. C

    Wifi ADB debug mode lost on restart?

    I haven't been following the replies on this thread, so I have no idea what's going on anymore. I switched to using root on all my devices for the past few years and didn't really need the adb tcpip 5555 method anymore. However, I recently bought a device that I can't root because it'll break a...
  14. C

    Wireless Debugging intent

    Thanks for your reply. I'm already using that setting. I'm looking to use the read screen action when I'm at the Wireless Debugging page. I need to get the IP address and the port and then pass that into Termux to do some other funky stuff. At the moment, I can get to the page by sending an...
  15. C

    Wireless Debugging intent

    Does anyone know what the intent configurations is to get to the Wireless Debugging page, which is found under Developer Settings? I've tried a few different combinations and just couldn't get it to work. Here's one of the links I found: https://stackoverflow.com/a/74859391/1441275
Top