CB-11244: Found bug in Api.js where xml/strings.xml is used instead of values/strings.xml

This commit is contained in:
Joe Bowser 2017-06-19 14:34:03 -07:00
parent 49b76f5c71
commit 1cda7a9de0

View File

@ -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');