You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Referencing the EnRouteApi.Android.MAUI.dll via a <Reference> tag in a MAUI app causes builds to fail for the Android target. I suspect this relates to the fact that:
In .NET, Java code is no longer embedded in the .dll -- MS
which differs from Xamarin.Android, and requires the .jar/.aar to be located next to the .dll.
However, I expected the SDK for MAUI, that I downloaded from here, to include all of the necessary artifacts needed to integrate Glympse EnRoute functionality into a MAUI app (targeting Android & iOS) -- which may or may not be a common use-case for other consumers.
Yes, download the SDK for Android and place all of it's .aar's in the same folder as EnRouteApi.Android.MAUI.dll
Relevant log output:
CommonSource_ListenerWrapper.java(8,39): javac.exe error JAVAC0000: error: package com.glympse.android.toolbox.listener does not exist
CommonSource_ListenerWrapper.java(9,27): javac.exe error JAVAC0000: error: package com.glympse.android.core does not exist
EventSink_ListenerWrapper.java(8,26): javac.exe error JAVAC0000: error: package com.glympse.android.api does not exist
EventSink_ListenerWrapper.java(9,27): javac.exe error JAVAC0000: error: package com.glympse.android.core does not exist
The text was updated successfully, but these errors were encountered:
Description:
Referencing the
EnRouteApi.Android.MAUI.dll
via a<Reference>
tag in a MAUI app causes builds to fail for the Android target. I suspect this relates to the fact that:which differs from Xamarin.Android, and requires the
.jar
/.aar
to be located next to the.dll
.However, I expected the
SDK for MAUI
, that I downloaded from here, to include all of the necessary artifacts needed to integrate Glympse EnRoute functionality into a MAUI app (targeting Android & iOS) -- which may or may not be a common use-case for other consumers.Steps to Reproduce:
master
branchfix
branchLink to public reproduction project repository:
Version with bug:
Affected Platform(s):
Did you find any workaround?:
.aar
's in the same folder asEnRouteApi.Android.MAUI.dll
Relevant log output:
The text was updated successfully, but these errors were encountered: