Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1.2 KB

Developing.md

File metadata and controls

23 lines (19 loc) · 1.2 KB

Developing

Tools for developing

Get required external files for Aves

Aves requires some external files, e.g. a JVM, a deobfuscator and a decompiler

  • Build ADB with configuration Debug (with Release it would need a GITHUB_TOKEN)
  • Copy config-dev.json into your ADB build output folder (e.g. src/ADB/bin/Debug/net8.0)
  • Run in the ADB build output folder: ADB.exe -c config-dev.json -r <yourSystemRID>
    • You can get the corresponding RID here
      Most common:
      • win-x64 Windows 64bit
      • linux-x64 Linux 64bit
      • osx-x64 Mac OS X 64bit
  • Copy all files from the generated dev folder directly into your Aves build output folder (e.g. Aves/bin/Debug/net8.0)

⚠️ Notes

  • The files are usually kept until a (forced) rebuild is carried out
  • You should update this files regularly

Related