Developing packages that are already in the loaded sysimage

Here’s what finally worked for me -

  • Change the UUID of the local copy of package (JSON3)
  • Import the local copy (as opposed to the copy in the sysimage) the following way -
    import JSON3 as JSON3LocalCopy.
    This will allow you to use the latest version of the package you’re developing, even if the said package is already present within the sysimage loaded.
2 Likes