Embarcadero dokwiki Android service
I have found the next instruction on Embarcadero dokwiki site about Android services:
Include the unit in the uses clause of the implementation. This allows you to use all the methos defined on the service data module.
implementation
uses
MyLocalService; //Key sensitive
{$R *.fmx}
Is it mean that I can to reach all variable and methods from the host application? I do not understand clearly. If the service contain a public variable I can to read it from the host application?