Giter Site home page Giter Site logo

Comments (3)

shajz avatar shajz commented on May 24, 2024 1

@Yura13 I was using xml2js https://www.npmjs.com/package/xml2js which doesn't preserve XML elements order. I switched to https://www.npmjs.com/package/fast-xml-parser.

Here's the code (quick and dirty js) :

// Parse config.xml, edit app & package name and save the changes

import { XMLBuilder, XMLParser } from "fast-xml-parser";
import { readFile, writeFile } from 'fs';

const configFile = "config.xml";

const commonOptions = {
  preserveOrder: true,
  ignoreAttributes: false,
  allowBooleanAttributes: true,
  commentPropName: "#comment",
  unpairedTags: [
    'content',
    'access',
    'allow-navigation',
    'preference',
    'allow-intent',
    'param',
    'hook',
    'application',
    'custom-preference',
    'resource-file',
    'icon',
    'splash',
    'true',
  ],
}

const parser = new XMLParser({
  ...commonOptions,
  ignoreDeclaration: false,
});

const builder = new XMLBuilder({
  ...commonOptions,
  suppressUnpairedNode: false,
  format: true,
});

export function updateConfigFile(overrides) {
  readFile(configFile, "utf-8", (err, data) => {
    if (err) {
      throw err;
    }

    const result = parser.parse(data);

    /** Overrides */
    if (overrides?.['android-packageName']) {
      result[1][':@']['@_android-packageName'] = overrides['android-packageName'];
    }

    if (overrides?.['ios-CFBundleIdentifier']) {
      result[1][':@']['@_ios-CFBundleIdentifier'] = overrides['ios-CFBundleIdentifier'];
    }

    if (overrides?.name) {
      result[1].widget = result[1].widget.map((obj) => ((obj?.name != null) ? {...obj, name: [ { '#text': overrides.name } ] } : obj));
    }

    const xml = builder.build(result);

    // write updated XML string to a file
    writeFile(configFile, xml, { encoding: "utf-8" }, (err) => {
      if (err) {
        throw err;
      }

      console.log(`Updated XML is written to a new file.`);
    });
  });
}

You can adapt the overrides part to your usecase, the syntax is weirder than xml2js but the order is preserved with the provided options :)

Saved this as a .mjs file so I could use import syntax safely but you can use require with .js files.

call it like this in your cordova hooks

updateConfigFile({
  'android-packageName': 'com.your.package',
  'ios-CFBundleIdentifier': 'com.your.package',
  name: 'Your app name',
});

Sorry I let this up without providing a solution https://xkcd.com/979/ 😅

from cordova-ios.

shajz avatar shajz commented on May 24, 2024

Oops, I forgot that my app edits the config.xml with a cordova hook and that's the source of my problem. Sorry for the spam

from cordova-ios.

Yura13 avatar Yura13 commented on May 24, 2024

@shajz
I have the same problem. How do you resolve it?

from cordova-ios.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.