Skip to content

Commit 018b3e3

Browse files
committed
Fix search config.xml
Fix this error: Error: Cannot read property 'get' of null After debugging the file scripts scripts/afterAndroidPrepare.js,
1 parent 3eb0f5d commit 018b3e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/afterAndroidPrepare.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = function(context) {
77
var ET = context.requireCordovaModule('elementtree');
88
var ConfigFile = context.requireCordovaModule("cordova-common").ConfigFile;
99

10-
var configXml = new ConfigFile(context.opts.projectRoot, null, 'config.xml');
10+
var configXml = new ConfigFile(context.opts.projectRoot, null, './config.xml');
1111

1212
//
1313
// detect parse.com or parse-server mode

0 commit comments

Comments
 (0)