Luego, en otras partes del código, también puede ser necesario utilizar directivas de compilación
Código Delphi
[-]
function TfrmPrincipal.NombreINI: String;
begin
{$IFDEF ANDROID}
Result:= TPath.Combine( TPath.GetDocumentsPath, INI_CONFIGURACION);
{$ENDIF ANDROID}
{$IFDEF MSWINDOWS}
Result:= ExtractFilePath(ParamStr(0))+INI_CONFIGURACION;
{$ENDIF MSWINDOWS}
end;