Xamarin JAR 绑定未为来自 android.app.IntentService 的派生 class 创建绑定

Xamarin JAR binding not creating a binding for derived class from android.app.IntentService

我正在尝试创建一个 Android Java 绑定库。 我有一个扩展 IntentService 的 class,我需要它在 C# 中公开。当我构建项目时,我收到以下警告:

Warning BG8102: Class eu.mypackage.UI.MyIntentService has unknown base type android.app.IntentService (BG8102)

有办法解决吗?

最后我找到了临时解决方案。我已将 IntentService class 添加到我的 jar 中,并使我的扩展 IntentService 从包中扩展 IntentService。有效。