mi-hol
mi-hol
@rusefillc please assign to me
related to #3930
code in \rusefi\java_console\logging\src\main\java\com\rusefi\FileLog.java is correct ```java private FileOutputStream openLog() throws FileNotFoundException { String date = getDate(); createFolderIfNeeded(); String shortFileName = name() + "_rfi_report_" + date; Logging.configureLogFile(Logger.DIR + shortFileName + ".log");...
All "official" merge actions are affected too! example "Merge pull request #551 from geduxas/patch-4 #156" https://github.com/Egyras/HeishaMon/actions/runs/11234237944/job/31229634460#step:1:36
https://github.com/GoogleChromeLabs/bubblewrap/issues/791#issuecomment-1589077234 seems to indicate an outdated Android SDK as root cause
updating java_console/inifile/src/main/java/com/rusefi/tune/xml/package-info.java to comment below reduces the number of errors from 17 to 15 ``` // @XmlSchema( // namespace = "http://www.msefi.com/:msq", // elementFormDefault = XmlNsForm.QUALIFIED // )
java_console/.idea/misc.xml ``` ``` and java_console/.idea/libraries/XML_for_11.xml seems to set jaxb library version ``` ```
from https://javaee.github.io/jaxb-v2/doc/user-guide/ch06.html#d0e6862 " Q: | Can I run my existing JAXB 1.0.x applications on the JAXB 2.0 runtime? A: | This is no longer supported. However, you should be able...
Down to 2 errors: [288](https://github.com/FOME-Tech/fome-fw/actions/runs/7534013651/job/20507626874#step:9:289) > Task :ui:compileJava FAILED /home/runner/work/fome-fw/fome-fw/java_console/ui/src/main/java/com/rusefi/tools/ConsoleTools.java:23: error: package javax.xml.bind does not exist import javax.xml.bind.JAXBException; ^ /home/runner/work/fome-fw/fome-fw/java_console/ui/src/main/java/com/rusefi/tools/ConsoleTools.java:206: error: cannot find symbol private static void convertBinaryToXml(String[] args) throws...
https://github.com/FOME-Tech/fome-fw/actions/runs/7534234159/job/20508238031#step:9:291 fails despite updated java_console/ui/build.gradle with `apply from: '../../java_tools/dependencies.gradle` root cause seems java_tools/jaxb1-impl-2.2.5-1.jar gets NOT used for compiling java_console/ui/src/main/java/com/rusefi/tools/ConsoleTools.java as for the other java source files in java_console/inifile/src/main/java/com/rusefi/tune/xml/ What do...