Merge pull request #424 from jcesarmobile/CB-13721

CB-13721 (Android): fix build apps that use cdvHelpers.getConfigPreference
This commit is contained in:
Joe Bowser 2018-01-02 13:41:45 -08:00 committed by GitHub
commit b3c262cd47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,7 +165,7 @@ def doPromptForPassword(msg) {
}
def doGetConfigXml() {
def xml = file("res/xml/config.xml").getText()
def xml = file("src/main/res/xml/config.xml").getText()
// Disable namespace awareness since Cordova doesn't use them properly
return new XmlParser(false, false).parseText(xml)
}