Changes

11 bytes added ,  13:24, 31 March 2022
no edit summary
Line 24: Line 24:     
This data will be parsed into a dictionary variable in MacroDroid and end up populated with the data below:
 
This data will be parsed into a dictionary variable in MacroDroid and end up populated with the data below:
 
+
<pre>
 
dictionary[firstName] = "Rajesh"<br/>
 
dictionary[firstName] = "Rajesh"<br/>
 
dictionary[lastName] = "Kumar"<br/>
 
dictionary[lastName] = "Kumar"<br/>
Line 37: Line 37:  
dictionary[phoneNumbers][type] = "home"<br/>
 
dictionary[phoneNumbers][type] = "home"<br/>
 
dictionary[phoneNumbers][number] = 7383627627<br/>
 
dictionary[phoneNumbers][number] = 7383627627<br/>
 
+
</pre>
 
You can then use the values of interest from the dictionary in your macros, for example to populate a weather summary from a weather API or similar.
 
You can then use the values of interest from the dictionary in your macros, for example to populate a weather summary from a weather API or similar.