Crashpad and linux

Hello!
I have troubles with using Crashpad in Ubuntu 18.04. I expect that crashpad will create and send minidumps to sentry.io. I build crashpad lib according to google instructions.
Dumps are created, OK. But there are problems with sending.

When my process crashes i get the following errors from crashpad_client:

ERROR process_memory_range.cc:86] read out of range
ERROR elf_image_reader.cc:594] missing nul-terminator
ERROR socket.cc:172] missing credentials
ERROR http_transport_socket.cc:466] ReadLine

What it means?

I also try compile sentrypad from github/getsentry/sentry-native.

Then run sentry_example_crashpad and get:
FATAL http_transport_socket.cc:548] Check failed: scheme == “http”. Got https for scheme in ‘https://sentry.io…’

it looks like crashpad_client was built without “crashpad_use_boringssl_for_http_transport_socket=true” (i got crashpad_client by running scripts/download.sh crashpad)

Where am i wrong?