I use Biblatex (biber 2.12), XeLaTeX (XeteX 3.1415) and the packages abntex2 and biblatx-abntex2 on macOS High Sierra 10.13.6. [I also use Linux]
At this image, notice the < > where the URLs are not there or disappeared.

Here is a minmal code (you can get my full zipped file attached in the end):
% !TeX program = xelatex
\documentclass[10pt, a4paper, brazil]{abntex2}
\usepackage[alf]{abntex2cite}
\usepackage[autostyle]{csquotes}
\usepackage[backend = biber, alldates=long, hyperref, justify, language = brazil, scbib, sorting = none, style = abnt, url = true]{biblatex}
\usepackage[brazil]{babel}
\usepackage[math-style=ISO, bold-style=ISO, mathrm=sym]{unicode-math}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{caption}
\usepackage{color}
\usepackage{comment}
\usepackage{environ}
\usepackage{filecontents}
\usepackage{fixltx2e}
\usepackage{fontspec}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{indentfirst}
\usepackage{lastpage}
\usepackage{lipsum}
\usepackage{listings}
\usepackage{mfirstuc}
\usepackage{microtype}
\usepackage{minted}
\usepackage{multicol}
\usepackage{nomencl}
\usepackage{polyglossia}
\usepackage{svg}
\usepackage{xcolor}
% ...
\addbibresource{referencias.bib}
\begin{filecontents}{referencias.bib}
@Book{IAEA_est_2050,
publisher = {International Atomic Energy Agency},
title = {Energy, Electricity and Nuclear Power Estimates for the Period up to 2050},
year = {2015},
series = {Reference Data Series 1},
edition = {2015},
note = {RDS - 1/35},
isbn = {978-92-0-105915-4},
groups = {IAEA},
url = {http://www-pub.iaea.org/books/IAEABooks/7857/Estimation-of-Global-Inventories-of-Radioactive-Waste-and-Other-Radioactive-Materials},
urldate = {2015-10-15},
}
@thesis{eliseu84,
title = {Verbos ergativos do Português},
subtitle = {descrição e análise},
author = {André Manuel Godinho Simões Eliseu},
type = {Dissertação (Mestrado em Linguística)},
institution = {Universidade de Lisboa},
location = {Lisboa},
eventyear = {1985},
}
@online{google,
doi = {docs},
organization = {Google},
title = {Documentação do Google Cloud SDK},
url = {https://cloud.google.com/sdk/docs},
urldate = {2018-10-26}
}
\end{filecontents}
% ...
\begin{document}
\selectlanguage{brazil}
\frenchspacing
\maketitle
\pagenumbering{gobble}
\newpage
\pagenumbering{arabic}
\textual
\section{Configurar a conta do Google e o Google Cloud Platform}
% ...
\citetitle{google}
\cite{IAEA_est_2050}
\cite{eliseu84}
\section{Configurar a executar os \textit{containers} do Docker no mecnaismo de \textit{containers} do Google}
\bookmarksetup{startatroot}%
\postextual
\printbibliography
\end{document}
I ran like:
xelatex -synctex=1 -interaction=nonstopmode -file-line-error -shell-escape relatório
biber relatorio
xelatex -synctex=1 -interaction=nonstopmode -file-line-error -shell-escape relatorio
xelatex -synctex=1 -interaction=nonstopmode -file-line-error -shell-escape relatório
I also made a test of minimal basic code taken from @xR2 and URLs worked, but my “relatório” file did not work. Here are the codes which worked:
\documentclass[a4paper]{abntex2}
\usepackage[autostyle]{csquotes}
\usepackage[backend=biber,style=abnt,language=brazilian,alldates=long,sorting=none,scbib,hyperref]{biblatex}
\usepackage[brazil]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{filecontents}
\usepackage{hyperref}
\usepackage{lmodern}
\addbibresource{shortbib.bib}
\begin{filecontents}{shortbib.bib}
@Book{IAEA_est_2050,
publisher = {International Atomic Energy Agency},
title = {Energy, Electricity and Nuclear Power Estimates for the Period up to 2050},
year = {2015},
series = {Reference Data Series 1},
edition = {2015},
note = {RDS - 1/35},
isbn = {978-92-0-105915-4},
groups = {IAEA},
url = {http://www-pub.iaea.org/books/IAEABooks/7857/Estimation-of-Global-Inventories-of-Radioactive-Waste-and-Other-Radioactive-Materials},
urldate = {2015-10-15},
}
@thesis{eliseu84,
title = {Verbos ergativos do Português},
subtitle = {descrição e análise},
author = {André Manuel Godinho Simões Eliseu},
type = {Dissertação (Mestrado em Linguística)},
institution = {Universidade de Lisboa},
location = {Lisboa},
eventyear = {1985},
}
\end{filecontents}
\begin{document}
\cite{eliseu84}
\cite{IAEA_est_2050}
\printbibliography
\end{document}
You can get my full zipped file: My project
inputencorfontencwithxelatex. – David Purton Nov 17 '18 at 07:59xstring(see https://github.com/abntex/biblatex-abnt/issues/39), your second, smaller MWE compiles fine, even thoughlmodern,fontencandinputencare a bad idea for XeLaTeX. Your other, longer MWE, however, produces a multitude of error messages and does not compile at all. Never ignore errors! A first issue is caused by loadingabntex2citeandbiblatex: The packages are incompatible. You are also loadingbabelandpolyglossia- load only one of them (preferablybabel). Indeed you are loading a great number of packages, I doubt you need all of them. – moewe Nov 17 '18 at 10:27\usepackage[T1]{fontenc} \usepackage[utf8]{inputenc}and\usepackage{lmodern}with xelatex. This is wrong. – Ulrike Fischer Nov 17 '18 at 10:27amsmath), figure caption (caption), set colours (color), set scale for equation (environ), set bibliography file (filecontents), set external fonts (fontspec), load images (graphicx), set hypersetup (hyperref), set indentation (indentfirst),listingsandmintedfor syntax highlighting,tcolorbox,tikzfor rounded rects, etc – Oo'- Nov 17 '18 at 10:51babelorpolyglossia, but without conflicting thebiblatex-abnt? – Oo'- Nov 17 '18 at 10:52