Related
Hello!
We (3 Microsoft Student Partners) created a free (yes, free!) WP 7.5 application, Good Morning.
Here is the description:
"Good Morning is an alarm clock using your personal musics. Browse your favorite tracks, choose one and let it act as an alarm.
Coming up:
- Enable multiple alarms
- Create a playlist as an alarm clock"
Here is the link: windowsphone.com/en-US/apps/a3144459-4a33-4aab-b81f-ff030ee92281
We currently released the V1 of the app. If you have some ideas for another version, or if you saw some problems with the app, your feedback is welcomed!
Pierre
Hello Guys!
We have updated the app:
Changelog:
-pictures are not pixelized
-possibility to add a reminder when the alarm is active
-the alarm can be started from any slide of the app.
As usual, your feedbacks are welcomed !
Good app, works perfect on HD2 with the latest build of WP7.5
Thanks! I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Great App! I'm testing it & i love the UI (clean & metro).
Hope we'll see next version soon.
EDIT: Could you make this App works in background? Will be better.
drokkon said:
Thanks! I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Click to expand...
Click to collapse
It would be a great thing to do that
Thanks for app....work fine on my Omnia 7
hello guys!
We updated the application! Any comment is welcomed!
PS: our dev will respond to your feedbacks!
Thanks all for your feedback !
inexorable said:
Hope we'll see next version soon.
Click to expand...
Click to collapse
You will ! I'll try to update the app every week.
inexorable said:
EDIT: Could you make this App works in background? Will be better.
It would be a great thing to do that
Click to expand...
Click to collapse
Unfortunately, no. There is no way to do that with the current APIs.
drokkon said:
I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Click to expand...
Click to collapse
Indeed, it could be great. That's not planned right now, but I'll probably think of it for a next major release !
As leresistant said, feel free to share your thoughts with us !
hello can we find the app somewhere else cause in my country is not available
elfacki20 said:
hello can we find the app somewhere else cause in my country is not available
Click to expand...
Click to collapse
Sorry, you can't. What is your country ?
Hello! Our latest update has been accepted, and you'll be able to download it in the next hours.
Here are the modifications:
v1.2 :
- "Shake to snooze": delay the alarm during 5 minutes
- settings page added
- start/pause button deleted (for managing the music)
- pin an alarm on the phone's home page
- icons of the application use the phone's accent color
kryptum said:
Unfortunately, no. There is no way to do that with the current APIs.
I know you guys are Student dev's and congrats on your App but I am here to let you know you can actually run your app as a background process. You need to create a separate program in general and add it in to your current project as now your app has 2 projects.
Yes, you could turn the other project in to a control but I don't recommend it as this way you can edit better and no need to re-compile out of project.
With your second project, it runs in the background allowing the other project to be the "brain". If you add a reference to your main app, you can do quite a bit in your bg app, for example... Have it detect the time and than send the function of an alert someone sent...
It's the same idea as if you were going to do TOAST/LIVE Tile updates.
Hope my 2 cents didn't offend you, just trying to help you .
Thanks,
Lance
http://lance.compulsivetech.biz
@LanceSeidman
Click to expand...
Click to collapse
lseidman said:
kryptum said:
Unfortunately, no. There is no way to do that with the current APIs.
I know you guys are Student dev's and congrats on your App but I am here to let you know you can actually run your app as a background process. You need to create a separate program in general and add it in to your current project as now your app has 2 projects.
Yes, you could turn the other project in to a control but I don't recommend it as this way you can edit better and no need to re-compile out of project.
With your second project, it runs in the background allowing the other project to be the "brain". If you add a reference to your main app, you can do quite a bit in your bg app, for example... Have it detect the time and than send the function of an alert someone sent...
It's the same idea as if you were going to do TOAST/LIVE Tile updates.
Hope my 2 cents didn't offend you, just trying to help you .
Click to expand...
Click to collapse
Hi lseidman,
Thanks for your feedback.
You're right, I can add another project to my solution to implement a background agent.
Unfortunately, afaik :
1/ The player uses the Microsoft.Xna.Framework.Media namespace, which can't be referenced from a Task Agent project.
2/ Tasks are handled by the system. We can't defined the scheduled interval. As mentioned on msdn [I can't post any outside link - sorry] a periodic task can run every 10mn at least.
I don't know every APIs and I may be wrong, but I don't think what you described is a solution. Please let me know if i'm wrong.
Thanks again for helping me make this app better !
Click to expand...
Click to collapse
kryptum said:
lseidman said:
Hi lseidman,
Thanks for your feedback.
You're right, I can add another project to my solution to implement a background agent.
Unfortunately, afaik :
1/ The player uses the Microsoft.Xna.Framework.Media namespace, which can't be referenced from a Task Agent project.
2/ Tasks are handled by the system. We can't defined the scheduled interval. As mentioned on msdn [I can't post any outside link - sorry] a periodic task can run every 10mn at least.
I don't know every APIs and I may be wrong, but I don't think what you described is a solution. Please let me know if i'm wrong.
Thanks again for helping me make this app better !
Click to expand...
Click to collapse
1).
Have you tried using using System.Windows.Media and doing something like (in XAML):
<MediaElement x:Name="mediaControl" Source="soundfile.mp3/wma" AutoPlay="False" Width="0" Height="0" Margin="240,60" />
* Note the 0's so it's hidden.
** You can replace source's defined file location (assuming your not copying the file they select to local storage, renaming and defining it as one specific item name) to Source="{Binding filetoplay}".
Obviously when using binding your going to need to have something to bind to it (even if you did a "public string itemname {get; set;}" in a class).
Which you could always use IsolatedStorage like I said above in which you could do:
using (isolatedStorageFileStream)
{
SaveFile(e.Result, isolatedStorageFileStream);
//error is null function, go and do:
media.SetSource(isolatedStorageFileStream);
}
* Just know other steps are needed before you even get to that point but just an example. This is obviously where you previously grabbed the file, "created" it, saved it and set for playback (hence the .SetSource).
Then for playback wherever you needed it, you just throw: mediaControl.Play();.
Again, just an idea to get around XNA. It won't be simple if you're not familiar with IsolatedStorage and other aspects around it but you can get away from XNA.
2). Take a look at these, maybe they'll help you...
ScheduledNotification Class
Alarm Class
Reminder Class
Also check out the other items around the PeriodicTask.
Either way, good luck and best of luck with future development!
Thanks,
Lance
http://lance.compulsivetech.biz
@LanceSeidman
Click to expand...
Click to collapse
why can't i download it?? is it bcos my marketplace is signed as in portugal?
sarkvphilvs said:
why can't i download it?? is it bcos my marketplace is signed as in portugal?
Click to expand...
Click to collapse
Sorry, the app hasn't been published for portugal marketplace. I'll fix that soon.
testing right now. If you need a translator for spanish language, let me know how can i help you.
kryptum said:
Sorry, the app hasn't been published for portugal marketplace. I'll fix that soon.
Click to expand...
Click to collapse
thank u . likewise, if you need a translator for Portuguese, i'm avaiable
BigwaveMx said:
testing right now. If you need a translator for spanish language, let me know how can i help you.
Click to expand...
Click to collapse
sarkvphilvs said:
thank u . likewise, if you need a translator for Portuguese, i'm avaiable
Click to expand...
Click to collapse
Indeed, it could be really helpfull ! (until now I've used google translate for es, de & it :/).
Could I give you the resource .resx files so that you can file them up ?
kryptum said:
Indeed, it could be really helpfull ! (until now I've used google translate for es, de & it :/).
Could I give you the resource .resx files so that you can file them up ?
Click to expand...
Click to collapse
yes, send it to me. I send you back when I'm done.
Hey guys,
I made a little discovery today while attempting to figure out a way to send native SMS messages on the gear.
What I discovered is a way we can manually invoke the text template popup to any specified number, this can be useful if you want to save various text templates in gear manager and would like to actually send them, rather then only just use them to reply with.
At the moment the only way to preform the intent is using tasker or adb shell, this is more a educational post for those of you who would be considered advanced users can possibly make it a little more user friendly !
Perhaps someone can code a simple app with a contact list so that we can send text templates, @st-tps I'm talking about you
SHELL COMMAND:
Code:
am start -a android.intent.action.VIEW -n com.samsung.accessory.texttemplateprovider/com.samsung.accessory.texttemplateprovider.TextTemplateListActivity -e phone_number 0401010101
*NOTE* Replace "0401010101" with the desired destination number.
I will also include a tasker example once I make one.
Happy hacking.
I´m definitely up for the challange.
I´ll try to get something running as soon as I get some time to look at it.
Another interresting thing is the /data/data/com.samsung.accessory.texttemplateprovider/databases/texttemplate.db wich stores the Templates. If we find a way to edit the db we could actually write what message we want to the db, then open the dialog and chose the newly created message and send it to what number we want. I´we got some ideas about this, I´ll try em out as soon as I get your shell commands working.
That is about how close we can get to native SMS right?
st-tps said:
I´m definitely up for the challange.
I´ll try to get something running as soon as I get some time to look at it.
Another interresting thing is the /data/data/com.samsung.accessory.texttemplateprovider/databases/texttemplate.db wich stores the Templates. If we find a way to edit the db we could actually write what message we want to the db, then open the dialog and chose the newly created message and send it to what number we want. I´we got some ideas about this, I´ll try em out as soon as I get your shell commands working.
That is about how close we can get to native SMS right?
Click to expand...
Click to collapse
Oh thats awesome, didn't realize the templates were stored there..
If we can edit the database, We would have a kind of working solution, although I really want to figure out how to send custom text. Rather to relying on the templates.
Also another thing I havnt figured out yet tho is how we can pull the contacts from the phone, it doesn't look like there stored on the gear anywhere that I have found anyway. It seems there pulled from the host phone everytime the contacts app is executed.
fOmey said:
Oh thats awesome, didn't realize the templates were stored there..
If we can edit the database, We would have a kind of working solution, although I really want to figure out how to send custom text. Rather to relying on the templates.
Also another thing I havnt figured out yet tho is how we can pull the contacts from the phone, it doesn't look like there stored on the gear anywhere that I have found anyway. It seems there pulled from the host phone everytime the contacts app is executed.
Click to expand...
Click to collapse
My plan is to make it something like this:
Start app, choose recipient and write the message. The message is added to an local texttemplate.db file with only that row. When you press Send, the original texttemplate.db file is renamed, the local one is pushed to the directory, the Reply Dialog opens with only one option (The message you recently created) select the message and it gets send away, the "one row" .db is then deleted and the original one got it´s real name back...
If this works, nothing gets f**ked up by changing in the real .db file. This only my thoughts so we will see if I manage to achieve it...
The contact name and phone number for recieved messages and missed calls are stored in NotificationSync.db in the table SyncNotiInfo and in fields mMainText and mPhoneNumber. I assume that info is used when replying to messages.
fOmey said:
Also another thing I havnt figured out yet tho is how we can pull the contacts from the phone, it doesn't look like there stored on the gear anywhere that I have found anyway. It seems there pulled from the host phone everytime the contacts app is executed.
Click to expand...
Click to collapse
i get my contacts through google contacts after tethering with my phone.
the problem with 'stock' contacts was that it took ages to load (i guess it's synchronized everytime you open the app) and most contacts are missing on my list due to custom label (instead of just 'mobile' i use labels like AT&T).
Here comes a real early beta (More like an alpha) of NativeSMS, the most fancy about it may be the progress bar at launch
What it does: list all your contacts (If you´we sometimes synced with Google Contacts that is) that´s got a phone number attached to it, tap a contact and wait until the template box appears, select template and click send.
What it doesn´t do: Sort the contacts alphabetically. Save the list until next appstart. Create own messages.No fancy icon yet.
Download HERE!
st-tps said:
Here comes a real early beta (More like an alpha) of NativeSMS, the most fancy about it may be the progress bar at launch
What it does: list all your contacts (If you´we sometimes synced with Google Contacts that is) that´s got a phone number attached to it, tap a contact and wait until the template box appears, select template and click send.
What it doesn´t do: Sort the contacts alphabetically. Save the list until next appstart. Create own messages.No fancy icon yet.
Download HERE!
Click to expand...
Click to collapse
it does work! waiting for further development to ease the whole process, like direct message shortcut
hurdlejade said:
it does work! waiting for further development to ease the whole process, like direct message shortcut
Click to expand...
Click to collapse
Ofcoure it does
We´ll see how far we can go on this. Interresting anyways.
st-tps said:
Here comes a real early beta (More like an alpha) of NativeSMS, the most fancy about it may be the progress bar at launch
What it does: list all your contacts (If you´we sometimes synced with Google Contacts that is) that´s got a phone number attached to it, tap a contact and wait until the template box appears, select template and click send.
What it doesn´t do: Sort the contacts alphabetically. Save the list until next appstart. Create own messages.No fancy icon yet.
Download HERE!
Click to expand...
Click to collapse
A excellent start ! Works perfectly fine.. for a first release doesn't look bad cosmetically either !
Bravo.
st-tps, i installed nativesms, it gave me an error sub:main_activity_resume (java line: 318) java.lang.nullpointerexeption, because i didnt have the people app installed.
Might want to put some kind of check to see if the app is installed.
Btw im SemRumo in f0mey null chat
maelstorm said:
st-tps, i installed nativesms, it gave me an error sub:main_activity_resume (java line: 318) java.lang.nullpointerexeption, because i didnt have the people app installed.
Might want to put some kind of check to see if the app is installed.
Btw im SemRumo in f0mey null chat
Click to expand...
Click to collapse
Great idea, perhaps just throw out a relevant error
"People app was not found, please reinstall rom", also I found you can share contacts via bluetooth which is great... I dont use GAPPS so I've transferred over my "favourites" ! Nice and easy.
st-tps said:
Here comes a real early beta (More like an alpha) of NativeSMS, the most fancy about it may be the progress bar at launch
What it does: list all your contacts (If you´we sometimes synced with Google Contacts that is) that´s got a phone number attached to it, tap a contact and wait until the template box appears, select template and click send.
What it doesn´t do: Sort the contacts alphabetically. Save the list until next appstart. Create own messages.No fancy icon yet.
Download HERE!
Click to expand...
Click to collapse
does this work withl 100% STOCK rom?
does this work with stock contacts?
DomZH said:
does this work withl 100% STOCK rom?
does this work with stock contacts?
Click to expand...
Click to collapse
No it does not. You must have a contacts database & contacts application in order to use this.
maelstorm said:
st-tps, i installed nativesms, it gave me an error sub:main_activity_resume (java line: 318) java.lang.nullpointerexeption, because i didnt have the people app installed.
Might want to put some kind of check to see if the app is installed.
Btw im SemRumo in f0mey null chat
Click to expand...
Click to collapse
I´ll certainly do, good point.
I´ll put in a check for com.android.provider.contatcs in the create part of the Activity, if OK - Load contacts, if NOK - Message box about missing app and then exit.
---------- Post added at 11:53 AM ---------- Previous post was at 10:57 AM ----------
Small update, I´we done some tests regarding editing the db file, very unsuccessfull..
Pulled the original db to computer and did the edit.
Try 1: Delete all rows but one and sent back to Gear - App FC when the Dialog would show
Try 2: Only did minimal changes, editet first row only - App FC when the dialog would show
Try 3: Edit one row only, and renamed the journal file aswell, the only valid file in directory is the edited db wich opens fine in Root Browser - App FC when the Dial would show.
Anyone got ideas what´s causing the Template send FC?
st-tps said:
I´ll certainly do, good point.
I´ll put in a check for com.android.provider.contatcs in the create part of the Activity, if OK - Load contacts, if NOK - Message box about missing app and then exit.
---------- Post added at 11:53 AM ---------- Previous post was at 10:57 AM ----------
Small update, I´we done some tests regarding editing the db file, very unsuccessfull..
Pulled the original db to computer and did the edit.
Try 1: Delete all rows but one and sent back to Gear - App FC when the Dialog would show
Try 2: Only did minimal changes, editet first row only - App FC when the dialog would show
Try 3: Edit one row only, and renamed the journal file aswell, the only valid file in directory is the edited db wich opens fine in Root Browser - App FC when the Dial would show.
Anyone got ideas what´s causing the Template send FC?
Click to expand...
Click to collapse
Permissions & owner ?
fOmey said:
Permissions & owner ?
Click to expand...
Click to collapse
Nope, permissions and owner is the same..
The only difference is that the original db file got a journal file attached to it.
Will try to copy both the db and the journal to computer, edit and then push them both back.
Edit: Fail aswell...
st-tps said:
Nope, permissions and owner is the same..
The only difference is that the original db file got a journal file attached to it.
Will try to copy both the db and the journal to computer, edit and then push them both back.
Edit: Fail aswell...
Click to expand...
Click to collapse
Hmm, I think we need to dig a little deeper.. perhaps figure out how the JSON requests are being sent to phone and generate our own.
Try to unravel the SDK one line of code at the time.
fOmey said:
Hmm, I think we need to dig a little deeper.. perhaps figure out how the JSON requests are being sent to phone and generate our own.
Try to unravel the SDK one line of code at the time.
Click to expand...
Click to collapse
Yeah, I´ll pull the APK and decode it, then I start the search for something usefull.
I would be awesome if we could put the Message as extra content to the intent, just like the phone_number
st-tps said:
Yeah, I´ll pull the APK and decode it, then I start the search for something usefull.
I would be awesome if we could put the Message as extra content to the intent, just like the phone_number
Click to expand...
Click to collapse
I know right, would be so easy !
Sadly the phone_number is the only extra which exists
fOmey said:
I know right, would be so easy !
Sadly the phone_number is the only extra which exists
Click to expand...
Click to collapse
Too bad,
How did you find the intent content?
Hello,
I have project: https://github.com/pylerSM/XInternalSD/blob/master/src/com/pyler/xinternalsd/XInternalSD.java
As you can, in hooks I have check "isAppEnabled". In this check I do many other sub-checks. I check what app uses "API" and then I enable/disable module.
I have problem that sometimes I get null context here https://github.com/pylerSM/XInternalSD/blob/master/src/com/pyler/xinternalsd/XInternalSD.java#L177.
For example, Gmail app is such case. Does anybody know how to fix it and why it happens?
If not, I will rewrite it via handleLoadPackage...
i also fund this issue, but didn't know how it ocurred
fengfengchao said:
i also fund this issue, but didn't know how it ocurred
Click to expand...
Click to collapse
I reworked it via handleLoadPackage.
But on the other hand, I found out that appInfo for "android" is null
pyler said:
I reworked it via handleLoadPackage.
But on the other hand, I found out that appInfo for "android" is null
Click to expand...
Click to collapse
Great, good job
Hello everyone.
When I take a picture with my XZ2 camera, the file gets named by "00001, 00002,...".
Is there a way for the system to name it something similar to 20190119_1052... With the date on it?
Please, I'm looking for solution to this.
Thank you
chaguri said:
Hello everyone.
When I take a picture with my XZ2 camera, the file gets named by "00001, 00002,...".
Is there a way for the system to name it something similar to 20190119_1052... With the date on it?
Please, I'm looking for solution to this.
Thank you
Click to expand...
Click to collapse
Install DSC AutoRename from the playstore and then you can edit the name model. Everytime you shoot a picture, the app automatically rename it following your rules.
marcogiannetta said:
Install DSC AutoRename from the playstore and then you can edit the name model. Everytime you shoot a picture, the app automatically rename it following your rules.
Click to expand...
Click to collapse
Thank you so much! That worked like a charm
'DSC Auto Rename' by Ciubex vs. 'Picture Manager'
marcogiannetta said:
Install DSC AutoRename from the playstore
Click to expand...
Click to collapse
Thank for mentioning 'DSC Auto Rename' by Ciubex, which is an free and open source app! The application sources are available at: https://github.com/ciubex/dscautorename - Warning: This app is available in the F-Droid store, but the latest version is only available in the PlayStore.
An alternative app (in-app purchases for premium features) is 'Picture Manager' by 'j to the 4n': https://forum.xda-developers.com/android/apps-games/app-picture-manager-timestamp-pictures-t3783796
-> 'Parse dates from filenames like telegram/whatsapp and save as exif attribute'
SGH-i200 said:
An alternative app (in-app purchases for premium features) is 'Picture Manager' by 'j to the 4n': https://forum.xda-developers.com/android/apps-games/app-picture-manager-timestamp-pictures-t3783796
-> 'Parse dates from filenames like telegram/whatsapp and save as exif attribute'
Click to expand...
Click to collapse
I can recommend this one j to the 4n is a known user on XDA and has done some nice work.
I've also used the app, but not automatically i just run it from time to time.
Using the DSC_0001 format was nice for old cameras where there was no internal clock or timezones. But nowadays using a Timestamp as picture name is better in most cases. Sadly sony doesn't see it that way.
Haldi4803 said:
nowadays using a Timestamp as picture name is better in most cases. Sadly sony doesn't see it that way.
Click to expand...
Click to collapse
Sony should give their customers a choice, but the GoogleCam doesn‘t allow custom file names, too! OpenCamera does!
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.