EAP version 1.18.0-dev

Forum to discuss everything related to the current development build of Automagic.

Moderator: Martin

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.18.dev

Post by Martin » 23 Jul 2013 18:35

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

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.18.dev

Post by Martin » 26 Jul 2013 13:59

Hi,

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
Download: Automagic.apk

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

asanebit
Posts: 10
Joined: 27 Feb 2013 09:50

Re: EAP version 1.18.dev

Post by asanebit » 27 Jul 2013 09:59

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

bobchernow
Posts: 56
Joined: 16 Mar 2013 14:10

Re: EAP version 1.18.dev

Post by bobchernow » 29 Jul 2013 13:53

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.

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.18.dev

Post by Martin » 29 Jul 2013 20:14

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

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.18.dev

Post by Martin » 30 Jul 2013 19:21

Hi,

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
Download: Automagic.apk

Thanks & Regards,
Martin

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.18.dev

Post by Martin » 12 Aug 2013 20:18

Hi,

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
Download: Automagic.apk

Thanks & Regards,
Martin

fly
Posts: 10
Joined: 01 May 2013 15:19

Re: EAP version 1.18.dev

Post by fly » 14 Aug 2013 11:47

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?

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.18.dev

Post by Martin » 14 Aug 2013 17:09

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

fly
Posts: 10
Joined: 01 May 2013 15:19

Re: EAP version 1.18.dev

Post by fly » 14 Aug 2013 17:24

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
Ahhh. Thank you for pointing me to the log. There was an error in my logic!

Locked