EAP version 1.18.0-dev
Moderator: Martin
Re: EAP version 1.18.dev
Hi,
I assume that you have a variable containing a string with comma separated values, something like this:
xyz = "a,b,c";
If this is the case, then you might be able to directly use the string in the action Input Dialog without using split at all:
Set the field List Values to {xyz}
If you want to use the split function first to create a list and then format the list to a comma separated list again:
Variant 1: in two steps using an action Script first:
-action Script: values = split(xyz, ",");
-action Input Dialog: Single Choice {values,listformat,comma}
Variant 2: Everything directly in action Input Dialog
-action Input Dialog: Single Choice {split(xyz, ","),listformat,comma}
Regards,
Martin
I assume that you have a variable containing a string with comma separated values, something like this:
xyz = "a,b,c";
If this is the case, then you might be able to directly use the string in the action Input Dialog without using split at all:
Set the field List Values to {xyz}
If you want to use the split function first to create a list and then format the list to a comma separated list again:
Variant 1: in two steps using an action Script first:
-action Script: values = split(xyz, ",");
-action Input Dialog: Single Choice {values,listformat,comma}
Variant 2: Everything directly in action Input Dialog
-action Input Dialog: Single Choice {split(xyz, ","),listformat,comma}
Regards,
Martin
Re: EAP version 1.18.dev
Hi,
An updated version of the EAP version is available.
Changes:
Please let me know when the new version of Automagic freezes/locks up. I was not yet able to reproduce this problem myself yet.
If the freeze occurs on your device, don't kill Automagic but create a crash report using Android Settings->Developer options->Take bug report and send the mail to info@automagic4android.com.
Thanks & Regards,
Martin
An updated version of the EAP version is available.
Changes:
- added option to let device go to deep sleep when action Sleep is executing
- added option to use the new geofence API provided by Google in trigger Location (might reduce battery consumption), the Automagic APK is slightly larger since the Google Play Services library is used
- fixed some issues found in testing and fixed some reported crashes
Please let me know when the new version of Automagic freezes/locks up. I was not yet able to reproduce this problem myself yet.
If the freeze occurs on your device, don't kill Automagic but create a crash report using Android Settings->Developer options->Take bug report and send the mail to info@automagic4android.com.
Thanks & Regards,
Martin
Re: EAP version 1.18.dev
Hi Martin,
I use this version for about 2 weeks and so far everything is running without problems. I will install the update (from 26.07) and report errors if necessary. Great work!
Best regards,
Sebastian
I use this version for about 2 weeks and so far everything is running without problems. I will install the update (from 26.07) and report errors if necessary. Great work!
Best regards,
Sebastian
-
- Posts: 56
- Joined: 16 Mar 2013 14:10
Re: EAP version 1.18.dev
I have resolved the hang up problem by disabling a few flows. The problem seems to occur in the flows that use the battery updates, and the widgets being updated as well as flows being enabled and disabled. Here are the flows and widgets involved.
http://automagic4android.com/flow.php?i ... 7a676b9ba9
Btw. The developer options are not available on my device. Galaxy note ii.
http://automagic4android.com/flow.php?i ... 7a676b9ba9
Btw. The developer options are not available on my device. Galaxy note ii.
Re: EAP version 1.18.dev
Thanks for the flows and widgets.
I've had no luck reproducing the hang up problem yet but I will test the flows on some more devices.
The developer options are probably still hidden on your device:
-open the system settings
-select 'About device'
-press the 'Build number' field in the list five times. A notification 'Developer mode has been enabled' should be shown.
-go back to the main system settings screen. 'Developer options' should be available now
-the item Take bug report seems not to be available on all ROMs
Alternatively you can take a bugreport with the shell command adb bugreport > bugreport.txt on a PC.
adb needs to be installed on the PC and USB debugging needs to be enabled on the device. adb is part of the Android SDK: http://developer.android.com/sdk/index.html
I've had no luck reproducing the hang up problem yet but I will test the flows on some more devices.
The developer options are probably still hidden on your device:
-open the system settings
-select 'About device'
-press the 'Build number' field in the list five times. A notification 'Developer mode has been enabled' should be shown.
-go back to the main system settings screen. 'Developer options' should be available now
-the item Take bug report seems not to be available on all ROMs
Alternatively you can take a bugreport with the shell command adb bugreport > bugreport.txt on a PC.
adb needs to be installed on the PC and USB debugging needs to be enabled on the device. adb is part of the Android SDK: http://developer.android.com/sdk/index.html
Re: EAP version 1.18.dev
Hi,
An updated version of the EAP version is available.
Changes:
Thanks & Regards,
Martin
An updated version of the EAP version is available.
Changes:
- fixed action Set Airplane Mode on Android 4.3
- added variable support in condition WiFi Connected
- fixed some issues found in testing and fixed some reported crashes
Thanks & Regards,
Martin
Re: EAP version 1.18.dev
Hi,
An updated EAP version is available (official release on Google Play soon).
Changes:
Thanks & Regards,
Martin
An updated EAP version is available (official release on Google Play soon).
Changes:
- hopefully fixed the freeze issue
- added permission to write contacts required by some devices for action Modify Call Log
- fixed some issues found in testing and fixed some reported crashes
Thanks & Regards,
Martin
Re: EAP version 1.18.dev
Since installing the EAP version, my SMS trigger doesn't seem to be working. I'm using the latest version of Handcent and I don't have it set as default messenger. Can anyone confirm that it IS working for them?
Re: EAP version 1.18.dev
Hi,
The trigger works for me. Is there anything in the log of Automagic when you receive an SMS (open the log using Menu->Manage->Log or ensure to clear the filter using the pencil icon)?
Is it working when you temporarily remove Handcent?
Regards,
Martin
The trigger works for me. Is there anything in the log of Automagic when you receive an SMS (open the log using Menu->Manage->Log or ensure to clear the filter using the pencil icon)?
Is it working when you temporarily remove Handcent?
Regards,
Martin
Re: EAP version 1.18.dev
Ahhh. Thank you for pointing me to the log. There was an error in my logic!Martin wrote:Hi,
The trigger works for me. Is there anything in the log of Automagic when you receive an SMS (open the log using Menu->Manage->Log or ensure to clear the filter using the pencil icon)?
Is it working when you temporarily remove Handcent?
Regards,
Martin