I'm trying to include the latest Espon Andoid ePOS SKD (https://download.epson-biz.com/modules/pos/index.php?page=single_soft&cid=6269&scat=61&pcat=52) wich is supposed to support up to android 10.
In the SDK, there is 2 jar libraries, and 3 folders with .so
I tried to follow the tutorials, having a jar library in my project, with in the jar folder the 2 .jars:
jarproject\Jars\ePOS2.jar
jarproject\Jars\ePOSEasySelect.jar
Both are configured as EmbeddedJar
I tried also to add the .so following this tutorial: https://docs.microsoft.com/en-us/xamarin/android/platform/native-libraries
so it ended up like that:
jarproject\lib\arm64-v8a\libepos2.so
jarproject\lib\arm64-v8a\libeposeasyselect.so
jarproject\lib\armeabi\libepos2.so
jarproject\lib\armeabi\libeposeasyselect.so
jarproject\lib\x86_64\libepos2.so
jarproject\lib\x86_64\libeposeasyselect.so
All of those are configured as EmbeddedReferenceJar.
My android project that references the jar library is on 9.0. When I build, I get multiple errors in the java generated files, a missing enum : LogoKeyCode
All the rest seems OK...
I checked in the source .jar file, and nothing is special about that class (see image)
Please, can I have any help on this, I've been looking for help on stackoverflow and here for more than a year... I can't believe anyone from Xamarin team can't help me???