Home
last modified time | relevance | path

Searched refs:stringFileContentsJSON (Results 1 – 4 of 4) sorted by relevance

/expo/packages/@expo/config-plugins/build/android/
H A DStrings.js24 function setStringItem(itemToAdd, stringFileContentsJSON) { argument
26 …if (!(stringFileContentsJSON !== null && stringFileContentsJSON !== void 0 && (_stringFileContents…
27 if (!stringFileContentsJSON.resources || typeof stringFileContentsJSON.resources === 'string') {
29 stringFileContentsJSON.resources = {};
31 stringFileContentsJSON.resources.string = itemToAdd;
32 return stringFileContentsJSON;
40stringFileContentsJSON.resources.string = stringFileContentsJSON.resources.string.concat(newItem);
43 return stringFileContentsJSON;
45 function removeStringItem(named, stringFileContentsJSON) { argument
47 …if (stringFileContentsJSON !== null && stringFileContentsJSON !== void 0 && (_stringFileContentsJS…
[all …]
H A DStrings.js.map1stringFileContentsJSON","_stringFileContentsJS","resources","string","newItem","stringNameExists",…
H A DStrings.d.ts5 export declare function setStringItem(itemToAdd: ResourceItemXML[], stringFileContentsJSON: Resourc…
6 export declare function removeStringItem(named: string, stringFileContentsJSON: ResourceXML): Resou…
/expo/packages/@expo/config-plugins/src/android/
H A DStrings.ts13 stringFileContentsJSON: ResourceXML
15 if (!stringFileContentsJSON?.resources?.string) {
16 if (!stringFileContentsJSON.resources || typeof stringFileContentsJSON.resources === 'string') {
18 stringFileContentsJSON.resources = {};
20 stringFileContentsJSON.resources.string = itemToAdd;
21 return stringFileContentsJSON;
32 stringFileContentsJSON.resources.string =
33 stringFileContentsJSON.resources.string.concat(newItem);
36 return stringFileContentsJSON;
40 if (stringFileContentsJSON?.resources?.string) {
[all …]