Jump to content

Alisson

Members
  • Content Count

    10
  • Joined

  • Last visited

Posts posted by Alisson


  1. When compiling delphi fmx app using xcode 15.3 and 15.4 (beta) with IOS 17.4. The Delphi IDE returns the following error "Debbuging the application on device running IOS 17 or later is currently not supported."

    I urgently need to debug my app but I can't even use the IOS simulator.

     

    I'm using Delphi 12 but I've already tried it in Delphi 11.3

    Screenshot_3.png


  2. Em 30/04/2024 às 18h03, Dave Nottage disse:

    Quais recursos do Kastri você está compilando? Talvez seja necessário apenas alterar o valor na configuração dos caminhos de pesquisa da Estrutura nas Opções do Projeto para apontar para os binários do Simulador, se houver algum disponível.

    TShareItems e TBarcodeReader                            

    I tested by removing kastri and the app ran normally. Does anyone have a tip on how I can use the kastri components even using an arm64 simulator?


  3. On 26/04/2024 at 20:06, Dave Nottage said:

    Qual é exatamente a mensagem de erro que você está vendo? 

    [DCC Error] E2597 ld: building for iOS Simulator, but linking in object file built for iOS, for architecture arm64

     

     

    Desconfio que seja algo relacionado as bibliotecas Kastri master. Tenho outro app que não possui a biblioteca e funciona normalmente no IOS Simulator ARM 64 bits


  4. I use TWEBBROWSER to insert data into a form .  

    Application Delphi FMX Android. 

    element type text not insert value string.

     

    HTML Page: 

    <input type="text" name="txtCPF" id="txtCPF" size="18" maxlength="14" autofocus="" title="Informe os onze dígitos do número do CPF." onkeypress="javascript: return EntradaNumerico(event);" onfocus="javascript: RemoveMask('txtCPF');" onblur="javascript: FG_FormatarCPF('txtCPF');" autocomplete="off" value="">

     

    I need insert into element 'TXTCPF' the value type string  '02403989987' but if use the:

     

    wbConsultaCPF:TWebBrowser;

     

    wbConsultaCPF.EvaluateJavaScript('document.getElementById("txtCPF").value = "012345";');

    Browser show just '012345' in white screen. In IOS Application, code works correctly.

     

    if use :

    wbConsultaCPF.EvaluateJavaScript('document.getElementById("txtCPF").value = 012345;');

     

    browser show correct text in element value but cut the first zero.    '12345'. 

     

     

    wbConsultaCPF.URL := 'https://servicos.receita.fazenda.gov.br/servicos/cpf/consultasituacao/ConsultaPublica.asp';

     

     

     

×