[Q] Tasker Profile? - General Questions and Answers

Does anyone know if there a way to make a fast charge widget by using taker were you can turn fast charge on and off and have the icon(widget) change when you turn on and off the widget?

Probably is you use Secure Settings. I believe there's a toggle that will enable Fast charge. Just create a task to enable it and then create a widget to turn it on.
Edit - It worked fine. You'll need to download Secure Settings (and the helper) and make sure to enable fast charge in the settings, then go into Tasker, create a new task, plugin, secure settings. Save it, create a widget and select Tasker, then Task, choose the one you just created.

rmiles7721 said:
Probably is you use Secure Settings. I believe there's a toggle that will enable Fast charge. Just create a task to enable it and then create a widget to turn it on.
Edit - It worked fine. You'll need to download Secure Settings (and the helper) and make sure to enable fast charge in the settings, then go into Tasker, create a new task, plugin, secure settings. Save it, create a widget and select Tasker, then Task, choose the one you just created.
Click to expand...
Click to collapse
This works great, but is there a way I can make Tasker echo back the status that I've switched to/from in a notification? or change icon between on and off? I can toggle with the widget, but if I forget the state I'm in I have to to terminal to find out.
Thanks

buffal0b1ll said:
This works great, but is there a way I can make Tasker echo back the status that I've switched to/from in a notification? or change icon between on and off? I can toggle with the widget, but if I forget the state I'm in I have to to terminal to find out.
Thanks
Click to expand...
Click to collapse
You could have it set a variable that you create to 1 when on and 0 when off (basically toggling between the two). Then just set up to check the variable and create an Alert pop-up telling you it is On or Off . . .

Was looking to do the same thing. Here's what I came up with, xml in zip attached.
You'll need Secure Settings installed.
What the task does.
1. Reads /sys/kernel/fast_charge/force_fast_charge and stores value in variable %FASTC (0 = off, 1 = on)
2. Toggles Fast Charge using the Secure Settings plugin
3. The next set of commands flash a message and change the widget icon depending on the status of %FASTC
Setup a widget that uses the task, and you should be all set. Keep in mine changing the name of the Task/Widget will require editing the "change widget icon" commands.
Edit: Looks like I made a boo-boo. The read statement happens too fast and would still get the old value of force_fast_charge before Secure Settings changes it.
I moved the statements around and edited the IF statements for switching icons and flashing messages. attachment updated.

rmiles7721 said:
Probably is you use Secure Settings. I believe there's a toggle that will enable Fast charge. Just create a task to enable it and then create a widget to turn it on.
Edit - It worked fine. You'll need to download Secure Settings (and the helper) and make sure to enable fast charge in the settings, then go into Tasker, create a new task, plugin, secure settings. Save it, create a widget and select Tasker, then Task, choose the one you just created.
Click to expand...
Click to collapse
Needs root?

rmiles7721 said:
Edit - It worked fine. You'll need to download Secure Settings (and the helper) and make sure to enable fast charge in the settings, then go into Tasker, create a new task, plugin, secure settings. Save it, create a widget and select Tasker, then Task, choose the one you just created.
Click to expand...
Click to collapse
I just installed Secure Settings on my Note8, and for the Fast Charging option, the app is telling me that I do not have a compatible kernel... Does any know what this may be?

Related

[TUT][TASKER] Clear SMS Popup Notifications when Using Texter

ABSTRACT (i.e., TLDR version)
I present a way to integrate Texter; Tasker; a preferred SMS app that also gives popup notifications; and SL4A+Perl such that when using Texter, I can mark incoming SMS as read; clear notifications; clear popups; and re-sleep the phone. Profiles+scripts in the second post.
INTRODUCTION
In a nutshell: I wanted to use Tasker to remove notifications of unread SMS messages while using Texter. This proves difficult because I use an SMS app that has popup notifications. These profiles+scripts exit the popup notification, clear the unread notification, then puts your phone back to sleep.
Texter is an Android app/Google Chrome extension that lets you send SMS messages from your computer with your phone number. Super cool! It's kind of glitchy at times but overall a solid app, and it'll get better with time. It's currently in closed beta but they're adding new people all the time. I'd hop on that ASAP.
Texter clears unread SMS notifications when you hit "Close" or "Reply", but by Android design it cannot clear the notification bar and LED. I keep my phone on my desk when using my computer, so having the unread notification on both my phone and my computer are kind of annoying. So I wanted to use Tasker to clear those notifications. Turns out Tasker cannot mark messages as read itself, so I use SL4A and the Android port of my favorite scripting language, Perl. It's easy to write a script using SL4A and Perl for Android (or your language of choice - but I provide a Perl script, so you may as well use that) to clear unread SMS notifications for you.
OVERVIEW OF PROFILES
This first post will be a discussion of each profile I use; next post will have the profiles/scripts themselves, and possibly a changelog as I mess around with this system.
My system consists of 5 profiles and 1 widget-task:
WIDGET-TASK: USE TEXTY
This task simply sets or clears a variable %TEXTY, to denote if we are at a computer and would prefer to use Texter vs our phones to send SMS messages. It also sets a permanent notification and changes the widget icon to show that you're in Texter-mode vs regular SMS mode.
PROFILE: TEXTY ACTIVE
This is the heart and soul of the profile scheme. When you receive an SMS, if %TEXTY is set it fires the Perl script that clears your SMS notification, then opens your preferred SMS app to clear the notification bar. Bonus: if you use a popup SMS notification (GO SMS, Handcent, Chomp, etc), this will also clear the popup for you!
PROFILE: TEXTY DISPLAY ON/OFF
Naively using %SCREEN to denote if the screen is on/off to enable or disable Texter functionality does not work all the time - I have found that my phone sometimes lags between receiving a text message and actually popping up the notification. So if %SCREEN ~ on, the main profile might not fire the go-back-to-sleep tasks.
Thus we need a way to account for this lag. I created a new variable %TEXTYSCN that denotes when the screen is on/off, accounting for that lag. Basically, I wait 15 seconds after screen on before setting %TEXTYSCN = on; if the screen has been on for that long, it's probably because I wanted to use it.
When I set %TEXTYSCN = off, I wait 15 seconds beforehand IF IT'S ALREADY SET TO OFF. This seems weird at first, but it's kind of like an interrupt handling mechanism - if you receive a text, your screen will turn on. That starts the 15 second count before %TEXTYSCN = on - until those 15 seconds are up, %TEXTYSCN ~ off. Now that the popup notification is cleared, the display shuts off. If we flipped %TEXTYSCN = off right now and we're inside that 15 second timer, %TEXTYSCN will get set back to on - and subsequent popup notifications won't get cleared. Note that I only wait if %TEXTYSCN ~ off. If it's on, that means we're choosing to sleep the phone after we've used it for something.
[NOT SURE IF NEEDED, NEEDS MORE TESTING] PROFILE: PHONE OFFHOOK/IDLE
Not sure if I need these profiles yet - all it does is disable the main profile if we're on a call, and restart it once we hang up. GO SMS doesn't popup notify when I'm in a call, and after a call I can clear the notifications as I please. I'm not entirely sure of using the main profile during calls yet (what happens if I get a text in the middle of a call and my screen was off at the time? It'll run the main profile, GO HOME, then display off. This might be disorienting the next time I look down and I'm at the Home screen rather than the In-Call screen) so I'll just disable the clear-SMS. Maybe in a later iteration I'll disable the go-home part but clear SMS.
ON TO POST #2!
APPS YOU NEED
See post #1 for links to all required apps.
Android 2.2+
Tasker
Texter
SL4A
Perl for Android (or your interpreter of choice, but the script I provide is for Perl)
INSTALLATION <----VERY IMPORTANT! DOES NOT WORK STRAIGHT OUT OF THE BOX.
Download Tasker_Texty_V1.2.zip. Place all files ending with "prf.xml" into /sdcard/Tasker/profiles . Place Texty.tsk.xml into /sdcard/Tasker/tasks . Import all profiles and tasks by opening Tasker; hit Menu; hit Profile Data; "Import One Profile" and "Import One Task". Place markSMSread.pl into /sdcard/SL4A/scripts .
Create the Texty (it's now officially named Texter, but I didn't want to bother changing the words in the profiles, not to mention "Texty" sounds way better to me) widget on your home screen. Check out the Tasker website if you need help on how to do this.
Open up the "Texty Profile" profile. Change "Load App" from "Messaging" to your favorite SMS app (or keep it as default if that's what you prefer.)
Remove the "Type: System Lock" action, and replace it with "Display->System Lock". You will need to give Tasker administrative capabilities.
As necessary, change the "wait" values in the Texty Active; Texty Display On; and Texty Display Off profiles. See below, "Scripts and Profiles", on the rationale for this.
Enjoy the wonderful amalgamation of Texter, Tasker, and Android! Happy texting
ADVANCED: SCRIPTS AND PROFILES
I include this section redundantly so people can see what exactly goes into the setup. This way you can be confident that you're customizing your profiles exactly how you want to, and you can see my rationale for why I used certain numbers, variables, etc.
Tasker cannot clear the unread SMS notification on its own, so I use SL4A to do it. Here is the Perl script I use (you can of course use your own script and programming language if you'd like):
Code:
use strict;
use warnings;
use Android;
# See http://goo.gl/Qw0WK for original code
my $droid = Android->new();
my $msgs = $droid->smsGetMessageIds(1);
my $i = 0;
while ($msgs->{result}[$i]){
$droid->smsMarkMessageRead([$msgs->{result}[$i]], 1);
$i++;
}
I will assume you're familiar with Tasker language. At some point I will just post profiles you can import. If you need help with any steps, just ask! I'll do my best to respond in a timely fashion.
Note before importing/creating profiles: You need to make sure %TEXTY is clear on boot. I don't know if variables are cleared on phone restarts; I took no chances and wrote into my Boot profile to clear %TEXTY. If someone can let me know, that would be appreciated.
WIDGET-TASK: "TEXTY"
Initial Icon: Texty app look
Notes: You may need to write everything without the "Set Widget Icon"; make the widget; then edit the task and re-make the widget. Tasker looks for widgets to change icons, and it can't change the icon of a non-existent widget.
1) If %TEXTY ! Set
2) Notify (title: "Texty Active"; icon: whatever you want; permanent: ON)
3) Set Widget Icon (name: Texty; icon: whatever you want, I use the stock SMS icon)
4) Variable set (%TEXTY to 1)
5) Stop
6) End If
7) If (%TEXTY Is Set)
8) Set Widget Icon (name: Texty, icon: original Texty icon)
9) Notify Cancel (title:"Texty Active")
10) Variable Clear: %TEXTY
11) End If
PROFILE: TEXTY ACTIVE
Condition: Event: Received Text
Notes: Mess around with the wait statements to see if there's a sweet spot. You might find a 2 second wait might open and close your SMS program before the popup notify comes up. I'm still trying to find all the right numbers myself. (I think I've settled on 5, but that could change all willy-nilly like)
1) If %TEXTY is set
2) Wait 5 seconds
3) IF %TEXTYSCN !~ on
4) Load App: your SMS app of choice (to clear the notification bar and/or popup notifies)
5) SL4A: markSMSread.pl
6) Wait 1 second
7) Go Home
8) System Lock
9) End If
10) End If
PROFILE: DISPLAY ON
Condition: Event: Display On
Notes: Adjust the wait: if it's too long, the main profile will clear your popup notify and sleep your phone if you receive a message soon after starting to use your phone; too short and the main profile might not clear your popup notify at all [see the wait statement in the Texty Active profile]
1) If %Texty Is set
2) Wait 10 seconds
3) Variable set: %TEXTYSCN to on
4) END IF
PROFILE: DISPLAY OFF
Condition: Event: Display Off
Notes: Adjust the wait: if it's too long, the main profile won't clear your popup notify if you receive a text shortly after display turns off; too short and %TEXTYSCN might accidentally get flipped to on.
1) If %Texty is set
2) Wait 15 seconds IF %TEXTYSCN ~ off
3) Variable set: %TEXTYSCN to off
4) End if
PROFILE: PHONE OFFHOOK
Condition: Event: Phone Offhook
1) Profile Status: Texty Active -> Off IF %TEXTY is set
PROFILE: PHONE IDLE
Condition: Event: Phone Idle
1) Profile Status: Texty Active -> ON
PROFILE: CLEAR TEXTYSCN
Condition: Event: Variable cleared: %TEXTY
1) Variable Clear: %TEXTYSCN
Conclusion
I hope my work has helped anyone else as obsessive as I am about the meshing of their technology. I am of the school of thought that anything I do on my phone I should be able to do on my computer, and vice versa - I use Chrome to Phone, android2cloud, etc - I don't ever want to be tethered to any single device. These Tasker profiles have gotten me one step closer to realizing that dream.
CREDITS
brandall: for his excellent Tasker work! He was the inspiration for me to write this post up.
Max from the android-scripting Google group: for helping me create the markSMSread.pl script.
The developers of Texty, Tasker, GO SMS, and SL4A. Without them, there wouldn't be us.
TO DO
further testing to find edge cases, etc
CHANGELOG
Code:
v1.2:
-->fixed import bug - because System Lock action requires admin capabilities, Tasker would not import. Now requires user to manually add action.
-->restored markSMSread.pl workaround - Texter only clears SMS when you hit "close" or "reply", but the notification does not go away.
-->added more installation instructions
v1.1:
-->removed markSMSread.pl workaround - Texter now clears SMS notifications on its own.
-->added v1.1 .zip to easily import profiles.
v1.0:
-->initial release
Please hit the Thanks button if I helped you with your Texter experience!
Nice work mate!
Sent from my HTC Desire HD using XDA Premium App
Tasker profiles updated to v1.1! Texter now clears the SMS notification when you hit "Reply" or "Close" in Chrome. So I removed the SL4A workaround to clear SMS notifications for you. I am still testing for edge cases, and might bring back the workaround if the SMS doesn't clear the vast majority (or all) of the time. Also finally added profile .zip so you can just import your tasks instead of fiddling with the UI so much.
The Texty Active profile won't load into Tasker. It gives me an error.
bartimeus said:
The Texty Active profile won't load into Tasker. It gives me an error.
Click to expand...
Click to collapse
What's the error say? Details would be nice to help out on this.
Sorry about that, forgot my manners.
"Error: import of Texty_Active.prf.xml
failed: failed to import profile data."
Thank you for coming up with and supporting these.
bartimeus said:
Sorry about that, forgot my manners.
"Error: import of Texty_Active.prf.xml
failed: failed to import profile data."
Thank you for coming up with and supporting these.
Click to expand...
Click to collapse
Hmm, that's not a very illuminating error message What version of Tasker are you running, and what version of Android? The "Screen Lock" task in this profile requires Tasker to get admin capabilities; maybe Tasker does not allow one to import anything that requires root/admin capability.
Also, do you have the stock Messaging app installed? I use "Load App: Messaging" by default.
I am not at home right now but when I get home I will upload a profile that does not have the "Screen Lock" task. If that imports properly, you will have helped me close a tough bug thanks!
I am running version 1.0.17, Android 2.3(Cyanogenmod 7 Nightly 100) Phone is Inspire 4G.
I have the stock messaging app but use Handcent as my main one.
bartimeus said:
I am running version 1.0.17, Android 2.3(Cyanogenmod 7 Nightly 100) Phone is Inspire 4G.
I have the stock messaging app but use Handcent as my main one.
Click to expand...
Click to collapse
Try to import the attached profile. I removed the "System Lock" task. I have a feeling that'll let you import.
In other news, I think I will add back the markSMSread.pl SMS-clearing workaround. Without it, the popup notify is killed but the unread notification remains. Once you hit close/reply in Texter, it will mark the SMS as read - but that doesn't clear the notification. Once I get verification that the "System Lock" task is what's causing problems, I'll update to v1.2.
Okay, it let me import that file. Now I have all 6 profiles and the task imported. How do I switch the app it uses from Messaging to Handcent?
bartimeus said:
Okay, it let me import that file. Now I have all 6 profiles and the task imported. How do I switch the app it uses from Messaging to Handcent?
Click to expand...
Click to collapse
Great. In the Texty Active profile, hit "Open App" and select Handcent from it.
You'll also need to re-add the System Lock action (hit the plus sign, Display->System Lock) and put it under "Go Home" if you want the screen to dark after it receives a text message.
Thanks for verifying this bug for me. As I said, I will upload v1.2 with the markSMSread.pl workaround as soon as I can. I'll also remove the System Lock action; users will have to add them themselves.
Version 1.2 added to second post. It brings back the Perl workaround - Texter only clears the unread SMS notification when you hit "Reply" or "Close". Even though it clears the unread notification in the system, it does NOT clear the notification bar. (This is especially true if you're not using the stock Messaging app.)
Also, there was a bug (feature?) where Tasker could not import the "Texty Active" profile - this is because the "System Lock" action I use to sleep the phone requires admin capability. You must add this action yourself and allow Tasker admin privileges, if it asks.
Finally, install instructions updated to reflect the use of the Perl script and adding the "System Lock" action.
Thanks to bartimeus for helping debug!
Running into the same error as before when I try to import the Texty: Active profile....
What do we do after we make the widget? Do we have to hit it and activate the task and just leave it running all the time?
I couldn't find anything called "Perl for Android" on the market so I only installed SL4A, do I have to DO anything with this once I have it installed and the script in the correct folder?
Lastly, when I go in and add the the Lock command it asks me for code, what do I need to enter? It says "Error: Code: Please enter text"
bartimeus said:
Running into the same error as before when I try to import the Texty: Active profile....
Click to expand...
Click to collapse
crap. i'll look into what could be causing that. Did you import before installing SL4A? I wonder if the profile can't find SL4A upon import and then fails. In the meantime, I do list the exact steps you need to produce the profile on your own, so you could create the profile yourself. I'm really sorry about that - this is my first time writing profiles and sharing them with other people, so I'm sure there will be issues in the process.
What do we do after we make the widget? Do we have to hit it and activate the task and just leave it running all the time?
Click to expand...
Click to collapse
Hit the widget whenever you want to use Texty at your computer. When you're done, hit it again. I think it would only be useful to turn off the popup notify and kill the new-SMS notification if we're sitting at the computer. So yes, when you're using Texty, you should leave the task running the entire time.
I couldn't find anything called "Perl for Android" on the market so I only installed SL4A, do I have to DO anything with this once I have it installed and the script in the correct folder?
Click to expand...
Click to collapse
Check the link to Perl for Android in the first post. This is absolutely required - SL4A does not provide the script interpreters, just the API to use them
Lastly, when I go in and add the the Lock command it asks me for code, what do I need to enter? It says "Error: Code: Please enter text"
Click to expand...
Click to collapse
Note that there is a difference between "Lock" and "System Lock". You should be using the latter, not the former.
Okay, I figured out that it is a passcode that it wants. I couldn't find something called System Lock under Display but I will look again.
Nevermind. I am dumb. I found System Lock
I guess tasker hadn't updated in forever or something but I have it all working now. Perl Installed and SL4A installed. All seems well enough, just need to wait for a text now =P
Thank you.
bartimeus said:
Nevermind. I am dumb. I found System Lock
I guess tasker hadn't updated in forever or something but I have it all working now. Perl Installed and SL4A installed. All seems well enough, just need to wait for a text now =P
Thank you.
Click to expand...
Click to collapse
Haha, no worries! Non-market Tasker doesn't really remind you to update that often. I guess I should put in the OP that you need the latest version of Tasker; I can't guarantee older versions, as you just found.
I appreciate any feedback about the profile system I set up. I'm always trying to tweak it, and really I find myself playing with the numbers kind of regularly to hit the "sweet spot".
Been looking for something like this...great job....errr, I should say, just set this up, hope it works and if it does, then great job.
Now if only I could get something similar for all the other notifications I take action on on my computer (calendar appts, gchat etc.) Gmail works fine
I know this is wicked old, but the Perl Script does not work anymore... I have a 4.2.2 ROM and it won't mark them as read.

[APP][2.2+][Tasker plugin] Secure Settings - Updated 1/29/14

Secure Settings is a Locale/Tasker/Llama compatible plugin for Android 2.2+
Please see the changelog for updates
Secure Settings Pro Trial licenses are available! Click the menu button inside of the Upgrade screen to request a trial.
As of v1.2.6, you can create Launcher shortcuts to any available Action option!
Conditions:
Max Failed Login Attempts - Perform an action based on a specified number of failed login attempts
Google Now Shortcut [4.1+,Pro]
Outgoing Call
Secret Code- Enter a special number in the Dialer and trigger an action.
Actions:
Toggle Airplane Mode
Set Airplane Mode Radios
BT Connection [4.0+]
BT Tethering [4.0+,Pro]
Execute Shortcut
Font Size [4.0+]
Toggle the Keyguard
Launch Activity
Locale Picker
Toggle Mobile Data [2.3+]
Run any GNU linux command (with/without root)
Tasker users can store command output info in user defined Tasker variables
Toggle SIP Receive Calls [2.3+]
Change SIP Call Option [2.3+]
Stay Awake While Charging
Show Touches [4.0+]
Wake the device
WiFi Hotspot [4.0+]
WiFi Sleep Policy
Dev Admin Actions:
Toggle the Camera [4.0+]
Lock the device
Lock Screen Widgets [4.2+]
Set or reset the device's password/pin
Root Actions:
Background Process Limit [4.0+, Pro]
Background Data [Pro]
Force GPU Rendering [4.0+]
Hardware Overlays [4.1+, Pro]
Package Notification [4.1+]
Package State (Previously Package Manager)
Phone Options (Answer,End,Silence Calls) [Pro]
Power Button Lock [4.1+, Pro]
Reboot Options (Uses native system methods) [Pro]
Enable/disable USB Tethering [4.0+,Pro]
VPN [4.0+, Experimental!]
Enable/disable Wireless ADB
Helper Actions:
Enable/disable Accessibility Services
Enable/disable USB Debugging
Set Active Day Dream [4.2+]
Toggle Day Dream State [4.2+]
Enable/disable GPS [2.3+]
Enable/disable Data Roaming
Update Lock Screen Owner Info [3.0+]
Set Lock Screen Timeout [4.0+, Pro]
Enable/disable Pattern lock screen
Enable/disable NFC [NFC Adapter required]
Change device input methods (switch soft keyboards without the prompt)
Enable/disable "Location Services" option for location awareness
Unknown Sources
WiFi Optimization [4.2+]
WiFi Scanning [4.3+]
Custom ROM Actions:
Enable or Disable ADB Over Network [CM9 only]
Expand Desktop [CM10/Paranoid Android]
Enable or Disable Fast Charge [Custom Kernel with Fast Charge Required]
Enable/Disable Kill App Back Button (CM and other custom ROMS)
Toggle LTE on CM9
Toggle Samsung Modes (Blocking, Driving and Power Saver Modes)
I hope you enjoy
Download Here
Explanation of Permissions:
Device Administrator Access - Required if you wish to lock the device or set/reset the password
Storage Access - Required for the Run Command function to write to the SD Card
Full Network Access - Required to download and check for updates for the Helper application
System Tools - Required for the Keyguard and Wake Lock functionality
Root Access - Required if you wish to install the Helper or run privileged commands from the Run Command function
Change Configuration - Required to change Locale
Change Network State - Required to toggle Mobile Data
Change Wifi State - Required to toggle Wifi Adapter for Wireless ADB
Wifi Access - Required to determine if Wifi is enabled for the Wireless ADB function
Bluetooth/BT Admin - Required to Connect to BT Devices
Boot Complete - Required to install Helper on boot if missing
Process Outgoing Calls - Required to use outgoing calls as conditions
Buy me a beer
New feature in Version 1.1.8
With version 1.1.8, Secure Settings can be converted to a system app to get the same functionality as having the Helper installed.
If you wish to move the app to the system, you MUST first disable Device Administrator!
I cannot stress this enough. If you don't do this, the app will break and will be a pain to remove.
Once that's disabled, you can use Titanium Backup to convert the app to a system app.
Thank you very much for this plugin. I have it installed which I downloaded from your site. Is there any difference between that and this one, which is available in the Market? Also, does this one also require to be installed as a system app in order for some functionality to work (e.g. Keyguard Off)? Thanks.
This is a completely different version than what is hosted on the google code site.
This app doesn't require you to install it to the system. I wrote a second app that I called the "Helper" which gets installed there. If you don't install the Helper, you will have the following available to you:
Keyguard
Lock Device
Set Password/Pin
Run Command
Wake Device
And Wireless ADB if you are rooted.
Hope this helps
Ok, thanks. I will try this out right now.
hey Corey Z -
I'm running into issues where Secure Settings plugin doesn't fire if I run a lot of shell scripts. I have a task where I fire a script, wait for its exit code, then fire another script; I do this maybe 4-5 times. This happens just fine, but when I tried to test a different task that also uses a shell script, it doesn't fire and my task just hangs on the "Wait until %CMD_EXIT is set". This is verifiable by turning on "show output" and "show notification" - notification doesn't happen sometimes, indicating that the plugin isn't firing..?
Thanks for the help!
Is it possible ro reset a sim lock pin..???
Sent from my X10 TripNMiUI-Iris using Tapatalk
@strictlyrude27
So, let me see if I understand...
It works fine when you run one command, one after another but you have issues when running multiple commands simultaneously?
Is that it?
Sent from my Thunderbolt
@Z3US911
That's an interesting thought. I'll have to look into that.
Thanks for the suggestion!
Sent from my Thunderbolt
intangibleDroid said:
@strictlyrude27
So, let me see if I understand...
It works fine when you run one command, one after another but you have issues when running multiple commands simultaneously?
Is that it?
Sent from my Thunderbolt
Click to expand...
Click to collapse
Upon further investigation it looks like scripts aren't firing if I manually select the notification to end the script. I set up my profiles to make sure exactly 1 script fires at a time to avoid collisions; when they all fire and exit properly rather than being aborted, I can re-run as much as I'd like.
Thank you very much, just what I needed!
Sent from my Nexus S 4G using XDA Premium App
@strictlyrude27
Are you referring to the cancel script option you get after you click the script running notification?
If so, that function is actually a little buggy at the moment. It may not actually cancel the script.
Is that what may be causing the problem?
Sent from my Thunderbolt
intangibleDroid said:
@strictlyrude27
Are you referring to the cancel script option you get after you click the script running notification?
If so, that function is actually a little buggy at the moment. It may not actually cancel the script.
Is that what may be causing the problem?
Sent from my Thunderbolt
Click to expand...
Click to collapse
That could be it! I haven't had to cancel a script since originally posting that, so hopefully I never run into it again..
This is great!
Now I am able to disable the pattern lock while connected to my Wifi.
On the Turn On/Off GPS....does that mean I can re-use an old task where GPS gets turned off when I exit Google Maps/Navigation like it used to in <2.2?
I've been using this plugin with ZERO issues to disable the pin lock when I enter known WiFi and to enable it otherwise.
@SilentSummer
You should be able to enable/disable GPS like you were able to prior to GB
intangibleDroid said:
@SilentSummer
You should be able to enable/disable GPS like you were able to prior to GB
Click to expand...
Click to collapse
Will give it a try, thanks
Edit: Works great
this may be a dumb question, but is the helper supposed to be on the market somewhere? or is it the manual download only? I only ask because the manual download is worded like you should only use it if you have problems...
Hi,
I use a program called "CELLBROKER," and whenever I get it I need to put my password and enter ... I created a profile in TASKER to put the password ( Input - Type - "my password"), but I do not know how to use a command in linux to run automatically enter.
Can someone help me?
Thanks a lot!
gohamstergo said:
this may be a dumb question, but is the helper supposed to be on the market somewhere? or is it the manual download only? I only ask because the manual download is worded like you should only use it if you have problems...
Click to expand...
Click to collapse
The Helper is not available on the market. I currently have it hosted at my google code site.
If you want to install it, use the install option in the settings of my app. The manual download is offered if that fails for any reason.
Hope this helps.
Sent from my Thunderbolt

[Request] Remove NFC From Status Bar

Hey guys....
I am curious if anyone knows of a way to remove the NFC notification from the status bar while it is on. I am using stock rooted with s-off on VZW.
Any help would be much appreciated.
Rhodesy757 said:
Hey guys....
I am curious if anyone knows of a way to remove the NFC notification from the status bar while it is on. I am using stock rooted with s-off on VZW.
Any help would be much appreciated.
Click to expand...
Click to collapse
You could use this xposed module: http://forum.xda-developers.com/xposed/modules/mod-sense-toolbox-answer-to-sense-6-t2733409
It has the ability to hide other icons as well, and also many other changes that aren't even related to the status bar.
rblock said:
You could use this xposed module: http://forum.xda-developers.com/xposed/modules/mod-sense-toolbox-answer-to-sense-6-t2733409
It has the ability to hide other icons as well, and also many other changes that aren't even related to the status bar.
Click to expand...
Click to collapse
thanks for the reply man. I'm gonna check it out.
You can change it by editing the default.xml for in the ACC folder.
Sent from my HTC One_M8 using Tapatalk
For security reasons I keep NFC turned off unless I want to use it. Leaving it on all the time is a potential security hole.
I have a tasker profile that turns NFC on when I go into Google Wallet and it turns it off when I exit wallet.
Therefore I only have the icon up there when wallet is open.
85gallon said:
For security reasons I keep NFC turned off unless I want to use it. Leaving it on all the time is a potential security hole.
I have a tasker profile that turns NFC on when I go into Google Wallet and it turns it off when I exit wallet.
Therefore I only have the icon up there when wallet is open.
Click to expand...
Click to collapse
Can you explain what app enables you to do that?
bdorr1105 said:
Can you explain what app enables you to do that?
Click to expand...
Click to collapse
Tasker
85gallon said:
Tasker
Click to expand...
Click to collapse
Could you actually explain how to do that, looks like you need a Masters Degree for that
bdorr1105 said:
Could you actually explain how to do that, looks like you need a Masters Degree for that
Click to expand...
Click to collapse
You have profiles which are things you want to do. You have tasks that are specific actions.
You will also need secure settings plug in from the Play Store.
Once those are installed create two tasks.
One is NFC On and the other is NFC Off. When creating the tasks you will be on tasks tab. Click the plus sign, name task NFC On. Click the plus sign again and select Plugin then secure settings. Now click the pen/pencil and select System + Actions then select NFC and select On. Then back and save.
Now do the same except name it NFC Off. And do as above except select NFC off instead of NFC on. Back out and save.
Now switch to Profile tab and click the plus sign to create a profile. Select Application. Then select wallet (or any other app that you want NFC to turn on for) It will bring up a list of tasks you have built and select NFC on. Now you will see your profile and it will be expanded and showing that NFC On is the task performed. Now long press the area where it says NFC On (under the profile) and you will get a pop up. Select Exit Task and then GPS Off. Make sure the slider for the profile is set to On.
Now whenever you activate wallet, it will turn on NFC and it will pop up into the status bar.
When you exit wallet, tasker will turn off NFC and the icon will disappear.
http://forum.xda-developers.com/showpost.php?p=53035621&postcount=5633

How to enable ultra power saving mode on galaxy note 3 lollipop rom (no root method)

The Ultra Power Saving mode happens to be one of the features from the Samsung Galaxy s5 that i really wanted on my Galaxy Note 3. And i was hoping that the Kitkat update would bring this feature but that didn't happen and so did the leaked lollipop ROM. I recently stumbled on a tutorial on XDA on how to enable this feature by flashing a zip file and installing a new settings app, which requires rooting your device first. After a bit of tinkering with QuickShortcutMaker, i was able to dig into a hidden settings option which allows me to switch to the Ultra Power saving mode and enable the Greyscale mode.
First of you need to have the Lollipop ROM Installed on your Galaxy Note 3 and QuickShortcutMaker. If you have these already then you can follow the steps below. (you can achieve the same thing with Nova launcher, however i find it takes a lot more steps than QuickShortcutmaker)
1. Open the QuickShortcutmaker app, and switch to normal search from the incremental search.
2. Type in "saving" into the input field and tap on Search, you should get four results in the Settings icon.
3. tap on the Settings icon and tap on the items (i would recommend with starting with the third item) listed to get into the Shortcut creation page where you can try the shortcut to see what it does, edit the label and change the icon.
4.Tap on Try to see what the shortcut does, if you tapped on the right one. You should see the screen below.
5. Press the back button to get back to the shortcut creation page and tap on Create to place a shortcut to this menu on your homescreen (you can change the label and icon from here before creating the shortcut).
6. Once you have created the shortcut, you can now head back to your Homescreen and open the Adavnced (Ultra) Power saving menu by tapping on the shortcut icon you just created. You can choose to enable or disable any of the options in the menu, for me i rather not have the background data restricted so i have that turned off.
If you do not want to go through all the steps there is an installable APK which i have attached, that simplifies all this process.
http://forum.xda-developers.com/attachment.php?attachmentid=3081579&d=1419533578
View attachment APSM_1.0.apk
Thanks to @dr.ketan for the apk
Working Great...
Would you mind to guide me where did you find the other method for Rooted devices...
as my device is rooted and I would like to know the other method too....
Thanks anyway for your great efforts....:good::good::good::good::good:
DrNet1983 said:
Working Great...
Would you mind to guide me where did you find the other method for Rooted devices...
as my device is rooted and I would like to know the other method too....
Thanks anyway for your great efforts....:good::good::good::good::good:
Click to expand...
Click to collapse
try this thread http://forum.xda-developers.com/galaxy-note-3/themes-apps/apk-systemui-5-0-t2982939 i haven't tried it yet though as i am not willing to root my device yet
martinkem said:
The Ultra Power Saving mode happens to be one of the features from the Samsung Galaxy s5 that i really wanted on my Galaxy Note 3. And i was hoping that the Kitkat update would bring this feature but that didn't happen and so did the leaked lollipop ROM. I recently stumbled on a tutorial on XDA on how to enable this feature by flashing a zip file and installing a new settings app, which requires rooting your device first. After a bit of tinkering with QuickShortcutMaker, i was able to dig into a hidden settings option which allows me to switch to the Ultra Power saving mode and enable the Greyscale mode.
First of you need to have the Lollipop ROM Installed on your Galaxy Note 3 and QuickShortcutMaker. If you have these already then you can follow the steps below. (you can achieve the same thing with Nova launcher, however i find it takes a lot more steps than QuickShortcutmaker)
1. Open the QuickShortcutmaker app, and switch to normal search from the incremental search.
2. Type in "saving" into the input field and tap on Search, you should get four results in the Settings icon.
3. tap on the Settings icon and tap on the items (i would recommend with starting with the third item) listed to get into the Shortcut creation page where you can try the shortcut to see what it does, edit the label and change the icon.
4.Tap on Try to see what the shortcut does, if you tapped on the right one. You should see the screen below.
5. Press the back button to get back to the shortcut creation page and tap on Create to place a shortcut to this menu on your homescreen (you can change the label and icon from here before creating the shortcut).
6. Once you have created the shortcut, you can now head back to your Homescreen and open the Ultra Power saving menu by tapping on the shortcut icon you just created. You can choose to enable or disable any of the options in the menu, for me i rather not have the background data restricted so i have that turned off.
I also have a video showing the process and the grey scale mode in use
.youtube.com/ watch?feature= player_embedded&v=MovrWsFYrI4
Click to expand...
Click to collapse
Is this for N9005? When i type saving in the app it gives me no result...
Also the video is not working...
Edit
Hope you can share some steps if we do it via Nova. Thanks in advance.
leocris said:
Is this for N9005? When i type saving in the app it gives me no result...
Also the video is not working...
Click to expand...
Click to collapse
It is for the N9005, i tried to put that in the thread title but the forum wouldn't let me
You need to edit the url,by removing the spaces in it
totoantonio said:
Hope you can share some steps if we do it via Nova. Thanks in advance.
Click to expand...
Click to collapse
Using the Nova launcher takes a lot more steps that's it's just better to install QuickShortcutmaker for this
martinkem said:
The Ultra Power Saving mode happens to be one of the features from the Samsung Galaxy s5 that i really wanted on my Galaxy Note 3. And i was hoping that the Kitkat update would bring this feature but that didnt happen and so did the leaked lollipop ROM. I recently stumbled on a tutorial on XDA on how to enable this feature by flashing a zip file and installing a new settings app, which requires rooting your device first. After a bit of tinkering with QuickShortcutMaker, i was able to dig into a hidden settings option which allows me to switch to the Ultra Power saving mode and enable the Greyscale mode.
First of you need to have the Lollipop ROM Installed on your Galaxy Note 3 and QuickShortcutMaker. If you have these already then you can follow the steps below. (you can achieve the same thing with Nova launcher, however i find it takes a lot more steps than QuickShortcutmaker)
1. Open the QuickShortcutmaker app, and switch to normal search from the incremental search.
2. Type in "saving" into the input field and tap on Search, you should get four results in the Settings icon.
3. tap on the Settings icon and tap on the items (i would recommend with starting with the third item) listed to get into the Shortcut creation page where you can try the shortcut to see what it does, edit the label and change the icon.
4.Tap on Try to see what the shortcut does, if you tapped on the right one. You should see the screen below.
5. Press the back button to get back to the shortcut creation page and tap on Create to place a shortcut to this menu on your homescreen (you can change the label and icon from here before creating the shortcut).
6. Once you have created the shortcut, you can now head back to your Homescreen and open the Ultra Power saving menu by tapping on the shortcut icon you just created. You can choose to enable or disable any of the options in the menu, for me i rather not have the background data restricted so i have that turned off.
I also have a video showing the process and the grey scale mode in use
.youtube.com/ watch?feature= player_embedded&v=MovrWsFYrI4
Click to expand...
Click to collapse
UPSM won't stick. When you open it again, its still off. Is this really working. However, I'm sure gray scale is working.
Yes it works for me. My battery life has improved with this tweak. Background data does get restricted too (if enabled). I have had a look at it, look it seems this mode is quite different from the ultra power saving mode advertised for the Samsung Galaxy S5, as it allows you to use as many apps as before but under with grey scale
This is not a ultra power saving mod but just Gray scale mod of power saving.
You can't enable UPSM on N3/N4 by just adding shortcut as many resources are missing for that.
If you don't want to do too many steps then just use my APSM application (It's part of my ROM as well shared to Echos ROM - nearly page 760-770) for gray scale mod.
dr.ketan said:
This is not a ultra power saving mod but just Gray scale mod of power saving.
You can't enable UPSM on N3/N4 by just adding shortcut as many resources are missing for that.
If you don't want to do too many steps then just use my APSM application (It's part of my ROM as well shared to Echos ROM - nearly page 760-770) for gray scale mod.
Click to expand...
Click to collapse
I got it Dr. Not Apsm. This is UPSM.
I said about OP and check OP again, he has said same and attached my apk which does same.
Regarding UPSM have posted on xda many days ago
http://forum.xda-developers.com/showthread.php?t=3007743
Sent from my SM-N910G using xda premium
@martinkem thanks mate, i can get into those settings, but i can't enable the ultra mode.
any solution?
The UPSM doesnt stick, the mode you can actually enable is the Greyscale power saving mode.
wow! thanks for the share.
Thanks man
:good:wrks good. grayscale wrking.
The method with the shortcut app didn't work here because I didn't get any results searching for "saving'. However, the apk works line a charm. Thanks!
I've only tried UPSM through a custom ROM and I must say it's still not close to the official one. I'm gonna try this one, thanks

Question The accessibility setting (navigation bar) resets every time the unit wakes up

Hi,
I have a joying UIS7862, 6GB+128GB,10.1" 1920x1200 head unit .
I am trying to use a navigation bar type application. After installing this application in the accessibility settings there is a new option that must be enabled for this app to work.
After enabling this option, the application works fine, but every time unit wakes up from sleep, this setting goes back to off.
Of course if you switch it to 'on' the application works fine again.
Does anyone know how to set this option permanently?
(the same problem concerns also other navigation bar apps )
Marek
What app are you using?
Have you tried installing it as a system app?
watson540 said:
What app are you using?
Have you tried installing it as a system app?
Click to expand...
Click to collapse
It is 'simple control - navigation bar' . But I have tried many of them and it was the same.
How can I install it as a system app?
What application is this?
What accessibility option are you using?
Perhaps there is a way to use Tasker to enable this option on starts
forgivegod said:
What application is this?
What accessibility option are you using?
Perhaps there is a way to use Tasker to enable this option on starts
Click to expand...
Click to collapse
This is navigation bar type application. Just back, home and recent button. I thought about tasker, but I can not get it to perform a task at system wake up. Tasker is probably killed when device goes to sleep and then automatically restored but with some delay. It works after the system wake up, but I can not find the way to make it react to waking up ....
I would start by creating a tasker task that makes the appr. system changes. Then put a tasker widget/button on your home screen for that task. From there you can work on automating it via any of the many options you might have available thru tasker (screen/wifi/bt on/off etc)
in my unit (mekede), there is an option in the settings to autostart up to 3 apps. maybe if yours has that, it would help
All of the apps I use stay in memory while the unit is asleep
watson540 said:
in my unit (mekede), there is an option in the settings to autostart up to 3 apps. maybe if yours has that, it would help
All of the apps I use stay in memory while the unit is asleep
Click to expand...
Click to collapse
Exactly, the newer Mekede/NOR MCU units do this really well.
Up to three apps can be defined.

Categories

Resources