combateafraude / Flutter

combateafraude organization's Flutter solutions
MIT License
10 stars 7 forks source link

DocumentDetector nunca retorna o resultado (Android) #3

Closed henriquel1997 closed 4 years ago

henriquel1997 commented 4 years ago

Estou usando o código abaixo para fazer a leitura da CNH:

void _scanCNH() async {
    Map<Permission, PermissionStatus> statuses = await [
      Permission.camera,
      Permission.storage,
    ].request();

    if(
      statuses[Permission.camera] == PermissionStatus.granted &&
      statuses[Permission.storage] == PermissionStatus.granted
    ) {
      DocumentDetector documentDetector =
      DocumentDetector.builder(
          mobileToken: Environment.TOKEN_COMBATE,
          documentType: DocumentType.CNH);

      final result = await documentDetector.build();
      Navigator.pop(context, result);
    }
  }

Consigo abrir a tela do DocumentDetector e fazer toda a leitura da CNH, o problema é que quando o fluxo termina, nada que está após o final result = await documentDetector.build(); é executado, ou seja, nunca chega no Navigator.pop(context, result);.

Uso um código quase idêntico ao acima para chamar o ActiveFaceLiveness e lá ele funciona corretamente. Acredito que esteja ocorrendo alguma exception na parte do Android nativo e esse erro não esteja sendo tratado, porém não consigo confirmar isso pois nenhuma mensagem de erro aparece no log do flutter, ou no logcat do Android Studio.

RodrigoSMarques commented 4 years ago

@henriquel1997 eu realizei testes ontem e estava tudo OK. Estou revisando aqui.

Faça um teste. Na tela da leitura da CNH, existe um botão para fechar a tela no canto esquerdo.

Veja se ao clicar você recebe um retorno de "Cancelado pelo usuário".

henriquel1997 commented 4 years ago

Também não recebo, mesma situação

RodrigoSMarques commented 4 years ago

@henriquel1997 acabamos de testar aqui com uma aplicação de teste que contém os dois plugins e ficou normal.

Você está usando em release ou debug?

Estou pensando o que mais podemos investigar.

WhatsApp Image 2020-06-12 at 17 50 38 Screenshot_1591995127

henriquel1997 commented 4 years ago

Estou executando em debug. O código dessa aplicação de teste está disponível em algum canto? Se não estiver tem como disponibilizar?

RodrigoSMarques commented 4 years ago

Posso disponibilizar para você.

Vou subir colocar no Git e te mando o link.

RodrigoSMarques commented 4 years ago

@henriquel1997

Disponibilizei o projeto no git e te enviei o convite para o acesso.

https://github.com/RodrigoSMarques/flutter_combateafraude_test

henriquel1997 commented 4 years ago

Acabei de testar aqui e realmente no seu código o document detector está funcionando corretamente, tentei comparar o seu código com o meu pra tentar achar alguma diferença óbvia mas não encontrei nenhuma, os dois estão muito parecidos, tanto na parte do flutter como no android.

A única diferença que eu achei foi no log que o DocumentDetector gera após ele tirar as fotos da CNH. Esse aqui é o log do seu código:

D/ImageCapture(17286): Size of image capture request queue: 0
D/CaptureSession(17286): Issuing capture request.
W/ExifInterface(17286): Skip the tag entry since tag number is not defined: 2
W/ExifInterface(17286): Stop reading file since a wrong offset may cause an infinite loop: 0
I/chatty  (17286): uid=10436(com.example.sdk_combate_test) identical 1 line
W/ExifInterface(17286): Stop reading file since a wrong offset may cause an infinite loop: 0
W/ExifInterface(17286): Skip the tag entry since tag number is not defined: 2
W/ExifInterface(17286): Stop reading file since a wrong offset may cause an infinite loop: 0
I/chatty  (17286): uid=10436(com.example.sdk_combate_test) CameraX-camerax identical 1 line
W/ExifInterface(17286): Stop reading file since a wrong offset may cause an infinite loop: 0
W/ExifInterface(17286): Skip the tag entry since tag number is not defined: 2
W/ExifInterface(17286): Stop reading file since a wrong offset may cause an infinite loop: 0
I/chatty  (17286): uid=10436(com.example.sdk_combate_test) CameraX-camerax identical 1 line
W/ExifInterface(17286): Stop reading file since a wrong offset may cause an infinite loop: 0
D/xxx     (17286): salvada: cnh_back1.0
I/flutter (17286): success: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document0.jpg, 0
I/flutter (17286): success: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document1.jpg, 0
D/SurfaceViewImpl(17286): Surface destroyed.
D/SurfaceViewImpl(17286): Surface invalidated androidx.camera.core.SurfaceRequest@e84a181
D/UseCaseAttachState(17286): All use case: [] for camera: 0
D/UseCaseMediator(17286): Destroying use case: androidx.camera.core.ImageAnalysis-5e0955aa-cc2b-4c5f-bec5-3c3997e12c1a
D/UseCaseMediator(17286): Destroying use case: androidx.camera.core.ImageCapture-62be72fd-995f-460a-ae37-7a295789e672
D/UseCaseMediator(17286): Destroying use case: androidx.camera.core.Preview-3ee1e7c7-11b3-4ad2-ba3f-adbe33df866f
D/UseCaseAttachState(17286): Active and attached use case: [] for camera: 0
I/chatty  (17286): uid=10436(com.example.sdk_combate_test) CameraX-core_ca identical 1 line
D/UseCaseAttachState(17286): Active and attached use case: [] for camera: 0
D/CaptureSession(17286): CameraCaptureSession.onClosed()
D/SurfaceViewImpl(17286): Safe to release surface.
E/BufferQueueProducer(17286): [ImageReader-640x480f23m4-17286-0] queueBuffer: BufferQueue has been abandoned

Esse é o que a minha aplicação gera:

D/ImageCapture(16810): Size of image capture request queue: 0
D/CaptureSession(16810): Issuing capture request.
W/ExifInterface(16810): Skip the tag entry since tag number is not defined: 2
W/ExifInterface(16810): Stop reading file since a wrong offset may cause an infinite loop: 0
I/chatty  (16810): uid=10435(br.com.hubfintech.hub_gift) identical 1 line
W/ExifInterface(16810): Stop reading file since a wrong offset may cause an infinite loop: 0
W/ExifInterface(16810): Skip the tag entry since tag number is not defined: 2
W/ExifInterface(16810): Stop reading file since a wrong offset may cause an infinite loop: 0
I/chatty  (16810): uid=10435(br.com.hubfintech.hub_gift) CameraX-camerax identical 1 line
W/ExifInterface(16810): Stop reading file since a wrong offset may cause an infinite loop: 0
W/ExifInterface(16810): Skip the tag entry since tag number is not defined: 2
W/ExifInterface(16810): Stop reading file since a wrong offset may cause an infinite loop: 0
I/chatty  (16810): uid=10435(br.com.hubfintech.hub_gift) CameraX-camerax identical 1 line
W/ExifInterface(16810): Stop reading file since a wrong offset may cause an infinite loop: 0
D/xxx     (16810): salvada: cnh_back1.0
V/FA      (16810): Recording user engagement, ms: 21580
V/FA      (16810): Connecting to remote service
V/FA      (16810): Activity paused, time: 4065508379
D/FA      (16810): Logging event (FE): user_engagement(_e), Bundle[{ga_event_origin(_o)=auto, engagement_time_msec(_et)=21580, ga_screen_class(_sc)=DocumentDetectorActivity, ga_screen_id(_si)=-4180417101457910550}]
V/FA      (16810): Connection attempt already in progress
V/FA      (16810): Activity resumed, time: 4065508394
D/FA      (16810): Logging event (FE): screen_view(_vs), Bundle[{ga_event_origin(_o)=auto, ga_previous_class(_pc)=DocumentDetectorActivity, ga_previous_id(_pi)=-4180417101457910550, ga_screen_class(_sc)=MainActivity, ga_screen_id(_si)=-4180417101457910551}]
V/FA      (16810): Connection attempt already in progress
V/FA      (16810): Connection attempt already in progress
D/FA      (16810): Connected to remote service
V/FA      (16810): Processing queued up service tasks: 4
D/SurfaceViewImpl(16810): Surface destroyed.
D/SurfaceViewImpl(16810): Surface invalidated androidx.camera.core.SurfaceRequest@d74edc9
D/UseCaseAttachState(16810): All use case: [] for camera: 0
D/UseCaseMediator(16810): Destroying use case: androidx.camera.core.ImageCapture-532485a2-6281-4536-aeea-cc273e99bcc9
D/UseCaseMediator(16810): Destroying use case: androidx.camera.core.Preview-88b58a8e-cc1e-414e-b0cd-c3c707384f2c
D/UseCaseMediator(16810): Destroying use case: androidx.camera.core.ImageAnalysis-f5951e23-055c-4a92-9283-c0971b5b2a71
D/UseCaseAttachState(16810): Active and attached use case: [] for camera: 0
I/chatty  (16810): uid=10435(br.com.hubfintech.hub_gift) CameraX-core_ca identical 1 line
D/UseCaseAttachState(16810): Active and attached use case: [] for camera: 0
D/CaptureSession(16810): CameraCaptureSession.onClosed()
D/SurfaceViewImpl(16810): Safe to release surface.
V/FA      (16810): Inactivity, disconnecting from the service
V/FA      (16810): Recording user engagement, ms: 93479
V/FA      (16810): Connecting to remote service
V/FA      (16810): Activity paused, time: 4065601868
D/FA      (16810): Logging event (FE): user_engagement(_e), Bundle[{ga_event_origin(_o)=auto, engagement_time_msec(_et)=93479, ga_screen_class(_sc)=MainActivity, ga_screen_id(_si)=-4180417101457910551}]
V/FA      (16810): Connection attempt already in progress
D/FA      (16810): Connected to remote service
V/FA      (16810): Processing queued up service tasks: 2
D/FA      (16810): Application going to the background
D/FA      (16810): Logging event (FE): app_background(_ab), Bundle[{ga_event_origin(_o)=auto}]
V/FA      (16810): Inactivity, disconnecting from the service
I/flutter (17286): success: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document0.jpg, 0
I/flutter (17286): success: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document1.jpg, 0

Só pelo tamanho dá pra ver que o meu tem algumas informações a mais, o início dos dois é parecido mas no final parece que no meu tem umas mensagens extra, dizendo que foi disconectado do serviço e que a activity foi pausada.

Notei também que as mensagens de sucesso do flutter no final aparecem bem distantes da mensagem de D/xxx (16810): salvada: cnh_back1.0 no meu caso.

Esses dois logs vieram do mesmo dispositivo.

Tem alguma ideia do que pode estar acontecendo?

RodrigoSMarques commented 4 years ago

@henriquel1997 Vou analisar a log. Se encontrar algo lhe informo.

kikogassen commented 4 years ago

Acho que as maiores diferenças estão na ordem dos logs D/xxx, I/flutter e os logs de Activity. No do Rodrigo, acontece:

  1. D/xxx
  2. I/flutter
  3. Logs de activity (Surface destroyed etc)

No do @henriquel1997 :

  1. D/xxx
  2. Logs de activity (Surface destroyed etc)
  3. I/flutter

Os logs que aparecem pra ti @henriquel1997 que começam com D/FA ou V/FA são do Firebase Analytics, então por isso que não aparecem pro Rodrigo (imagino que seja pq no teu app tenha o FirebaseAnalytics configurado). Além disso, esses logs de Activity acontecem no SDK, são bem comuns no Android, mas só achei estranho a ordem ser diferente deles no teu caso e no do Rodrigo

RodrigoSMarques commented 4 years ago

@henriquel1997 faça um teste de cancelamento. Abre a tela de scanear o documento depois clique no X para fechar. Compare a log dos dois, pois pelo menos o fechar tinha que voltar algo.

henriquel1997 commented 4 years ago

Log do cancelamento no app de teste:

D/SurfaceViewImpl( 8125): Surface destroyed.
D/SurfaceViewImpl( 8125): Surface invalidated androidx.camera.core.SurfaceRequest@a6556bb
D/UseCaseAttachState( 8125): All use case: [] for camera: 0
D/UseCaseMediator( 8125): Destroying use case: androidx.camera.core.Preview-5fc24cd2-5d8e-45e2-aa55-d1c086cabb6e
D/UseCaseAttachState( 8125): Active and attached use case: [] for camera: 0
D/UseCaseMediator( 8125): Destroying use case: androidx.camera.core.ImageCapture-c413f08f-2888-4c38-aa19-dcf8be41a408
D/UseCaseAttachState( 8125): Active and attached use case: [] for camera: 0
D/UseCaseMediator( 8125): Destroying use case: androidx.camera.core.ImageAnalysis-45c148e3-e3ec-4037-a231-38c0110ba0df
D/UseCaseAttachState( 8125): Active and attached use case: [] for camera: 0
D/xxx     ( 8125): blank0.99999833
D/CaptureSession( 8125): CameraCaptureSession.onReady() RELEASING
D/CaptureSession( 8125): CameraCaptureSession.onClosed()
D/SurfaceViewImpl( 8125): Safe to release surface.

Log de cancelamento no nosso app:

D/SurfaceViewImpl( 8768): Surface destroyed.
D/SurfaceViewImpl( 8768): Surface invalidated androidx.camera.core.SurfaceRequest@d74edc9
D/UseCaseAttachState( 8768): All use case: [] for camera: 0
D/xxx     ( 8768): blank1.0
D/UseCaseMediator( 8768): Destroying use case: androidx.camera.core.Preview-5b8f5aa3-e696-4d89-ac39-61f5c4613c12
D/UseCaseMediator( 8768): Destroying use case: androidx.camera.core.ImageCapture-5d6f9389-a44c-48f2-aaf4-1ae7a896a55b
D/UseCaseMediator( 8768): Destroying use case: androidx.camera.core.ImageAnalysis-b645d427-177e-4325-80bc-0d237f09bee6
D/UseCaseAttachState( 8768): Active and attached use case: [] for camera: 0
I/chatty  ( 8768): uid=10435(br.com.hubfintech.hub_gift) CameraX-core_ca identical 1 line
D/UseCaseAttachState( 8768): Active and attached use case: [] for camera: 0
D/CaptureSession( 8768): CameraCaptureSession.onReady() RELEASING
D/CaptureSession( 8768): CameraCaptureSession.onClosed()
D/SurfaceViewImpl( 8768): Safe to release surface.
V/FA      ( 8768): Inactivity, disconnecting from the service

Acho que não teve muita diferença de um pro outro, mas o nosso app continua com o mesmo comportamento, não retornando o resultado para o flutter.

RodrigoSMarques commented 4 years ago

@henriquel1997 apenas confirmando. Pode checar a versão no seu pubspec.yaml? Você está utilizando a última versão do plugin? Compare com a versão do meu código.

Dentro da pasta do Flutter, existe uma pasta oculta chamada /.pub-cache/git

Dentro dela deve ter algumas FluterXXXXXXXXX alguma coisa.

Estas pastas são as várias versões dos plugins que foram instaladas na sua máquina.

Apague todas elas, rode um flutter clean no seu projeto e depois faça um get novamente no seu projeto para baixar tudo novamente.

Tente rodar seu projeto.

RodrigoSMarques commented 4 years ago

E achando estraho, porque no projeto eu executo alguns Log.d com a tag "DocumentDetectorSdk" e não vi nenhum na log.

henriquel1997 commented 4 years ago

A versão do plugin que estou usando é a v.0.5.0, assim como no exemplo. Tentei apagar o .pub-cache, rodar o flutter clean e fazer o pub get novamente, continua com o mesmo problema.

Procurei por esses logs com a tag "DocumentDetectorSdk" e só achei esses que aparecem quando o aplicativo inicia, quando o DocumentDetector é utilizado mesmo não achei nenhum.

2020-06-15 14:08:15.956 23140-23140/br.com.hubfintech.hub_gift D/DocumentDetectorSdk: setupChannels
2020-06-15 14:08:15.963 23140-23140/br.com.hubfintech.hub_gift D/DocumentDetectorSdk: registerWith
2020-06-15 14:08:15.963 23140-23140/br.com.hubfintech.hub_gift D/DocumentDetectorSdk: setupChannels

No exemplo de vocês ele loga isso aqui no inicio:

2020-06-15 14:13:36.076 24507-24507/? D/DocumentDetectorSdk: setupChannels
2020-06-15 14:13:36.076 24507-24507/? D/DocumentDetectorSdk: onAttachedToActivity
2020-06-15 14:13:36.082 24507-24507/? D/DocumentDetectorSdk: onAttachedToEngine
2020-06-15 14:13:36.082 24507-24507/? D/DocumentDetectorSdk: setupChannels
2020-06-15 14:13:36.082 24507-24507/? D/DocumentDetectorSdk: onAttachedToActivity

Parece que no meu caso ele não está chamando o onAttachedToActivity nem o onAttachedToEngine nunca.

RodrigoSMarques commented 4 years ago

@henriquel1997 Entendi. Uma teoria: Outro package pode estar usando o mesmo código de REQUESTCODE do DocumentDetector.

Quando ele entra no ActivityResult não faz nada, pois não sabe que precisa devolver.

Como meu exemplo tem menos packages, não dá conflito.

Tente colocar os mesmos packages no meu exemplo e veja o que acontece.

henriquel1997 commented 4 years ago

Tentei copiar todos os pacotes do meu pubspec para o pubspec do exemplo, mas lá ainda continuou funcionando normalmente. O request code do DocumentDetector é fixo? será que não tinha como ele ser gerado aleatóriamente para evitar ele ter o mesmo id de outra dependência? Algo tipo assim: https://developer.android.com/training/articles/user-data-ids#instance-ids-guids

RodrigoSMarques commented 4 years ago

Olá @henriquel1997 É um valor constante e não tem como ser definido em tempos de execução.

Vou gerar uma nova versão com mais informações no Log.d para descobrir onde está o problema.

RodrigoSMarques commented 4 years ago

@henriquel1997 nova versão gerada.

Não gerei um release, porque é apenas um teste. Coloquei vários Log.d com a tag "DocumentDetectorSdk".

Envie o Logcat para verificarmos o que aconteceu:

  document_detector_sdk:
    git:
      url: https://github.com/combateafraude/Flutter.git
      #ref: document-detector-v.0.5.0
      ref: document-detector
henriquel1997 commented 4 years ago

Aqui estão os logs:

Cancelando a Activity no exemplo:

2020-06-16 08:28:02.191 27980-28018/com.example.sdk_combate_test I/flutter: DocumentDetectorSdk - call PlatformChannel
2020-06-16 08:28:02.193 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: getDocuments
2020-06-16 08:28:02.195 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: DocumentDetectorActivity
2020-06-16 08:28:02.229 27980-27980/com.example.sdk_combate_test W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@e37874e
2020-06-16 08:28:02.333 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
2020-06-16 08:28:02.334 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
2020-06-16 08:28:02.396 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/graphics/FontFamily;-><init>()V (greylist, reflection, allowed)
2020-06-16 08:28:02.396 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/graphics/FontFamily;->addFontFromAssetManager(Landroid/content/res/AssetManager;Ljava/lang/String;IZIII[Landroid/graphics/fonts/FontVariationAxis;)Z (greylist, reflection, allowed)
2020-06-16 08:28:02.397 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/graphics/FontFamily;->addFontFromBuffer(Ljava/nio/ByteBuffer;I[Landroid/graphics/fonts/FontVariationAxis;II)Z (greylist, reflection, allowed)
2020-06-16 08:28:02.397 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/graphics/FontFamily;->freeze()Z (greylist, reflection, allowed)
2020-06-16 08:28:02.397 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/graphics/FontFamily;->abortCreation()V (greylist, reflection, allowed)
2020-06-16 08:28:02.397 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Landroid/graphics/Typeface;->createFromFamiliesWithDefault([Landroid/graphics/FontFamily;Ljava/lang/String;II)Landroid/graphics/Typeface; (greylist, reflection, allowed)
2020-06-16 08:28:02.440 27980-27980/com.example.sdk_combate_test W/dk_combate_tes: Accessing hidden method Ljava/lang/invoke/MethodHandles$Lookup;-><init>(Ljava/lang/Class;I)V (greylist, reflection, allowed)
2020-06-16 08:28:02.564 27980-27980/com.example.sdk_combate_test D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2020-06-16 08:28:02.618 27980-28055/com.example.sdk_combate_test I/CameraManagerGlobal: Connecting to camera service
2020-06-16 08:28:02.622 27980-27980/com.example.sdk_combate_test I/tflite: Initialized TensorFlow Lite runtime.
2020-06-16 08:28:02.639 27980-28055/com.example.sdk_combate_test D/CameraRepository: Added camera: 0
2020-06-16 08:28:02.662 27980-28055/com.example.sdk_combate_test I/Camera2CameraInfo: Device Level: INFO_SUPPORTED_HARDWARE_LEVEL_3
2020-06-16 08:28:02.667 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:28:02.669 27980-28055/com.example.sdk_combate_test D/CameraRepository: Added camera: 1
2020-06-16 08:28:02.673 27980-28055/com.example.sdk_combate_test I/Camera2CameraInfo: Device Level: INFO_SUPPORTED_HARDWARE_LEVEL_3
2020-06-16 08:28:02.674 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 1
2020-06-16 08:28:03.189 27980-28014/com.example.sdk_combate_test I/OpenGLRenderer: Davey! duration=745ms; Flags=1, IntendedVsync=4004612395490, Vsync=4005029062140, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=4005035003035, AnimationStart=4005035076212, PerformTraversalsStart=4005036817671, DrawStart=4005259277120, SyncQueued=4005269369256, SyncStart=4005269757538, IssueDrawCommandsStart=4005269837850, SwapBuffers=4005356603067, FrameCompleted=4005358438484, DequeueBufferDuration=116000, QueueBufferDuration=1180000, 
2020-06-16 08:28:03.274 27980-28014/com.example.sdk_combate_test I/OpenGLRenderer: Davey! duration=831ms; Flags=1, IntendedVsync=4004612395490, Vsync=4005029062140, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=4005035003035, AnimationStart=4005035076212, PerformTraversalsStart=4005036817671, DrawStart=4005412770521, SyncQueued=4005416581407, SyncStart=4005416900938, IssueDrawCommandsStart=4005417034427, SwapBuffers=4005442192190, FrameCompleted=4005444112295, DequeueBufferDuration=124000, QueueBufferDuration=1227000, 
2020-06-16 08:28:03.445 27980-28055/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:28:03.450 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:28:03.451 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092, androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.452 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569] for camera: 0
2020-06-16 08:28:03.455 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092, androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.522 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569] for camera: 0
2020-06-16 08:28:03.524 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569] for camera: 0
2020-06-16 08:28:03.525 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.528 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092, androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.531 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092, androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.536 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092, androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.540 27980-28056/com.example.sdk_combate_test D/CaptureSession: Some surfaces were closed.
2020-06-16 08:28:03.545 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface created.
2020-06-16 08:28:03.545 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:28:03.549 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:28:03.555 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Safe to release surface.
2020-06-16 08:28:03.556 27980-28055/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092, androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.558 27980-28055/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092, androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569, androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb] for camera: 0
2020-06-16 08:28:03.565 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:28:03.565 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@7720b2a
2020-06-16 08:28:03.589 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface created.
2020-06-16 08:28:03.589 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:28:03.591 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:28:03.593 27980-28056/com.example.sdk_combate_test D/CaptureSession: Opening capture session.
2020-06-16 08:28:03.639 27980-28056/com.example.sdk_combate_test D/CaptureSession: Attempting to send capture request onConfigured
2020-06-16 08:28:03.639 27980-28056/com.example.sdk_combate_test D/CaptureSession: Issuing request for session.
2020-06-16 08:28:03.644 27980-28056/com.example.sdk_combate_test D/CaptureSession: CameraCaptureSession.onConfigured() mState=OPENED
2020-06-16 08:28:03.644 27980-28056/com.example.sdk_combate_test D/CaptureSession: CameraCaptureSession.onReady() OPENED
2020-06-16 08:28:03.646 27980-28105/com.example.sdk_combate_test W/Gralloc3: allocator 3.x is not supported
2020-06-16 08:28:03.984 27980-28014/com.example.sdk_combate_test D/OpenGLRenderer: endAllActiveAnimators on 0x7027827600 (RippleDrawable) with handle 0x7082218d60
2020-06-16 08:28:04.006 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.123 27980-28146/com.example.sdk_combate_test D/xxx: blank0.999998
2020-06-16 08:28:04.129 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.227 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999999
2020-06-16 08:28:04.230 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.312 27980-28146/com.example.sdk_combate_test D/xxx: blank1.0
2020-06-16 08:28:04.314 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.397 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999999
2020-06-16 08:28:04.399 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.459 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult
2020-06-16 08:28:04.459 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult: REQUEST_CODE_DOCUMENT_DETECTOR
2020-06-16 08:28:04.459 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult cancel
2020-06-16 08:28:04.459 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult - cancel:{cancel=true, success=false}
2020-06-16 08:28:04.463 27980-28018/com.example.sdk_combate_test I/flutter: DocumentDetectorSdk - return PlatformChannel
2020-06-16 08:28:04.471 27980-28018/com.example.sdk_combate_test I/flutter: DocumentDetectorSdk - {cancel: true, success: false}
2020-06-16 08:28:04.473 27980-28018/com.example.sdk_combate_test I/flutter: failed: Cancelado pelo usuário
2020-06-16 08:28:04.492 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999908
2020-06-16 08:28:04.494 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.581 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999995
2020-06-16 08:28:04.584 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.671 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999999
2020-06-16 08:28:04.673 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.756 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999999
2020-06-16 08:28:04.758 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.846 27980-28146/com.example.sdk_combate_test D/xxx: blank0.99999964
2020-06-16 08:28:04.848 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.927 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:28:04.927 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@a001a00
2020-06-16 08:28:04.931 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999999
2020-06-16 08:28:04.935 27980-28146/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:28:04.946 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [] for camera: 0
2020-06-16 08:28:04.947 27980-27980/com.example.sdk_combate_test D/UseCaseMediator: Destroying use case: androidx.camera.core.Preview-6d77ee8a-4ee5-4aac-bba6-13602e031092
2020-06-16 08:28:04.948 27980-27980/com.example.sdk_combate_test D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageCapture-7feb1829-59cf-4b06-8a8b-d8177a927569
2020-06-16 08:28:04.948 27980-27980/com.example.sdk_combate_test D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageAnalysis-23755680-e7e2-4d91-8068-d92302b331cb
2020-06-16 08:28:04.950 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:28:04.952 27980-28056/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) CameraX-core_ca identical 1 line
2020-06-16 08:28:04.953 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:28:05.017 27980-28146/com.example.sdk_combate_test D/xxx: blank0.9999995
2020-06-16 08:28:05.067 27980-28056/com.example.sdk_combate_test D/CaptureSession: CameraCaptureSession.onClosed()
2020-06-16 08:28:05.069 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Safe to release surface.
2020-06-16 08:28:05.087 27980-27998/com.example.sdk_combate_test E/BufferQueueProducer: [ImageReader-640x480f23m4-27980-0] queueBuffer: BufferQueue has been abandoned

Cancelando a Activity no nosso app:

2020-06-16 08:23:01.252 26267-26324/? I/flutter: DocumentDetectorSdk - call PlatformChannel
2020-06-16 08:23:01.253 26267-26267/? D/DocumentDetectorSdk: getDocuments
2020-06-16 08:23:01.255 26267-26267/? D/DocumentDetectorSdk: DocumentDetectorActivity
2020-06-16 08:23:01.293 26267-26267/? W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@8edd158
2020-06-16 08:23:01.396 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
2020-06-16 08:23:01.397 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
2020-06-16 08:23:01.453 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;-><init>()V (greylist, reflection, allowed)
2020-06-16 08:23:01.453 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->addFontFromAssetManager(Landroid/content/res/AssetManager;Ljava/lang/String;IZIII[Landroid/graphics/fonts/FontVariationAxis;)Z (greylist, reflection, allowed)
2020-06-16 08:23:01.453 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->addFontFromBuffer(Ljava/nio/ByteBuffer;I[Landroid/graphics/fonts/FontVariationAxis;II)Z (greylist, reflection, allowed)
2020-06-16 08:23:01.453 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->freeze()Z (greylist, reflection, allowed)
2020-06-16 08:23:01.453 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->abortCreation()V (greylist, reflection, allowed)
2020-06-16 08:23:01.454 26267-26267/? W/intech.hub_gif: Accessing hidden method Landroid/graphics/Typeface;->createFromFamiliesWithDefault([Landroid/graphics/FontFamily;Ljava/lang/String;II)Landroid/graphics/Typeface; (greylist, reflection, allowed)
2020-06-16 08:23:01.497 26267-26267/? W/intech.hub_gif: Accessing hidden method Ljava/lang/invoke/MethodHandles$Lookup;-><init>(Ljava/lang/Class;I)V (greylist, reflection, allowed)
2020-06-16 08:23:01.616 26267-26267/? D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2020-06-16 08:23:01.663 26267-26420/? I/CameraManagerGlobal: Connecting to camera service
2020-06-16 08:23:01.668 26267-26267/? I/tflite: Initialized TensorFlow Lite runtime.
2020-06-16 08:23:01.683 26267-26420/? D/CameraRepository: Added camera: 0
2020-06-16 08:23:01.704 26267-26420/? I/Camera2CameraInfo: Device Level: INFO_SUPPORTED_HARDWARE_LEVEL_3
2020-06-16 08:23:01.707 26267-26421/? D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:23:01.709 26267-26420/? D/CameraRepository: Added camera: 1
2020-06-16 08:23:01.714 26267-26420/? I/Camera2CameraInfo: Device Level: INFO_SUPPORTED_HARDWARE_LEVEL_3
2020-06-16 08:23:01.715 26267-26421/? D/UseCaseAttachState: Active and attached use case: [] for camera: 1
2020-06-16 08:23:01.907 26267-26267/? I/Choreographer: Skipped 36 frames!  The application may be doing too much work on its main thread.
2020-06-16 08:23:02.142 26267-26316/? I/OpenGLRenderer: Davey! duration=835ms; Flags=1, IntendedVsync=3703475922291, Vsync=3704075922267, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=3704077273731, AnimationStart=3704077362013, PerformTraversalsStart=3704078686856, DrawStart=3704281194481, SyncQueued=3704290907398, SyncStart=3704291515523, IssueDrawCommandsStart=3704291619898, SwapBuffers=3704310231827, FrameCompleted=3704312006203, DequeueBufferDuration=160000, QueueBufferDuration=1099000, 
2020-06-16 08:23:02.218 26267-26316/? I/OpenGLRenderer: Davey! duration=911ms; Flags=1, IntendedVsync=3703475922291, Vsync=3704075922267, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=3704077273731, AnimationStart=3704077362013, PerformTraversalsStart=3704078686856, DrawStart=3704356717717, SyncQueued=3704359773447, SyncStart=3704360192614, IssueDrawCommandsStart=3704360378134, SwapBuffers=3704386135950, FrameCompleted=3704387843398, DequeueBufferDuration=129000, QueueBufferDuration=975000, 
2020-06-16 08:23:02.408 26267-26420/? D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:23:02.411 26267-26421/? D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:23:02.413 26267-26421/? D/UseCaseAttachState: All use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.413 26267-26421/? D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.417 26267-26421/? D/UseCaseAttachState: All use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.514 26267-26421/? D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.515 26267-26267/? D/SurfaceViewImpl: Surface created.
2020-06-16 08:23:02.515 26267-26267/? D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:23:02.517 26267-26421/? D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.519 26267-26267/? D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:23:02.524 26267-26267/? D/SurfaceViewImpl: Safe to release surface.
2020-06-16 08:23:02.527 26267-26421/? D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.530 26267-26421/? D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.532 26267-26421/? D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.537 26267-26421/? D/UseCaseAttachState: All use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.540 26267-26421/? D/CaptureSession: Some surfaces were closed.
2020-06-16 08:23:02.544 26267-26420/? D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.546 26267-26267/? D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:23:02.546 26267-26267/? D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@fc460f4
2020-06-16 08:23:02.547 26267-26420/? D/UseCaseAttachState: All use case: [androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964, androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82, androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d] for camera: 0
2020-06-16 08:23:02.570 26267-26267/? D/SurfaceViewImpl: Surface created.
2020-06-16 08:23:02.570 26267-26267/? D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:23:02.573 26267-26267/? D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:23:02.575 26267-26421/? D/CaptureSession: Opening capture session.
2020-06-16 08:23:02.615 26267-26421/? D/CaptureSession: Attempting to send capture request onConfigured
2020-06-16 08:23:02.615 26267-26421/? D/CaptureSession: Issuing request for session.
2020-06-16 08:23:02.619 26267-26421/? D/CaptureSession: CameraCaptureSession.onConfigured() mState=OPENED
2020-06-16 08:23:02.619 26267-26421/? D/CaptureSession: CameraCaptureSession.onReady() OPENED
2020-06-16 08:23:02.619 26267-26285/? W/Gralloc3: allocator 3.x is not supported
2020-06-16 08:23:03.015 26267-26316/? D/OpenGLRenderer: endAllActiveAnimators on 0x6fffad4600 (RippleDrawable) with handle 0x70822dd340
2020-06-16 08:23:03.038 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.165 26267-26497/? D/xxx: blank0.9999956
2020-06-16 08:23:03.167 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.259 26267-26497/? D/xxx: blank0.99999654
2020-06-16 08:23:03.264 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.351 26267-26497/? D/xxx: blank0.99997807
2020-06-16 08:23:03.353 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.447 26267-26497/? D/xxx: blank0.99998593
2020-06-16 08:23:03.450 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.567 26267-26497/? D/xxx: blank0.9999784
2020-06-16 08:23:03.570 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.683 26267-26497/? D/xxx: blank0.99997675
2020-06-16 08:23:03.686 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.766 26267-26497/? D/xxx: blank0.99995136
2020-06-16 08:23:03.768 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.852 26267-26497/? D/xxx: blank0.99997807
2020-06-16 08:23:03.854 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.935 26267-26497/? D/xxx: blank0.99997437
2020-06-16 08:23:03.938 26267-26497/? D/skia: onFlyCompress
2020-06-16 08:23:03.941 26267-26267/? D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:23:03.942 26267-26267/? D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@3f5a520
2020-06-16 08:23:03.965 26267-26420/? D/UseCaseAttachState: All use case: [] for camera: 0
2020-06-16 08:23:03.967 26267-26267/? D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageAnalysis-44fb058e-4908-4489-aba2-a316fa776964
2020-06-16 08:23:03.968 26267-26267/? D/UseCaseMediator: Destroying use case: androidx.camera.core.Preview-62005544-eeb4-4d62-a867-228c15115b82
2020-06-16 08:23:03.968 26267-26267/? D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageCapture-bbcfbf3c-f6c1-4d46-ae71-2587851be25d
2020-06-16 08:23:03.988 26267-26420/? D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:23:03.989 26267-26420/? I/chatty: uid=10005(br.com.hubfintech.hub_gift) CameraX-core_ca identical 1 line
2020-06-16 08:23:03.990 26267-26420/? D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:23:04.025 26267-26497/? D/xxx: blank0.9999877
2020-06-16 08:23:04.067 26267-26421/? D/CaptureSession: CameraCaptureSession.onClosed()
2020-06-16 08:23:04.069 26267-26267/? D/SurfaceViewImpl: Safe to release surface.

Só por esses dois já dá pra ver que no nosso app ele não mostra os logs de

 I/flutter: DocumentDetectorSdk - return PlatformChannel
I/flutter: DocumentDetectorSdk - {cancel: true, success: false}
I/flutter: failed: Cancelado pelo usuário

Mas se precisar aqui estão os logos com o fluxo completo de escanear a CNH: No exemplo de vocês:

2020-06-16 08:29:27.102 27980-28018/com.example.sdk_combate_test I/flutter: DocumentDetectorSdk - call PlatformChannel
2020-06-16 08:29:27.103 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: getDocuments
2020-06-16 08:29:27.104 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: DocumentDetectorActivity
2020-06-16 08:29:27.128 27980-27980/com.example.sdk_combate_test W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@cd25ff0
2020-06-16 08:29:27.552 27980-27995/com.example.sdk_combate_test W/MediaPlayer-JNI: MediaPlayer finalized without being released
2020-06-16 08:29:27.552 27980-28055/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:29:27.553 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:29:27.554 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4, androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.554 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.558 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4, androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.623 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface created.
2020-06-16 08:29:27.623 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:29:27.627 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:29:27.630 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Safe to release surface.
2020-06-16 08:29:27.641 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.642 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.645 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.648 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4, androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.651 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4, androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.655 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4, androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.656 27980-28056/com.example.sdk_combate_test D/CaptureSession: Some surfaces were closed.
2020-06-16 08:29:27.660 27980-28055/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4, androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.662 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:29:27.662 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@f8ec1eb
2020-06-16 08:29:27.664 27980-28055/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4, androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30, androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186] for camera: 0
2020-06-16 08:29:27.688 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface created.
2020-06-16 08:29:27.688 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:29:27.691 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:29:27.692 27980-28056/com.example.sdk_combate_test D/CaptureSession: Opening capture session.
2020-06-16 08:29:27.724 27980-28056/com.example.sdk_combate_test D/CaptureSession: Attempting to send capture request onConfigured
2020-06-16 08:29:27.724 27980-28056/com.example.sdk_combate_test D/CaptureSession: Issuing request for session.
2020-06-16 08:29:27.728 27980-28056/com.example.sdk_combate_test D/CaptureSession: CameraCaptureSession.onConfigured() mState=OPENED
2020-06-16 08:29:27.728 27980-28056/com.example.sdk_combate_test D/CaptureSession: CameraCaptureSession.onReady() OPENED
2020-06-16 08:29:28.303 27980-28014/com.example.sdk_combate_test D/OpenGLRenderer: endAllActiveAnimators on 0x7026a87600 (RippleDrawable) with handle 0x7082218d60
2020-06-16 08:29:28.323 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:28.413 27980-28286/com.example.sdk_combate_test D/xxx: blank0.7590689
2020-06-16 08:29:28.417 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:28.508 27980-28286/com.example.sdk_combate_test D/xxx: rg_back0.9269755
2020-06-16 08:29:28.511 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:28.594 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.7723017
2020-06-16 08:29:28.597 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:28.677 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.6010696
2020-06-16 08:29:28.679 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:28.764 27980-28286/com.example.sdk_combate_test D/xxx: rg_back0.79340726
2020-06-16 08:29:28.766 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:28.850 27980-28286/com.example.sdk_combate_test D/xxx: blank0.4794368
2020-06-16 08:29:28.852 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:28.932 27980-28286/com.example.sdk_combate_test D/xxx: blank0.43873104
2020-06-16 08:29:28.934 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.018 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.4448255
2020-06-16 08:29:29.020 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.103 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.94477874
2020-06-16 08:29:29.105 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.185 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99949205
2020-06-16 08:29:29.187 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.275 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9998135
2020-06-16 08:29:29.276 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.360 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9997423
2020-06-16 08:29:29.362 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.443 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99992585
2020-06-16 08:29:29.444 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.528 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999826
2020-06-16 08:29:29.530 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.612 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99983025
2020-06-16 08:29:29.613 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.693 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.97686964
2020-06-16 08:29:29.696 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.779 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99709475
2020-06-16 08:29:29.781 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.862 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99975914
2020-06-16 08:29:29.864 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:29.950 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999411
2020-06-16 08:29:29.952 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.039 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.999912
2020-06-16 08:29:30.041 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.124 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999604
2020-06-16 08:29:30.126 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.210 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999821
2020-06-16 08:29:30.213 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.297 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999975
2020-06-16 08:29:30.302 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.307 27980-27995/com.example.sdk_combate_test W/MediaPlayer-JNI: MediaPlayer finalized without being released
2020-06-16 08:29:30.388 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999993
2020-06-16 08:29:30.389 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.473 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9994512
2020-06-16 08:29:30.474 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.555 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999149
2020-06-16 08:29:30.556 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.643 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99997807
2020-06-16 08:29:30.644 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.727 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999871
2020-06-16 08:29:30.729 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.814 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99998844
2020-06-16 08:29:30.816 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.902 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999901
2020-06-16 08:29:30.904 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:30.990 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999987
2020-06-16 08:29:30.992 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.074 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999957
2020-06-16 08:29:31.077 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.163 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999995
2020-06-16 08:29:31.165 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.244 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99991274
2020-06-16 08:29:31.246 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.329 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999031
2020-06-16 08:29:31.330 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.415 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999814
2020-06-16 08:29:31.418 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.500 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999678
2020-06-16 08:29:31.502 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.588 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999951
2020-06-16 08:29:31.589 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.675 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999988
2020-06-16 08:29:31.677 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.758 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999951
2020-06-16 08:29:31.760 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:31.846 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99997425
2020-06-16 08:29:31.857 27980-27980/com.example.sdk_combate_test D/ImageCapture: Size of image capture request queue: 0
2020-06-16 08:29:31.887 27980-28056/com.example.sdk_combate_test D/CaptureSession: Issuing capture request.
2020-06-16 08:29:32.237 27980-27980/com.example.sdk_combate_test W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:29:32.237 27980-27980/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:32.238 27980-27980/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) identical 1 line
2020-06-16 08:29:32.238 27980-27980/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:32.284 27980-28315/com.example.sdk_combate_test W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:29:32.285 27980-28315/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:32.285 27980-28315/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) CameraX-camerax identical 1 line
2020-06-16 08:29:32.285 27980-28315/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:32.301 27980-28315/com.example.sdk_combate_test W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:29:32.301 27980-28315/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:32.302 27980-28315/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) CameraX-camerax identical 1 line
2020-06-16 08:29:32.302 27980-28315/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:34.440 27980-28286/com.example.sdk_combate_test D/xxx: salvada: cnh_front0.99999046
2020-06-16 08:29:35.792 27980-28014/com.example.sdk_combate_test D/OpenGLRenderer: endAllActiveAnimators on 0x7026716b00 (RippleDrawable) with handle 0x7082240bc0
2020-06-16 08:29:35.801 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:35.890 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999968
2020-06-16 08:29:35.893 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:35.993 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9998056
2020-06-16 08:29:35.995 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.076 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99999356
2020-06-16 08:29:36.078 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.160 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99994636
2020-06-16 08:29:36.162 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.247 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999993
2020-06-16 08:29:36.250 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.330 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999131
2020-06-16 08:29:36.332 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.414 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9998783
2020-06-16 08:29:36.417 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.503 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.99998736
2020-06-16 08:29:36.504 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.586 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9999789
2020-06-16 08:29:36.588 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.669 27980-28286/com.example.sdk_combate_test D/xxx: cnh_front0.9884393
2020-06-16 08:29:36.671 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.754 27980-28286/com.example.sdk_combate_test D/xxx: blank0.99999976
2020-06-16 08:29:36.756 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.840 27980-28286/com.example.sdk_combate_test D/xxx: blank1.0
2020-06-16 08:29:36.842 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:36.908 27980-27995/com.example.sdk_combate_test W/MediaPlayer-JNI: MediaPlayer finalized without being released
2020-06-16 08:29:36.927 27980-28286/com.example.sdk_combate_test D/xxx: blank1.0
2020-06-16 08:29:36.929 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.008 27980-28286/com.example.sdk_combate_test D/xxx: blank0.9868794
2020-06-16 08:29:37.010 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.089 27980-28286/com.example.sdk_combate_test D/xxx: blank0.96879745
2020-06-16 08:29:37.091 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.171 27980-28286/com.example.sdk_combate_test D/xxx: blank0.99900585
2020-06-16 08:29:37.173 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.253 27980-28286/com.example.sdk_combate_test D/xxx: blank0.9999738
2020-06-16 08:29:37.255 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.339 27980-28286/com.example.sdk_combate_test D/xxx: blank0.85145587
2020-06-16 08:29:37.341 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.421 27980-28286/com.example.sdk_combate_test D/xxx: blank0.92388827
2020-06-16 08:29:37.423 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.507 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999901
2020-06-16 08:29:37.508 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.591 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999988
2020-06-16 08:29:37.593 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.673 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99991417
2020-06-16 08:29:37.675 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.756 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.999923
2020-06-16 08:29:37.761 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.842 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999964
2020-06-16 08:29:37.843 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:37.933 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9995641
2020-06-16 08:29:37.935 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.017 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999974
2020-06-16 08:29:38.019 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.102 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999918
2020-06-16 08:29:38.104 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.186 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999964
2020-06-16 08:29:38.187 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.271 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:38.273 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.356 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999999
2020-06-16 08:29:38.357 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.441 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999994
2020-06-16 08:29:38.443 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.522 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999994
2020-06-16 08:29:38.524 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.605 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999999
2020-06-16 08:29:38.607 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.690 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:38.692 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.773 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:38.775 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.859 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:38.861 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:38.942 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:38.944 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.028 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999976
2020-06-16 08:29:39.030 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.110 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:39.112 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.192 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:39.194 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.277 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:39.278 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.359 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999976
2020-06-16 08:29:39.361 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.446 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:39.447 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.529 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999999
2020-06-16 08:29:39.531 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.619 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:39.620 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.702 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999999
2020-06-16 08:29:39.704 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.794 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:39.796 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.878 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999987
2020-06-16 08:29:39.880 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:39.967 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999964
2020-06-16 08:29:39.968 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.052 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999654
2020-06-16 08:29:40.054 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.139 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999999
2020-06-16 08:29:40.141 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.223 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:40.225 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.311 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999964
2020-06-16 08:29:40.313 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.394 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:40.396 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.487 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999964
2020-06-16 08:29:40.489 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.572 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999964
2020-06-16 08:29:40.573 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.662 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999964
2020-06-16 08:29:40.663 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.746 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999845
2020-06-16 08:29:40.747 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.832 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999994
2020-06-16 08:29:40.833 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:40.915 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999989
2020-06-16 08:29:40.917 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:41.004 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999988
2020-06-16 08:29:41.006 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:41.090 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999993
2020-06-16 08:29:41.092 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:41.173 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.99999976
2020-06-16 08:29:41.175 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:41.259 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back1.0
2020-06-16 08:29:41.260 27980-28286/com.example.sdk_combate_test D/skia: onFlyCompress
2020-06-16 08:29:41.345 27980-28286/com.example.sdk_combate_test D/xxx: cnh_back0.9999994
2020-06-16 08:29:41.348 27980-27980/com.example.sdk_combate_test D/ImageCapture: Size of image capture request queue: 0
2020-06-16 08:29:41.398 27980-28055/com.example.sdk_combate_test D/CaptureSession: Issuing capture request.
2020-06-16 08:29:41.731 27980-27980/com.example.sdk_combate_test W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:29:41.731 27980-27980/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:41.731 27980-27980/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) identical 1 line
2020-06-16 08:29:41.731 27980-27980/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:41.773 27980-28340/com.example.sdk_combate_test W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:29:41.773 27980-28340/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:41.773 27980-28340/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) CameraX-camerax identical 1 line
2020-06-16 08:29:41.773 27980-28340/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:41.792 27980-28340/com.example.sdk_combate_test W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:29:41.793 27980-28340/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:41.793 27980-28340/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) CameraX-camerax identical 1 line
2020-06-16 08:29:41.793 27980-28340/com.example.sdk_combate_test W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:29:43.886 27980-28286/com.example.sdk_combate_test D/xxx: salvada: cnh_back0.9999994
2020-06-16 08:29:43.938 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult
2020-06-16 08:29:43.938 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult: REQUEST_CODE_DOCUMENT_DETECTOR
2020-06-16 08:29:43.938 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult: RESULT_OK
2020-06-16 08:29:43.940 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult: wasSuccessful
2020-06-16 08:29:43.940 27980-27980/com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult - successs:{captureFront_missedAttemps=0, captureBack_imagePath=/storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document1.jpg, success=true, captureFront_imagePath=/storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document0.jpg, captureBack_missedAttemps=1}
2020-06-16 08:29:43.942 27980-28018/com.example.sdk_combate_test I/flutter: DocumentDetectorSdk - return PlatformChannel
2020-06-16 08:29:43.943 27980-28018/com.example.sdk_combate_test I/flutter: DocumentDetectorSdk - {captureFront_missedAttemps: 0, captureBack_imagePath: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document1.jpg, success: true, captureFront_imagePath: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document0.jpg, captureBack_missedAttemps: 1}
2020-06-16 08:29:43.947 27980-28018/com.example.sdk_combate_test I/flutter: success: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document0.jpg, 0
2020-06-16 08:29:43.947 27980-28018/com.example.sdk_combate_test I/flutter: success: /storage/emulated/0/Android/data/com.example.sdk_combate_test/files/document1.jpg, 1
2020-06-16 08:29:44.412 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:29:44.412 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@cea989
2020-06-16 08:29:44.428 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: All use case: [] for camera: 0
2020-06-16 08:29:44.429 27980-27980/com.example.sdk_combate_test D/UseCaseMediator: Destroying use case: androidx.camera.core.Preview-fb81c67b-9316-44b5-a1bd-913bec2d30b4
2020-06-16 08:29:44.430 27980-27980/com.example.sdk_combate_test D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageAnalysis-90132fe4-53f9-4c91-9cd4-9d718f279f30
2020-06-16 08:29:44.430 27980-27980/com.example.sdk_combate_test D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageCapture-05a51ddb-673d-4e0b-8ffc-129a60b64186
2020-06-16 08:29:44.430 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:29:44.430 27980-28056/com.example.sdk_combate_test I/chatty: uid=10007(com.example.sdk_combate_test) CameraX-core_ca identical 1 line
2020-06-16 08:29:44.431 27980-28056/com.example.sdk_combate_test D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:29:44.555 27980-28055/com.example.sdk_combate_test D/CaptureSession: CameraCaptureSession.onClosed()
2020-06-16 08:29:44.556 27980-27980/com.example.sdk_combate_test D/SurfaceViewImpl: Safe to release surface.
2020-06-16 08:29:44.558 27980-28300/com.example.sdk_combate_test E/BufferQueueProducer: [ImageReader-640x480f23m4-27980-2] queueBuffer: BufferQueue has been abandoned

No nosso app:

2020-06-16 08:20:17.665 25746-25800/br.com.hubfintech.hub_gift I/flutter: DocumentDetectorSdk - call PlatformChannel
2020-06-16 08:20:17.666 25746-25746/br.com.hubfintech.hub_gift D/DocumentDetectorSdk: getDocuments
2020-06-16 08:20:17.669 25746-25746/br.com.hubfintech.hub_gift D/DocumentDetectorSdk: DocumentDetectorActivity
2020-06-16 08:20:17.707 25746-25746/br.com.hubfintech.hub_gift W/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@8edd158
2020-06-16 08:20:17.812 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed)
2020-06-16 08:20:17.813 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed)
2020-06-16 08:20:17.871 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;-><init>()V (greylist, reflection, allowed)
2020-06-16 08:20:17.871 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->addFontFromAssetManager(Landroid/content/res/AssetManager;Ljava/lang/String;IZIII[Landroid/graphics/fonts/FontVariationAxis;)Z (greylist, reflection, allowed)
2020-06-16 08:20:17.871 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->addFontFromBuffer(Ljava/nio/ByteBuffer;I[Landroid/graphics/fonts/FontVariationAxis;II)Z (greylist, reflection, allowed)
2020-06-16 08:20:17.871 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->freeze()Z (greylist, reflection, allowed)
2020-06-16 08:20:17.871 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/graphics/FontFamily;->abortCreation()V (greylist, reflection, allowed)
2020-06-16 08:20:17.872 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Landroid/graphics/Typeface;->createFromFamiliesWithDefault([Landroid/graphics/FontFamily;Ljava/lang/String;II)Landroid/graphics/Typeface; (greylist, reflection, allowed)
2020-06-16 08:20:17.914 25746-25746/br.com.hubfintech.hub_gift W/intech.hub_gif: Accessing hidden method Ljava/lang/invoke/MethodHandles$Lookup;-><init>(Ljava/lang/Class;I)V (greylist, reflection, allowed)
2020-06-16 08:20:18.033 25746-25746/br.com.hubfintech.hub_gift D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2020-06-16 08:20:18.081 25746-25946/br.com.hubfintech.hub_gift I/CameraManagerGlobal: Connecting to camera service
2020-06-16 08:20:18.085 25746-25746/br.com.hubfintech.hub_gift I/tflite: Initialized TensorFlow Lite runtime.
2020-06-16 08:20:18.100 25746-25946/br.com.hubfintech.hub_gift D/CameraRepository: Added camera: 0
2020-06-16 08:20:18.122 25746-25946/br.com.hubfintech.hub_gift I/Camera2CameraInfo: Device Level: INFO_SUPPORTED_HARDWARE_LEVEL_3
2020-06-16 08:20:18.124 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:20:18.127 25746-25946/br.com.hubfintech.hub_gift D/CameraRepository: Added camera: 1
2020-06-16 08:20:18.131 25746-25946/br.com.hubfintech.hub_gift I/Camera2CameraInfo: Device Level: INFO_SUPPORTED_HARDWARE_LEVEL_3
2020-06-16 08:20:18.132 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [] for camera: 1
2020-06-16 08:20:18.323 25746-25746/br.com.hubfintech.hub_gift I/Choreographer: Skipped 37 frames!  The application may be doing too much work on its main thread.
2020-06-16 08:20:18.560 25746-25797/br.com.hubfintech.hub_gift I/OpenGLRenderer: Davey! duration=855ms; Flags=1, IntendedVsync=3539873812756, Vsync=3540490479398, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=3540493113477, AnimationStart=3540493188685, PerformTraversalsStart=3540494514206, DrawStart=3540703265685, SyncQueued=3540713477301, SyncStart=3540713826416, IssueDrawCommandsStart=3540713911155, SwapBuffers=3540728469750, FrameCompleted=3540730007511, DequeueBufferDuration=116000, QueueBufferDuration=996000, 
2020-06-16 08:20:18.635 25746-25797/br.com.hubfintech.hub_gift I/OpenGLRenderer: Davey! duration=930ms; Flags=1, IntendedVsync=3539873812756, Vsync=3540490479398, OldestInputEvent=9223372036854775807, NewestInputEvent=0, HandleInputStart=3540493113477, AnimationStart=3540493188685, PerformTraversalsStart=3540494514206, DrawStart=3540774004234, SyncQueued=3540776837047, SyncStart=3540777147099, IssueDrawCommandsStart=3540777280849, SwapBuffers=3540803320070, FrameCompleted=3540804833820, DequeueBufferDuration=105000, QueueBufferDuration=1021000, 
2020-06-16 08:20:18.812 25746-25946/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:20:18.814 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:20:18.816 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: All use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828, androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72] for camera: 0
2020-06-16 08:20:18.817 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0] for camera: 0
2020-06-16 08:20:18.820 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: All use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828, androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72] for camera: 0
2020-06-16 08:20:18.914 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface created.
2020-06-16 08:20:18.914 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:20:18.918 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:20:18.923 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Safe to release surface.
2020-06-16 08:20:18.927 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0] for camera: 0
2020-06-16 08:20:18.930 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828] for camera: 0
2020-06-16 08:20:18.934 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828] for camera: 0
2020-06-16 08:20:18.936 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828, androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72] for camera: 0
2020-06-16 08:20:18.940 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828, androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72] for camera: 0
2020-06-16 08:20:18.945 25746-25947/br.com.hubfintech.hub_gift D/UseCaseAttachState: All use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828, androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72] for camera: 0
2020-06-16 08:20:18.950 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: Some surfaces were closed.
2020-06-16 08:20:18.954 25746-25946/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828, androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72] for camera: 0
2020-06-16 08:20:18.956 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:20:18.956 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@630848
2020-06-16 08:20:18.957 25746-25946/br.com.hubfintech.hub_gift D/UseCaseAttachState: All use case: [androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0, androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828, androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72] for camera: 0
2020-06-16 08:20:18.989 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface created.
2020-06-16 08:20:18.989 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface changed. Size: 1600x1200
2020-06-16 08:20:18.992 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface set on Preview.
2020-06-16 08:20:18.993 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: Opening capture session.
2020-06-16 08:20:19.032 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: Attempting to send capture request onConfigured
2020-06-16 08:20:19.032 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: Issuing request for session.
2020-06-16 08:20:19.037 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: CameraCaptureSession.onConfigured() mState=OPENED
2020-06-16 08:20:19.037 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: CameraCaptureSession.onReady() OPENED
2020-06-16 08:20:19.038 25746-25872/br.com.hubfintech.hub_gift W/Gralloc3: allocator 3.x is not supported
2020-06-16 08:20:19.548 25746-25797/br.com.hubfintech.hub_gift D/OpenGLRenderer: endAllActiveAnimators on 0x7000733800 (RippleDrawable) with handle 0x70822dd200
2020-06-16 08:20:19.626 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:19.763 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank1.0
2020-06-16 08:20:19.766 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:19.849 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank1.0
2020-06-16 08:20:19.850 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:19.934 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank1.0
2020-06-16 08:20:19.936 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.023 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank1.0
2020-06-16 08:20:20.026 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.110 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.9999993
2020-06-16 08:20:20.111 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.196 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.99999905
2020-06-16 08:20:20.198 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.279 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.9281028
2020-06-16 08:20:20.282 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.364 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.99338585
2020-06-16 08:20:20.365 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.450 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.99992
2020-06-16 08:20:20.452 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.533 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.99999166
2020-06-16 08:20:20.535 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.624 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.9980572
2020-06-16 08:20:20.626 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.707 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.99901605
2020-06-16 08:20:20.709 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.792 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.8761683
2020-06-16 08:20:20.794 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.874 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.904715
2020-06-16 08:20:20.876 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:20.956 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99994075
2020-06-16 08:20:20.958 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.045 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99995446
2020-06-16 08:20:21.047 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.127 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9995863
2020-06-16 08:20:21.129 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.217 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99896884
2020-06-16 08:20:21.220 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.300 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9957059
2020-06-16 08:20:21.302 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.381 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9996779
2020-06-16 08:20:21.383 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.468 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.999851
2020-06-16 08:20:21.470 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.551 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99996877
2020-06-16 08:20:21.553 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.640 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99998164
2020-06-16 08:20:21.642 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.721 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99919325
2020-06-16 08:20:21.723 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.805 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999958
2020-06-16 08:20:21.807 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.891 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999999
2020-06-16 08:20:21.893 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:21.977 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999964
2020-06-16 08:20:21.979 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.029 25746-25761/br.com.hubfintech.hub_gift W/MediaPlayer-JNI: MediaPlayer finalized without being released
2020-06-16 08:20:22.065 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99998665
2020-06-16 08:20:22.066 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.147 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999634
2020-06-16 08:20:22.148 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.230 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999529
2020-06-16 08:20:22.232 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.317 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9998503
2020-06-16 08:20:22.318 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.398 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9996865
2020-06-16 08:20:22.400 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.489 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999969
2020-06-16 08:20:22.490 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.572 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99998045
2020-06-16 08:20:22.574 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.659 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99998736
2020-06-16 08:20:22.661 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.743 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99997807
2020-06-16 08:20:22.745 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.831 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.999992
2020-06-16 08:20:22.833 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:22.915 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999356
2020-06-16 08:20:22.917 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.004 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999733
2020-06-16 08:20:23.005 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.087 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999907
2020-06-16 08:20:23.089 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.176 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99987185
2020-06-16 08:20:23.178 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.261 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999464
2020-06-16 08:20:23.263 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.349 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999094
2020-06-16 08:20:23.352 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.435 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999957
2020-06-16 08:20:23.436 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.518 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999795
2020-06-16 08:20:23.520 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.605 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99996436
2020-06-16 08:20:23.607 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.689 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999771
2020-06-16 08:20:23.690 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.775 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999597
2020-06-16 08:20:23.778 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.862 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999863
2020-06-16 08:20:23.864 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:23.951 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.999995
2020-06-16 08:20:23.953 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.035 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999974
2020-06-16 08:20:24.037 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.123 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999225
2020-06-16 08:20:24.126 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.209 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999851
2020-06-16 08:20:24.211 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.299 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999795
2020-06-16 08:20:24.301 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.381 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999964
2020-06-16 08:20:24.383 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.469 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front1.0
2020-06-16 08:20:24.471 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.554 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front1.0
2020-06-16 08:20:24.556 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.641 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999976
2020-06-16 08:20:24.643 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.731 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999034
2020-06-16 08:20:24.733 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:24.815 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999968
2020-06-16 08:20:24.824 25746-25746/br.com.hubfintech.hub_gift D/ImageCapture: Size of image capture request queue: 0
2020-06-16 08:20:24.860 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: Issuing capture request.
2020-06-16 08:20:25.198 25746-25746/br.com.hubfintech.hub_gift W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:20:25.198 25746-25746/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:25.198 25746-25746/br.com.hubfintech.hub_gift I/chatty: uid=10005(br.com.hubfintech.hub_gift) identical 1 line
2020-06-16 08:20:25.198 25746-25746/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:25.244 25746-26089/br.com.hubfintech.hub_gift W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:20:25.244 25746-26089/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:25.244 25746-26089/br.com.hubfintech.hub_gift I/chatty: uid=10005(br.com.hubfintech.hub_gift) CameraX-camerax identical 1 line
2020-06-16 08:20:25.244 25746-26089/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:25.259 25746-26089/br.com.hubfintech.hub_gift W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:20:25.259 25746-26089/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:25.259 25746-26089/br.com.hubfintech.hub_gift I/chatty: uid=10005(br.com.hubfintech.hub_gift) CameraX-camerax identical 1 line
2020-06-16 08:20:25.259 25746-26089/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:27.364 25746-26020/br.com.hubfintech.hub_gift D/xxx: salvada: cnh_front0.99996305
2020-06-16 08:20:29.039 25746-25797/br.com.hubfintech.hub_gift D/OpenGLRenderer: endAllActiveAnimators on 0x702790ad00 (RippleDrawable) with handle 0x70823ff640
2020-06-16 08:20:29.049 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.136 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9990344
2020-06-16 08:20:29.138 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.232 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999219
2020-06-16 08:20:29.235 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.323 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999895
2020-06-16 08:20:29.325 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.406 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999595
2020-06-16 08:20:29.408 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.490 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.999995
2020-06-16 08:20:29.492 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.573 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999939
2020-06-16 08:20:29.575 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.656 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99998796
2020-06-16 08:20:29.658 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.714 25746-25761/br.com.hubfintech.hub_gift W/MediaPlayer-JNI: MediaPlayer finalized without being released
2020-06-16 08:20:29.746 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999964
2020-06-16 08:20:29.747 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.827 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.999961
2020-06-16 08:20:29.828 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.912 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99883956
2020-06-16 08:20:29.914 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:29.997 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9984957
2020-06-16 08:20:29.999 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.079 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9998061
2020-06-16 08:20:30.081 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.171 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999714
2020-06-16 08:20:30.173 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.253 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999944
2020-06-16 08:20:30.255 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.333 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99999654
2020-06-16 08:20:30.335 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.418 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99993145
2020-06-16 08:20:30.420 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.501 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9994425
2020-06-16 08:20:30.503 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.584 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99929464
2020-06-16 08:20:30.585 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.664 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9998863
2020-06-16 08:20:30.666 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.744 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.9999716
2020-06-16 08:20:30.746 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.829 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99915254
2020-06-16 08:20:30.831 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.911 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99985135
2020-06-16 08:20:30.913 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:30.999 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99996376
2020-06-16 08:20:31.001 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.081 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.99981564
2020-06-16 08:20:31.082 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.166 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.9998541
2020-06-16 08:20:31.168 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.248 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.94269276
2020-06-16 08:20:31.250 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.329 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.99445915
2020-06-16 08:20:31.330 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.415 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_front0.98101693
2020-06-16 08:20:31.416 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.494 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank1.0
2020-06-16 08:20:31.496 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.581 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9796807
2020-06-16 08:20:31.583 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.668 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.979859
2020-06-16 08:20:31.669 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.748 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.85797167
2020-06-16 08:20:31.750 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.834 25746-26020/br.com.hubfintech.hub_gift D/xxx: blank0.685599
2020-06-16 08:20:31.836 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:31.915 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999905
2020-06-16 08:20:31.917 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.000 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999989
2020-06-16 08:20:32.001 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.084 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999993
2020-06-16 08:20:32.086 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.166 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999213
2020-06-16 08:20:32.167 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.253 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999386
2020-06-16 08:20:32.254 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.333 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.80115306
2020-06-16 08:20:32.334 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.418 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999833
2020-06-16 08:20:32.420 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.500 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999987
2020-06-16 08:20:32.502 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.581 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99998057
2020-06-16 08:20:32.582 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.667 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999993
2020-06-16 08:20:32.668 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.747 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999905
2020-06-16 08:20:32.749 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.830 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999988
2020-06-16 08:20:32.832 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.915 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:32.917 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:32.997 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:32.999 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.084 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:33.086 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.166 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999982
2020-06-16 08:20:33.168 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.248 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999994
2020-06-16 08:20:33.250 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.337 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999989
2020-06-16 08:20:33.338 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.418 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999905
2020-06-16 08:20:33.420 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.507 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999999
2020-06-16 08:20:33.509 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.589 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999595
2020-06-16 08:20:33.592 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.674 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999976
2020-06-16 08:20:33.676 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.762 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:33.763 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.845 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:33.846 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:33.934 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:33.936 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.018 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999999
2020-06-16 08:20:34.020 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.104 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:34.106 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.187 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999999
2020-06-16 08:20:34.189 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.274 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999999
2020-06-16 08:20:34.275 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.359 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999999
2020-06-16 08:20:34.363 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.449 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999994
2020-06-16 08:20:34.451 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.533 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999982
2020-06-16 08:20:34.535 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.619 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999993
2020-06-16 08:20:34.620 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.702 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999976
2020-06-16 08:20:34.704 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.788 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999995
2020-06-16 08:20:34.790 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.871 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999995
2020-06-16 08:20:34.873 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:34.958 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999999
2020-06-16 08:20:34.960 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.041 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999964
2020-06-16 08:20:35.043 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.129 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999976
2020-06-16 08:20:35.132 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.216 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.99999964
2020-06-16 08:20:35.217 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.301 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999994
2020-06-16 08:20:35.303 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.387 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back0.9999999
2020-06-16 08:20:35.390 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.470 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:35.472 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.556 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:35.558 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.642 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:35.644 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.728 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:35.730 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.813 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:35.814 25746-26020/br.com.hubfintech.hub_gift D/skia: onFlyCompress
2020-06-16 08:20:35.895 25746-26020/br.com.hubfintech.hub_gift D/xxx: cnh_back1.0
2020-06-16 08:20:35.899 25746-25746/br.com.hubfintech.hub_gift D/ImageCapture: Size of image capture request queue: 0
2020-06-16 08:20:35.947 25746-25946/br.com.hubfintech.hub_gift D/CaptureSession: Issuing capture request.
2020-06-16 08:20:36.267 25746-25746/br.com.hubfintech.hub_gift W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:20:36.267 25746-25746/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:36.267 25746-25746/br.com.hubfintech.hub_gift I/chatty: uid=10005(br.com.hubfintech.hub_gift) identical 1 line
2020-06-16 08:20:36.267 25746-25746/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:36.314 25746-26178/br.com.hubfintech.hub_gift W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:20:36.315 25746-26178/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:36.315 25746-26178/br.com.hubfintech.hub_gift I/chatty: uid=10005(br.com.hubfintech.hub_gift) CameraX-camerax identical 1 line
2020-06-16 08:20:36.315 25746-26178/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:36.334 25746-26178/br.com.hubfintech.hub_gift W/ExifInterface: Skip the tag entry since tag number is not defined: 2
2020-06-16 08:20:36.334 25746-26178/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:36.334 25746-26178/br.com.hubfintech.hub_gift I/chatty: uid=10005(br.com.hubfintech.hub_gift) CameraX-camerax identical 1 line
2020-06-16 08:20:36.334 25746-26178/br.com.hubfintech.hub_gift W/ExifInterface: Stop reading file since a wrong offset may cause an infinite loop: 0
2020-06-16 08:20:38.440 25746-26020/br.com.hubfintech.hub_gift D/xxx: salvada: cnh_back0.9999999
2020-06-16 08:20:39.006 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface destroyed.
2020-06-16 08:20:39.007 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Surface invalidated androidx.camera.core.SurfaceRequest@732109e
2020-06-16 08:20:39.021 25746-25946/br.com.hubfintech.hub_gift D/UseCaseAttachState: All use case: [] for camera: 0
2020-06-16 08:20:39.024 25746-25746/br.com.hubfintech.hub_gift D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageCapture-ed96d3b1-fef9-4856-a377-82d0423a5bd0
2020-06-16 08:20:39.024 25746-25746/br.com.hubfintech.hub_gift D/UseCaseMediator: Destroying use case: androidx.camera.core.ImageAnalysis-13d24900-053d-469b-96ad-1c9604de7828
2020-06-16 08:20:39.025 25746-25746/br.com.hubfintech.hub_gift D/UseCaseMediator: Destroying use case: androidx.camera.core.Preview-73c3d38a-b289-40be-9d18-c0c52d450b72
2020-06-16 08:20:39.029 25746-25946/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:20:39.030 25746-25946/br.com.hubfintech.hub_gift I/chatty: uid=10005(br.com.hubfintech.hub_gift) CameraX-core_ca identical 1 line
2020-06-16 08:20:39.031 25746-25946/br.com.hubfintech.hub_gift D/UseCaseAttachState: Active and attached use case: [] for camera: 0
2020-06-16 08:20:39.140 25746-25947/br.com.hubfintech.hub_gift D/CaptureSession: CameraCaptureSession.onClosed()
2020-06-16 08:20:39.141 25746-25746/br.com.hubfintech.hub_gift D/SurfaceViewImpl: Safe to release surface.
2020-06-16 08:20:39.163 25746-25763/br.com.hubfintech.hub_gift E/BufferQueueProducer: [ImageReader-640x480f23m4-25746-0] queueBuffer: BufferQueue has been abandoned

E só pra ficar completo, aquelas mensagens que aparecem na inicialização do app ainda estão da mesma forma nos dois apps como foi descrito aqui: https://github.com/combateafraude/Flutter/issues/3#issuecomment-644260321

Espero que isso ajude.

henriquel1997 commented 4 years ago

Acabei de notar que nosso projeto não tinha a declaração da Activity do DocumentDetector no Manifest, achei que isso poderia ser a causa do problema, porém o problema continuou após eu ter adicionado ela lá.

Só pra ter certeza tentei retirar ela do manifest do exemplo e lá ele continua retornando o resultado normalmente sem ela. Então a causa do problema deve ser outra.

RodrigoSMarques commented 4 years ago

@henriquel1997, Bom dia!

Está muito estranho.

É como se o onActivityResult não fosse chamado, como no exemplo do meu app

com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult
com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult: REQUEST_CODE_DOCUMENT_DETECTOR
com.example.sdk_combate_test D/DocumentDetectorSdk: onActivityResult cancel

Eu troquei o REQUEST_CODE porque este poderia ser o problema, mas não parece ser.

Poderia enviar novamente a lista de pacotes do seu pubspec.yaml

henriquel1997 commented 4 years ago

Aqui está o meu pubspec:

name: hf_base

description: A new Flutter project.

# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.4+25

environment:
  sdk: ">=2.1.0 <3.0.0"

dependencies:
  flutter:
    sdk: flutter
  flutter_localizations:
    sdk: flutter
  path_provider:
  # flutter_full_pdf_viewer: ^1.0.4
  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.2
  flutter_cupertino_date_picker: ^1.0.12
  http: ^0.12.0+2
  shared_preferences: ^0.5.4+3
  rxdart: ^0.22.6
  intl: ^0.16.0
  flutter_launcher_icons: ^0.7.4
  firebase_messaging: ^6.0.1
  flutter_camera_ml_vision: ^2.2.4
  esys_flutter_share: ^1.0.2
  flutter_secure_storage: ^3.3.1+1
  local_auth: ^0.6.1
  launch_review: ^2.0.0
  package_info: ^0.4.0+13
  firebase_remote_config: ^0.3.0+1
  mask_text_input_formatter: ^1.0.6
  flutter_open_whatsapp: ^0.1.2
  camera: ^0.5.8+2
  permission_handler: ^5.0.0+hotfix.8
  activeface_liveness_sdk:
    git:
      url: https://github.com/combateafraude/Flutter.git
      ref: active-face-liveness-v.0.5.0
  document_detector_sdk:
    git:
      url: https://github.com/combateafraude/Flutter.git
      ref: document-detector-v.0.5.0
dev_dependencies:
  flutter_test:
    sdk: flutter

flutter_icons:
  image_path_android: "assets/images/icon/androidIcon.png"
  image_path_ios: "assets/images/icon/iosIcon.jpeg"
  android: true
  ios: true
RodrigoSMarques commented 4 years ago

Acabei de notar que nosso projeto não tinha a declaração da Activity do DocumentDetector no Manifest, achei que isso poderia ser a causa do problema, porém o problema continuou após eu ter adicionado ela lá.

Só pra ter certeza tentei retirar ela do manifest do exemplo e lá ele continua retornando o resultado normalmente sem ela. Então a causa do problema deve ser outra.

Estranho. Não era para ter funcionado (pelo nos meus testes não funcionou).

Ele não está conseguindo tratar o retorno da Activity.

Pode me enviar seu AndroidManifest.xml?

henriquel1997 commented 4 years ago

Manifest já com o DocumentDetector:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.hubfintech.hf_base">

    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.USE_FINGERPRINT"/>
    <!-- io.flutter.app.FlutterApplication is an android.app.Application that
         calls FlutterMain.startInitialization(this); in its onCreate method.
         In most cases you can leave this as-is, but you if you want to provide
         additional functionality it is fine to subclass or reimplement
         FlutterApplication and put your custom class here. -->
    <application
        android:name="com.hubfintech.hf_base.Application"
        android:label="@string/app_name"
        android:icon="@drawable/app_icon">
        <activity
            android:name="com.hubfintech.hf_base.MainActivity"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:windowSoftInputMode="adjustResize">
            <!-- This keeps the window background of the activity showing
                 until Flutter renders its first frame. It can be removed if
                 there is no splash screen (such as the default splash screen
                 defined in @style/LaunchTheme). -->
            <meta-data
                android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
                android:value="true" />
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>

            <intent-filter>
                <action android:name="FLUTTER_NOTIFICATION_CLICK" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>

        </activity>

        <activity
            android:name="com.combateafraude.activefaceliveness.ActiveFaceLivenessActivity"
            android:screenOrientation="portrait"
            android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>

        <activity
            android:name="com.combateafraude.documentdetector.DocumentDetectorActivity"
            android:screenOrientation="portrait"
            android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>

        <meta-data
            android:name="com.google.firebase.ml.vision.DEPENDENCIES"
            android:value="barcode" />
        <!-- To use multiple models: android:value="ocr,label,barcode,face" -->

    </application>
</manifest>
RodrigoSMarques commented 4 years ago

@henriquel1997 pesquisei muito e não achei nada que pudesse dizer o problema.

O que eu percebo é que o projeto de vocês é antigo e existe um artigo para migrar o projeto para ele ser compatível com novos plugins.

Se puder, veja este artigo. https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects

henriquel1997 commented 4 years ago

Segui essas instruções e funcionou! Consegui receber as informações do DocumentDetector agora.

Tive que fazer outras adaptações fora o que foi detalhado ali por causa de outras bibliotecas que usamos no projeto, mas só seguindo as instruções daquele link já fez o DocumentDetector funcionar como deveria.

Muito obrigado

RodrigoSMarques commented 4 years ago

Que bom Henrique.

Vou deixar você concluir o desenvolvimento aí.

Antes de colocar em release, avise que vou gerar uma nova versão sem os Log.d