Where should I located pom.xml when doing rush build to avoid error package com.fasterxml.jackson.core does not exist ?
Thank you
build:
release:
# Optimizes the extension on every release build.
optimize: true
If enabled, you will be able to use Java 8 language features in your extension.
desugar:
enable: false
desugar_deps: false
assets:
Extension icon. This can be a URL or a local image in 'assets' folder.
icon: icon.png
Extension assets.
other:
- my_awesome_asset.anything
Extension dependencies (JAR).
deps:
- jackson-core-2.14.0.jar
- jackson-databind-2.15.2.jar
after I download jar file and put it on deps, rush build successfully done.
but when I running test from MIT AI2 companion show Runtime Error. and could not build as .apk file
How to Solved this problem. Thank you
After I use the same version of Jackson :
- jackson-core-2.15.2.jar
- jackson-databind-2.15.2.jar
the error has changed like this :
and when I build .apk file, here is the error :
Can anybody help me to solved this problem ?