From 1cda7a9de000bc71f920412286646803fa539ef4 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 19 Jun 2017 14:34:03 -0700 Subject: [PATCH] CB-11244: Found bug in Api.js where xml/strings.xml is used instead of values/strings.xml --- bin/templates/cordova/Api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/templates/cordova/Api.js b/bin/templates/cordova/Api.js index fe720800..283a86d4 100644 --- a/bin/templates/cordova/Api.js +++ b/bin/templates/cordova/Api.js @@ -85,7 +85,7 @@ function Api(platform, platformRootDir, events) { this.builder='studio'; this.android_studio = true; this.locations.configXml = path.join(self.root, 'app/src/main/res/xml/config.xml'); - this.locations.strings = path.join(self.root, 'app/src/main/res/xml/strings.xml'); + this.locations.strings = path.join(self.root, 'app/src/main/res/values/strings.xml'); this.locations.manifest = path.join(self.root, 'app/src/main/AndroidManifest.xml'); this.locations.www = path.join(self.root, 'app/src/main/assets/www'); this.locations.res = path.join(self.root, 'app/src/main/res');