The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

t/oxr_android: Replace full-name qualified with importing for build.gradle

Signed-off-by: utzcoz <utzcoz@outlook.com>

authored by

utzcoz and committed by
Jakob Bornecrantz
b6e8801e 824ebc02

+3 -1
+3 -1
src/xrt/targets/openxr_android/build.gradle
··· 1 + import groovy.xml.XmlUtil 2 + 1 3 // Copyright 2020, Collabora, Ltd. 2 4 // SPDX-License-Identifier: BSL-1.0 3 5 ··· 39 41 if (line.trim().isEmpty()) { 40 42 return '<br /><br />' 41 43 } else { 42 - return groovy.xml.XmlUtil.escapeXml(line) 44 + return XmlUtil.escapeXml(line) 43 45 } 44 46 } 45 47