Hi there guys and gals, i have a question for you.
I searched and searched but i didn't get any result.
I was wondering if it exists, a mod that allows the phone to activate SYNC just then it's plugged to a power source (USB, Wireless charging).
Thanks!
I've never done it, and it's not xPosed, but can't you use Tasker to achieve this?
@dany547
Try Synker, it also has a Tasker plugin for automation purpose.
Nergal di Cuthah said:
I've never done it, and it's not xPosed, but can't you use Tasker to achieve this?
Click to expand...
Click to collapse
hmm, you are right sir! :good:
Portgas D. Ace said:
@dany547
Try Synker, it also has a Tasker plugin for automation purpose.
Click to expand...
Click to collapse
cool! but i want the process to be automated!
dany547 said:
cool! but i want the process to be automated!
Click to expand...
Click to collapse
As said before: use Tasker to trigger a sync whenever the device is connected to a power source.
Related
Anyone sideload these 2 apps yet? Especially now that Autoremote allows direct communication via BlueTooth...
nikkobenson said:
Anyone sideload these 2 apps yet? Especially now that Autoremote allows direct communication via BlueTooth...
Click to expand...
Click to collapse
Way ahead of you, except tasker won't install. Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]
I got Locale installed but it seems to crash when I try to add conditions.
Llama seem to work, it seems I can at least change volumes based on times of days, its a start. Not sure what profiles I would need with a watch but Llama might be the best bet right now
dipole said:
Way ahead of you, except tasker won't install. Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]
I got Locale installed but it seems to crash when I try to add conditions.
Click to expand...
Click to collapse
Damn.
autoremote
nikkobenson said:
Damn.
Click to expand...
Click to collapse
Okay I am wondering how to connect other devices? I know wrong place to
ask but am asking anyway?
I have not had problems installing autoapps just can't get other devices to connect or see it on search of nearby devices?
New version 1.02
Sure is:
http://www.mediafire.com/download/6...tel.appcessory.gear.watchstyler.manager-1.apk
WARNING: Will delete old watchfaces
Brendo said:
Sure is:
http://www.mediafire.com/download/6...tel.appcessory.gear.watchstyler.manager-1.apk
Click to expand...
Click to collapse
Where are you seeing this ? Im in AUS aswell, I could never find it..
fOmey said:
Where are you seeing this ? Im in AUS aswell, I could never find it..
Click to expand...
Click to collapse
Gear manager -> Samsung Apps -> Utilities
6. Watch Styler
Brendo said:
Gear manager -> Samsung Apps -> Utilities
6. Watch Styler
Click to expand...
Click to collapse
Ahhh ! There she is.. Thank you.. thought I was going nuts.
Slightly off topic, have you had any luck with atooma working on the gear ?
fOmey said:
Slightly off topic, have you had any luck with atooma working on the gear ?
Click to expand...
Click to collapse
I can have a look, but don't even know what it is (other than knowing there is a thread here) :s
Brendo said:
I can have a look, but don't even know what it is (other than knowing there is a thread here) :s
Click to expand...
Click to collapse
Its a tasker like app, you can set predefined rules to execute on actions... so for example: you flick your wrist and app would open..
I believe you can setup connectivity between your phone and your gear also, so if you flick your wrist an app could also open up your phone ? Or atleast this is what iv been led to believe anyway.
fOmey said:
Its a tasker like app, you can set predefined rules to execute on actions... so for example: you flick your wrist and app would open..
I believe you can setup connectivity between your phone and your gear also, so if you flick your wrist an app could also open up your phone ? Or atleast this is what iv been led to believe anyway.
Click to expand...
Click to collapse
Oh, that sounds good (until Tasker plugin/app comes along)
Brendo said:
Oh, that sounds good (until Tasker plugin/app comes along)
Click to expand...
Click to collapse
Exactly what im thinking, Iv got wemo's all around my house... I cant wait till I can control them via my gear !
All I need is to send a GET request to my home server and I can toggle them, tasker handles this with no problems !
What im hoping to do is trigger tasker profiles using atooma actions..
Cool that it is there...not cool that it erased all my watch faces I already created after I updated. Bummer! I don't really notice any differences...did not see any new options or styles of hands or anything. It's still an awesome app though.
Brendo said:
Sure is:
http://www.mediafire.com/download/6...tel.appcessory.gear.watchstyler.manager-1.apk
Click to expand...
Click to collapse
Warning, Backup you creations before installing.. it delete all of mine..
morbeious said:
Warning, Backup you creations before installing.. it delete all of mine..
Click to expand...
Click to collapse
I backed all mine up and still lost them. When I went back in after the restore it's like they couldn't be recognized by the app.
Hey guys.
I am trying to figure out when a new app is shown. I have tried hooking into the Activity class for onWindowFocusedChanged method which works under normal conditions.
For instance, my ROM has the ability to hold a button to kill foreground app. Works great. however, doing that, the onWindowFocusedChanged method is not called. So my module does not detect the focus is lost.
I am wondering if anyone else has any other ideas. AccessibilityService works perfectly. But uses a lot of CPU and other resources. Was thinking maybe Window.class or WindowManager.class would help as well. But not sure. Thanks guys for your time!
Can't you simply hook onResume or similar?
GermainZ said:
Can't you simply hook onResume or similar?
Click to expand...
Click to collapse
Only one problem left: "super" access -> http://forum.xda-developers.com/xposed/problem-invoke-super-methods-t2822375
defim said:
Only one problem left: "super" access -> http://forum.xda-developers.com/xposed/problem-invoke-super-methods-t2822375
Click to expand...
Click to collapse
I don't see how that is related in this case. Why would he want to call the super method explicitly?
GermainZ said:
I don't see how that is related in this case. Why would he want to call the super method explicitly?
Click to expand...
Click to collapse
eg for onResume the 1st call have to be super.onResume
defim said:
eg for onResume the 1st call have to be super.onResume
Click to expand...
Click to collapse
There's no reason to use beforeHookedMethod/replaceHookedMethod in this case, so the original method will call the super method, and afterHookedMethod can be used to e.g. send a broadcast without having to worry about it.
GermainZ said:
There's no reason to use beforeHookedMethod/replaceHookedMethod in this case, so the original method will call the super method, and afterHookedMethod can be used to e.g. send a broadcast without having to worry about it.
Click to expand...
Click to collapse
Yeas, with afterHookedMethod no problems, but i wanted to point to that, so he has not to do the same research as me
Thanks guys for your reply!
I did end up using an AccessibilityService. After much reading and testing, i have gotten the app to use .04 percent of the CPU in the last 5 hours. Pretty damn good! I am probably going to use this method anyhow.
I did hook onResume and onCreate, but some nothing would happen when some apps would show. For instance, the home screen of Apex launcher wouldn't trigger on onResume or anything like that. I even looked at the smali and it uses a LauncherActivity which extends the Activity class. So I was awfully confused. I tried it with both a before and after hooked method. I surely thought hooking onResume and onCreate would signify the opening of an app. But it didn't for all of them.
Thanks again for your replies!
Is it possible to use tasker to switch on lastpass accessibility toggle? My OnePlus 3t (not rooted, OOS 9.0.4) deactivates it almost on a daily basis. I have switched off battery optimisation for lastpass but the phone turns the toggle off.
Use auto input
Ta. I'll check that out
Hi there. Maybe you can try using the "Custom Setting" action for that. Try using the Magnifying glass in the action with the option to automatically find the setting and see if Tasker can find it. Hope this helps!
joaomgcd said:
Hi there. Maybe you can try using the "Custom Setting" action for that. Try using the Magnifying glass in the action with the option to automatically find the setting and see if Tasker can find it. Hope this helps!
Click to expand...
Click to collapse
I found that by googling but I can't figure out how to make it toggle the switch. The tasker forum talks about reading the accessibility setting but gives no more details than 'brilliant that works'
Eggstones said:
I found that by googling but I can't figure out how to make it toggle the switch. The tasker forum talks about reading the accessibility setting but gives no more details than 'brilliant that works'
Click to expand...
Click to collapse
The easy way is to use the Secure Settings action in AutoTools. That has a direct option for accessibility services. I plan on adding that option to Tasker directly at a later date.
With the Custom Setting action what you should do is read the value, remove or add the needed service from the list, the write the setting.
Ta I'll test that
joaomgcd said:
The easy way is to use the Secure Settings action in AutoTools. That has a direct option for accessibility services. I plan on adding that option to Tasker directly at a later date.
With the Custom Setting action what you should do is read the value, remove or add the needed service from the list, the write the setting.
Click to expand...
Click to collapse
I must be missing something here. Autoapps seems to only control a subscription service. Can't see anything called secure settings when I download it.
Eggstones said:
I must be missing something here. Autoapps seems to only control a subscription service. Can't see anything called secure settings when I download it.
Click to expand...
Click to collapse
I mentioned AutoTools, not AutoApps
joaomgcd said:
I mentioned AutoTools, not AutoApps
Click to expand...
Click to collapse
Mea culpa mea maxima culpa.
I'll try again.
I seem to have manage to get the change state to react to it switching state but need to do some adb to see if it works.
Deleted
joaomgcd said:
The easy way is to use the Secure Settings action in AutoTools. That has a direct option for accessibility services. I plan on adding that option to Tasker directly at a later date.
With the Custom Setting action what you should do is read the value, remove or add the needed service from the list, the write the setting.
Click to expand...
Click to collapse
I can now get the profile to switch on but I cannot figure out how to get the secure setting to change the toggle.
Both profile and task shows up as green but nothing seems to happen.
Eggstones said:
Mea culpa mea maxima culpa.
I'll try again.
I seem to have manage to get the change state to react to it switching state but need to do some adb to see if it works.
Click to expand...
Click to collapse
No problem at all Let me know how it goes!
joaomgcd said:
No problem at all Let me know how it goes!
Click to expand...
Click to collapse
Not well at all. The profile activates but nothing is actually changed.
Eggstones said:
Mea culpa mea maxima culpa.
I'll try again.
I seem to have manage to get the change state to react to it switching state but need to do some adb to see if it works.
Click to expand...
Click to collapse
Eggstones said:
Not well at all. The profile activates but nothing is actually changed.
Click to expand...
Click to collapse
Does it work if you run the task manually?
joaomgcd said:
Does it work if you run the task manually?
Click to expand...
Click to collapse
No. If I click on the task I don't get an error or the green dot. Instead I get a grey play arrow Infront of the task.
In the profile window both the profile and task shows up as green.
Eggstones said:
No. If I click on the task I don't get an error or the green dot. Instead I get a grey play arrow Infront of the task.
In the profile window both the profile and task shows up as green.
Click to expand...
Click to collapse
That means that Tasker doesn't seem to be able to communicate with AutoTools. Do other AutoTools actions work?
To make sure Tasker and the AutoApps run in the foreground please check here: https://tasker.joaoapps.com/userguide/en/faqs/faq-problem.html#00
joaomgcd said:
That means that Tasker doesn't seem to be able to communicate with AutoTools. Do other AutoTools actions work?
To make sure Tasker and the AutoApps run in the foreground please check here: https://tasker.joaoapps.com/userguide/en/faqs/faq-problem.html#00
Click to expand...
Click to collapse
Sorry to be a pain but I cannot find the run in foreground setting on my OnePlus 3t.
Eggstones said:
Sorry to be a pain but I cannot find the run in foreground setting on my OnePlus 3t.
Click to expand...
Click to collapse
Did you check here?
joaomgcd said:
Did you check here?
Click to expand...
Click to collapse
Yep. All those seeking are correctly set. It's the tasker foreground setting I cannot find. Tried googling it but the links I found doesn't match what I see in tasker.
Hi,
i d like to create a task so it autoenables smartview and connects to a given device.
i couldnt find the trigger todo so, is it may not possible ?
The Trigger Bluetooth is clear, but i cant figure the way to use smartview with device as task ...
for an Tipp thanks ahead
Unfortunately, I haven't had a Samsung in years, but a post in the S7 Q/A forum suggests using an app called Miracast Shortcut.
ktmom said:
Unfortunately, I haven't had a Samsung in years, but a post in the S7 Q/A forum suggests using an app called Miracast Shortcut.
Click to expand...
Click to collapse
thanks for the tip, i gave it a try, this will only open the screen share page on the phone, there is no auto connect option in the app so it wont connect to the cast device actually.
was worth a try
alturismo said:
thanks for the tip, i gave it a try, this will only open the screen share page on the phone, there is no auto connect option in the app so it wont connect to the cast device actually.
was worth a try
Click to expand...
Click to collapse
Try using the net -> bluetooth connection action
ktmom said:
Try using the net -> bluetooth connection action
Click to expand...
Click to collapse
Hi, thanks, but thats exactly what im doing in profile, using the bluetooth connect to car to open the app, but the app doesnt auto connect to the cast device (and there is no option as far as i see in the app todo so), so the point in auto connect to the device cannot be provided like this in my usecase.
thanks for the tip with BT, that is my trigger already to start the action, but the action "auto connect to a cast device" ... is not given to me.
alturismo said:
Hi, thanks, but thats exactly what im doing in profile, using the bluetooth connect to car to open the app, but the app doesnt auto connect to the cast device (and there is no option as far as i see in the app todo so), so the point in auto connect to the device cannot be provided like this in my usecase.
thanks for the tip with BT, that is my trigger already to start the action, but the action "auto connect to a cast device" ... is not given to me.
Click to expand...
Click to collapse
There is a tasker plugin by the same developer called AutoCast. Maybe it will help you.
I don't do any of this, so obviously I don't have any personal experience to offer. You might try on the tasker Google groups forum.
ktmom said:
There is a tasker plugin by the same developer called AutoCast. Maybe it will help you.
I don't do any of this, so obviously I don't have any personal experience to offer. You might try on the tasker Google groups forum.
Click to expand...
Click to collapse
was a great idea, sadly this app (beta state) only supports google devices, no miracast device, but that function would have been the winner, thanks again
Probably a part of the problem is that Google removed miracast support from "stock" android awhile ago. That dates back to the nexus 6 days.
ktmom said:
Probably a part of the problem is that Google removed miracast support from "stock" android awhile ago. That dates back to the nexus 6 days.
Click to expand...
Click to collapse
contacted the developer of the autocast plugin and he confirmed, only works with google cast devices like i (sadly) expected.
thanks anyway for the hint.
That's always working to automate the tap(s) required. You could use Tasker to open the app, AutoInput UI query to determine when it's open, then an AutoInput action to enable the device connection.
probably yes, but thats now too much read and trial and error for now, thanks.